| {{ $number }} |
{{ $item->title }}
@if($item->employer()->exists())
@endif
| {{ $item->applications()->count() }} |
{{ \Illuminate\Support\Carbon::parse($item->created_at)->format('d/M/Y') }} |
@if(!empty($item->closes_at))
{{ \Illuminate\Support\Carbon::parse($item->closes_at)->format('d/M/Y') }}
@endif
|
{{ empty($item->active)? __('site.disabled'):__('site.enabled') }}
@if($item->employer)
{{ vacancyApproval($item->approval_status) }}
@endif
|
@can('access','view_applications')
@lang('site.applications')({{ $item->applications()->count() }})
@endcan
|