@extends('layouts.app') @section('content') @php use Illuminate\Support\Str; @endphp @push('meta') @endpush @include('includes.header') @include('includes.inner_page_title2', ['page_title'=>__('iRecruitment Portal')]) @php $company = $job->getCompany(); @endphp
@include('flash::message')

{{$job->title}}

{{--
{{$company->name}} - {{$job->getCity('city')}}
--}}
{{--
{{__('Date Posted')}}: {{$job->created_at->format('M d, Y')}}
--}}
@if(Auth::check() && Auth::user()->isAppliedOnJob($job->id)) {{__('Already Applied')}} @else {{__('Apply Now')}} @endif

Job Description

{!! $job->description !!}

Skills Required

    {!!$job->getJobSkillsList()!!}

Job Detail

    {{--
  • {{__('Location')}}
    @if((bool)$job->is_freelance) Freelance @else {{$job->getLocation()}} @endif
  • {{__('Company')}}
  • --}}
  • {{__('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')}}
    {{$job->expiry_date->format('M d, Y')}}
{{--

Google Map

{!!$company->map!!}
--}}
@include('includes.how_it_works')
@include('includes.footer') @endsection @push('styles') @endpush @push('scripts') @endpush