@if($job_details->job_proposals->count() > 0) @foreach($job_details->job_proposals as $proposal)
@if($proposal?->freelancer->image) @if(cloudStorageExist() && in_array(Storage::getDefaultDriver(), ['s3', 'cloudFlareR2', 'wasabi'])) {{ $proposal?->freelancer?->first_name }} @else {{ $proposal?->freelancer?->fullname }} @endif @else {{ __('AuthorImg') }} @endif

{{ $proposal->freelancer?->fullname ?? '' }} {!! freelancer_skill_match_with_job_skill($proposal->freelancer_id, $job_details->id) !!}

{{ $proposal->freelancer?->user_introduction?->title ?? '' }} ยท {{ $proposal->freelancer?->user_state?->state ?? '' }}, {{ $proposal->freelancer?->user_country?->country ?? '' }}

{!! freelancer_rating($proposal->freelancer_id) !!}

{{ $proposal->created_at->diffForHumans() }}

{{ __('Offered') }} {{ float_amount_with_currency_symbol($proposal->amount) }}
{{ __('Est. delivery duration') }} {{ $proposal->duration }}
@if($job_details->type == 'hourly')
{{ __(ucfirst($job_details->type)) }} {{ float_amount_with_currency_symbol($proposal->hourly_rate ?? $job_details->hourly_rate) }}
@endif @if($job_details->type == 'hourly')
{{ __('Estimated hour') }} {{ $proposal->estimated_hours ?? $job_details->estimated_hours ?? '' }}
@endif
@endforeach @else

{{ __('Nothing Found') }}

@endif