@foreach ($jobs as $job)

{{ $job->title }}

{{ $job->created_at->toFormattedDateString() ?? '' }} - {{ ucfirst($job->level) ?? '' }}

{{ float_amount_with_currency_symbol($job->budget) }} {{ __(ucfirst($job->type)) }}

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

@foreach ($job->job_skills as $skill) {{ $skill->skill ?? '' }} @endforeach
  • {{ $job->job_creator?->user_country?->country }}
  • Proposal: 15
  • {{ $job->job_creator?->user_verified_status == 1 ? 'Verified' : 'Not Verified' }}
  • {{ ucfirst($job->duration) ?? '' }}
  • 4.9
@endforeach
{!! $jobs->links() !!}