@extends('admin.template.jobmaster') @section('title', $title) @section('content') @php $userOrganisation_type= Auth::user()->organisation_type; $jtype = ''; $jemployment = ''; $jtitle = ''; $description = ''; $organization = ''; $pdate = ''; $cdate = ''; $organizationType = ''; $country = ''; $state = ''; $city = ''; $experience = ''; $google_form = ''; $contact_person = ''; $website = ''; $facebook_id = ''; $linkedin_id = ''; $twitter_id = ''; $sectors = array(); $job_type = ''; if(isset($jobData)) { $jtype = $jobData->job_type; $jemployment = $jobData->employment_type; $jtitle = $jobData->job_title; $description = $jobData->job_description; $organization = $jobData->organisation; $pdate = \Carbon\Carbon::parse($jobData->publish_date)->format('d-m-Y'); $cdate = \Carbon\Carbon::parse($jobData->closing_date)->format('d-m-Y'); $cpublish = \Carbon\Carbon::parse($jobData->portal_date)->format('d-m-Y'); $organizationType = $jobData->organisation_type; $country = $jobData->country; $state = $jobData->state; $city = $jobData->city; $company_image = $jobData->company_image; $attachment = $jobData->attachment; $experience = $jobData->experience; $contact_person = $jobData->contact_person; $google_form = $jobData->google_form; $website = $jobData->website; $facebook_id = $jobData->facebook_id; $linkedin_id = $jobData->linkedin_id; $twitter_id = $jobData->twitter_id; $job_type = $jobData->job_type; $jmin_salary = $jobData->min_salary; $jmax_salary = $jobData->max_salary; if($tempJob == 0) $sectors = $jobData->sectors->pluck('sector_id')->toArray(); } $userName= Auth::user()->name; $userOrganisation_type= Auth::user()->organisation_type; $userPerson= Auth::user()->person; $userType= Auth::user()->user_type; $userId= Auth::user()->id; $userImage= Auth::user()->user_image; @endphp
@stop @section('javascript') @endsection