@if ($job->last_seen != null)
{{ __('Last Seen') }}
{{ \Carbon\Carbon::parse($job->last_seen)?->diffForHumans() }}
@endif
@if ($job->attachment)
{{ __('Attachment') }}
@php
$attUrl =
cloudStorageExist() &&
in_array(Storage::getDefaultDriver(), ['s3', 'cloudFlareR2', 'wasabi'])
? render_frontend_cloud_image_if_module_exists(
'jobs/' . $job->attachment,
load_from: $job->load_from,
)
: asset('assets/uploads/jobs/' . $job->attachment);
@endphp
{{ __('Download') }}
@endif
@if ($job->level)
{{ __('Experience Level') }}
{{ ucfirst($job->level) }}
@endif
{{ __('Category') }}
{{ $job->job_category?->category ?? '' }}
@if ($job->country_restriction_type && $job->country_restriction_type != 'none')
{{ __('Restriction') }}
@if ($job->country_restriction_type == 'include')
{{ __('Only Allowed') }}
@elseif($job->country_restriction_type == 'exclude')
{{ __('Excluded') }}
@endif
@endif
@if (!empty($allowed_countries) && count($allowed_countries) > 0)
{{ __('Allowed Countries') }}
@foreach ($allowed_countries as $country)
{{ $country }}
@endforeach
@endif
@if (!empty($excluded_countries) && count($excluded_countries) > 0)
{{ __('Excluded Countries') }}
@foreach ($excluded_countries as $country)
{{ $country }}
@endforeach
@endif