Employee List
Generated on {{ now()->format('F d, Y') }}
| Employee ID | Name | Phone | Department | Category | Join Date | |
|---|---|---|---|---|---|---|
| {{ $e->employee_id ?? 'N/A' }} | {{ $e->first_name }} {{ $e->last_name }} | {{ $e->email ?? 'N/A' }} | {{ $e->phone ?? 'N/A' }} | {{ $e->department ? ucfirst($e->department) : 'N/A' }} | @if($e->category == 'full_time') Full Time @elseif($e->category == 'part_time') Part Time @elseif($e->category == 'contract') Contract @else N/A @endif | {{ $e->join_date ? \Carbon\Carbon::parse($e->join_date)->format('M d, Y') : 'N/A' }} |
| No employees found | ||||||
Total Employees: {{ $employees->count() }}
{{ org_name() }} - Human Resource Management System
This is a system-generated document