@forelse ($jobs as $job)

{{ $job->title }}

@if($job->created_at->diffInHours(now()) < 24) {{ __('New') }} @endif
{{ $job->created_at->diffForHumans() }} {{ ucfirst(__($job->level)) }}
{{ $job->display_price }} @if($job->hourly_rate && $job->estimated_hours) /hr @endif @if($job->hourly_rate && $job->estimated_hours) Est. {{ $job->estimated_hours }} hrs @else {{ ucfirst(__($job->type)) }} @endif

{!! Str::limit(strip_tags($job->description), 150) !!}

@foreach ($job->job_skills as $skill) {{ $skill->skill ?? '' }} @endforeach
{{ __('View More') }}
@empty
nothing-found

Ops! Sorry, no results found.

@endforelse