@extends('admin.layouts.admin_layout') @push('css') @endpush @section('content') @php $company = $job->getCompany(); @endphp
@include('flash::message')
Job Details
@if($job->status=='request_to_delete') Delete @endif Edit Job
{!! Form::model($job, array('method' => 'put', 'route' => array('update.job', $job->id), 'class' => 'form', 'files'=>true)) !!} {!! Form::hidden('id', $job->id) !!} {!! Form::close() !!}

{{$job->title}}

{{__('Date Posted')}}: {{$job->created_at->format('M d, Y')}}
@if(!(bool)$job->hide_salary)
{{$job->getSalaryPeriod('salary_period')}}: {{$job->salary_from.' '.$job->salary_currency}} - {{$job->salary_to.' '.$job->salary_currency}}
@endif

{{__('Job Details')}}

  • {{__('Location(s)')}}:
    @if((bool)$job->is_freelance) Freelance @else {{$job->getLocation()}} @endif
  • {{__('Company')}}:
    {{isset($company)?$company->name:null}}
  • {{__('Type')}}:
    {{$job->getJobType('job_type')}}
  • {{__('Shift')}}:
    {{$job->getJobShift('job_shift')}}
  • {{__('Career Level')}}:
    {{$job->getCareerLevel('career_level')}}
  • {{__('Positions')}}:
    {{$job->num_of_positions}}
  • {{__('Experience')}}:
    {{$job->getJobExperience('job_experience')}}
  • {{__('Gender')}}:
    {{$job->getGender('gender')}}
  • {{__('Degree')}}:
    {{$job->getDegreeLevel('degree_level')}}
  • {{__('Apply Before')}}:
    {{ \Carbon\Carbon::parse($job->expiry_date)->format('M d, Y') }}

{{__('Job Description')}}

{!! $job->description !!}

{{__('Benefits')}}

{!! $job->benefits !!}

{{__('Skills Required')}}

    {!!$job->getJobSkillsList()!!}
@if($job->isJobExpired())
{{__('Job Expired')}}
@endif

{{__('Company Overview')}}

{{isset($company)?$company->name:null}}
{{isset($company)?$company->getLocation():null}}

{{__('Job Location on Map')}}

@endsection @push('styles') @endpush @push('scripts') @endpush