| {!! $sortLink('employee_code','Code') !!} | {!! $sortLink('first_name','Name') !!} | Department | Position | {!! $sortLink('salary','Salary') !!} | {!! $sortLink('status','Status') !!} | Actions |
|---|---|---|---|---|---|---|
| {{ $employee->employee_code }} | {{ $employee->full_name }} | {{ $employee->department?->name ?? '—' }} | {{ $employee->position?->title ?? '—' }} | {{ money($employee->salary) }} | @php $colors = ['active'=>'green','on_leave'=>'amber','terminated'=>'red']; $c = $colors[$employee->status] ?? 'gray'; @endphp {{ ucfirst(str_replace('_',' ',$employee->status)) }} | View @can('hr.employees.edit') Edit @endcan @can('hr.employees.delete') @endcan |
| No employees found. | ||||||