@extends('admin.layouts.app') @section('title', 'Job Positions') @section('page-title', 'Quản lý Vị trí Tuyển dụng') @section('content')
Reset
@forelse($jobPositions as $position)

{{ $position->title }}

@if ($position->is_featured) @endif {{ ucfirst($position->status) }}
{{ $position->department }}
{{ $position->location }}
{{ $position->employment_type_label }} - {{ $position->experience_level_label }}
{{ $position->formatted_salary }}
{{ $position->applicants_count }} @if ($position->max_applications) / {{ $position->max_applications }} @endif ứng viên
Xem Sửa
@csrf @method('DELETE')
@empty

Không có vị trí tuyển dụng nào.

@endforelse
{{ $jobPositions->links() }}
@endsection