@if ($jobPositions->count() > 0)
@foreach ($jobPositions as $position)
{{ $position->department }}
{{-- Row 1: Location | Employment Type --}}
{{ $position->location }}
{{ $position->employment_type_label }}
{{-- Row 2: Experience Level | Salary --}}
{{ $position->experience_level_label }}
{{ $position->formatted_salary }}
@if ($position->is_featured)
Nổi bật
@endif
@if ($position->application_deadline)
Hạn nộp:
{{ $position->application_deadline->format('d/m/Y') }}
@endif
@endforeach
@else
Không tìm thấy vị trí nào
Hãy thử thay đổi bộ lọc tìm kiếm của bạn
@endif