@php $latestJobs = App\Models\Job::where('status', 1)->orderBy('id', 'DESC')->with('employer')->limit(16)->get(); $content = getContent('latest_job.content', true); @endphp

{{__($content->data_values->heading)}}

@foreach($latestJobs as $latestJob)
@lang('image')
{{$latestJob->title}}

{{__($latestJob->employer->company_name)}}

{{diffforhumans($latestJob->created_at)}}
@endforeach