{{ $job_details->title }}
{{ $job_details->created_at->toFormattedDateString() ?? '' }} - {{ ucfirst(__($job_details->level)) ?? '' }}
{{ float_amount_with_currency_symbol($job_details->hourly_rate) }} {{ ucfirst($job_details->type) }}
@else{{ float_amount_with_currency_symbol($job_details->budget) }} {{ ucfirst($job_details->type) }}
@endif- {{ $job_details->job_creator?->user_country?->country }}
- {{ __('Proposal:') }} {{ $job_details->job_proposals?->count() }} @if(moduleExists('HourlyJob'))
- @if($job_details->job_creator?->user_wallet?->balance >= ($job_details->hourly_rate * $job_details->estimated_hours) ) {{ __('Verified') }} @else {{ __('Not Verified') }} @endif @endif
- {{ ucfirst(__($job_details->duration)) ?? '' }} @if($job_details->type == 'hourly')
- {{ __('Estimated Hours:') }} {{ $job_details->estimated_hours ?? '' }} @endif
{{ __('Submit Proposal') }}
{{ __('Submit Proposal') }}
@endif
{{ $job_details?->job_creator?->fullname }}
{{ $job_details?->job_creator?->user_state?->state }} ,
{{ $job_details?->job_creator?->user_country?->country }}
@if($job_details->job_creator?->user_verified_status == 1)
@endif
{{ $job_details->job_creator?->created_at->toFormattedDateString() ?? '' }}
{{ $user->user_jobs?->count() }}
{{ round($hiring_rate) ?? 0 }}%
{{ \Carbon\Carbon::parse($job_details->last_seen)?->diffForHumans() }}
{{ __('Activities') }}
-
@php
$activity_count = 0;
@endphp
@foreach ($job_details?->job_proposals as $proposal)
@if ($proposal->is_interview_take == 1)
@php
$activity_count++;
@endphp
-
{{ __('Interviewed') }} {{ $proposal?->freelancer?->fullname }}
{{ $proposal->updated_at?->toFormattedDateString() }}
@endif
@if ($proposal?->is_interview_take == 0 && $proposal?->is_short_listed == 1)
@php
$activity_count++;
@endphp
-
{{ __('Shortlisted') }} {{ $proposal?->freelancer?->fullname }}
{{ $proposal->updated_at?->toFormattedDateString() }}
@endif
@endforeach
@if($activity_count === 0)
{{ __('No Activities') }}
@endif{{ __('All Proposals') }}
@endforeach