@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) !!}
{{ __('View More') }}