@if($jobs->count() > 0) @foreach ($jobs as $job)

{{ $job->title }}

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

@if($job->type == 'hourly')

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

@else

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

@endif

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

@foreach ($job->job_skills as $skill) {{ $skill->skill ?? '' }} @endforeach
  • {{ $job->job_creator?->user_country?->country }}
  • {{ __('Proposal:') }} {{ $job->job_proposals_count }}
  • @if(moduleExists('HourlyJob'))
  • @if($job->job_creator?->user_wallet?->balance >= ($job->hourly_rate * $job->estimated_hours) ) {{ __('Verified') }} @else {{ __('Not Verified') }} @endif
  • @endif
  • {{ ucfirst(__($job->duration)) ?? '' }}
  • @if($job->type == 'hourly')
  • {{__('Estimated Hours:')}} {{ $job->estimated_hours ?? '' }}
  • @endif
@endforeach @else

{{ __('No Jobs') }}

{{ __("Sorry, We couldn't find any jobs in this category try checking on other categories") }}

@endif