{{ __("Job Overview") }}
@if($row->created_at)
-
{{ __("Date Posted:") }}
{{ __("Posted :time_ago", ['time_ago' => $row->timeAgo()]) }}
@endif
@if($row->expiration_date)
-
{{ __("Expiration date:") }}
{{ display_date($row->expiration_date) }}
@endif
@if($row->location)
@php $location_translation = $row->location->translateOrOrigin(app()->getLocale()) @endphp
-
{{ __("Location:") }}
{{ $location_translation->name }}
@endif
@if($row->hours)
-
{{ __("Hours:") }}
{{ $row->hours }} @if($row->hours_type)/ {{ $row->hours_type }} @endif
@endif
@if($row->salary_min && $row->salary_max)
-
{{ __("Salary:") }}
{{ $row->getSalary() }}
@endif
-
{{ __("Experience:") }}
@if(empty($row->experience) || (float)$row->experience < 1)
{{ __("Fresh") }}
@else
{{ $row->experience }} {{ $row->experience > 1 ? __("years") : __("year") }}
@endif
@if($row->number_recruitments)
-
{{ __("Number Of Recruitments:") }}
{{ $row->number_recruitments }}
@endif
@if($row->gender)
-
{{ __("Gender:") }}
{{ $row->gender_text }}
@endif