@section('page-title', 'Employees Report')

{{ __('Employees Report') }}

{{ __('Filter and export employee information') }}

← {{ __('Back to Reports') }}
{{ __('Clear') }}

{{ $employees->count() }} {{ __('employees found') }}

@forelse($employees as $employee) @empty @endforelse
{{ __('Employee') }} {{ __('Contact') }} {{ __('Position') }} {{ __('Department') }} {{ __('Join Date') }} {{ __('Salary') }} {{ __('Status') }}
{{ substr($employee->first_name, 0, 1) }}{{ substr($employee->last_name, 0, 1) }}
{{ $employee->first_name }} {{ $employee->last_name }}
{{ $employee->employee_id }}
{{ $employee->email }}
{{ $employee->phone }}
{{ $employee->position ?: 'N/A' }} {{ $employee->department ?: 'N/A' }} {{ $employee->join_date ? $employee->join_date->format('M d, Y') : 'N/A' }} ${{ number_format($employee->base_salary, 0) }} @if($employee->contract_end && $employee->contract_end < now()) {{ __('Inactive') }} @else {{ __('Active') }} @endif
{{ __('No employees found matching the selected filters.') }}