@if ($projects_or_jobs->count() >= 1) @if ($search_type == 'project')
@foreach ($projects_or_jobs as $project)
@if(cloudStorageExist() && in_array(Storage::getDefaultDriver(), ['s3', 'cloudFlareR2', 'wasabi'])) {{ $project->title ?? '' }} @else {{ $project->first_image ?? '' }} @endif
{{ $project->title }}
{{ float_amount_with_currency_symbol($project->basic_regular_charge) }}
@endforeach
@endif @if ($search_type == 'job')
@foreach ($projects_or_jobs as $job)
{{ $job->title }}
{{ float_amount_with_currency_symbol($job->budget) }}
@endforeach
@endif @if ($search_type == 'talent')
@foreach ($projects_or_jobs as $talent)
@if($talent->image) @if(cloudStorageExist() && in_array(Storage::getDefaultDriver(), ['s3', 'cloudFlareR2', 'wasabi'])) {{ $talent->first_name }} @else {{ $talent->image ?? '' }} @endif @else talent-image @endif
{{ $talent->fullname }}
{{ $talent->user_introduction?->title }}
@endforeach
@endif @else

{{ __('Nothing found') }}

@endif