@foreach ($jobs as $job)

{{ $job->title }}

{{ $job->company }} • {{ $job->location }}

@if ($job->urgent) Urgent @endif
@if ($job->type) {{ $job->type }} @endif @if ($job->highSalary) High Salary @endif @if ($job->commission) Commission @endif
{{ \Illuminate\Support\Str::limit($job->description, 150) }}
Posted: {{ \Carbon\Carbon::parse($job->posted)->diffForHumans() }} | Closes: {{ \Carbon\Carbon::parse($job->closes)->format('M d, Y') }}
View Details
@endforeach