Generated on {{ now()->format('F d, Y H:i:s') }}
Total Employees: {{ $employees->count() }}
| ID | Name | Position | Department | Salary | Status | |
|---|---|---|---|---|---|---|
| {{ $employee->employee_id }} | {{ $employee->first_name }} {{ $employee->last_name }} | {{ $employee->email }} | {{ $employee->position ?: 'N/A' }} | {{ $employee->department ?: 'N/A' }} | ${{ number_format($employee->base_salary, 2) }} | @if($employee->contract_end && $employee->contract_end < now()) Inactive @else Active @endif |