@extends("front.$version.layout") @section('pagename') - @if (empty($category)) {{__('All')}} @else {{convertUtf8($category->name)}} @endif {{__('Jobs')}} @endsection @section('meta-keywords', "$be->career_meta_keywords") @section('meta-description', "$be->career_meta_description") @section('breadcrumb-title', convertUtf8($be->career_title)) @section('breadcrumb-subtitle', convertUtf8($be->career_subtitle)) @section('breadcrumb-link', __('Career')) @section('content')
@if (count($jobs) == 0)

{{__('NO JOB FOUND')}}

@else @foreach ($jobs as $key => $job)

{{convertUtf8($job->title)}}

@php $deadline = \Carbon\Carbon::parse($job->deadline)->locale("$currentLang->code"); $deadline = $deadline->translatedFormat('jS F, Y'); @endphp

{{__('Deadline')}}: {{$deadline}}

{{__('Educational Experience')}}: {!! (strlen(strip_tags($job->educational_requirements)) > 110) ? mb_substr(strip_tags($job->educational_requirements), 0, 110, 'utf-8') . '...' : strip_tags($job->educational_requirements) !!}

{{__('Work Experience')}}: {{$job->experience}}

@endforeach @endif

{{__('Job Categories')}}

@endsection