@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, 2) }} @if($employee->contract_end && $employee->contract_end < now()) Inactive @else Active @endif
No employees found matching the selected filters.