@forelse ($jobs as $job) @if($job->job_creator?->username)

{{ $job->title }}

@if($job->created_at->diffInHours(now()) < 24) {{ __('New') }} @endif
{{ $job->created_at->diffForHumans() }} {{ ucfirst(__($job->level)) }}
{{ $job->display_price }} {{ ucfirst(__($job->type)) }}

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

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

Ops! Sorry, no results found.

@endforelse