{{ __('Employee List') }}
Generated on {{ now()->format('F d, Y') }}
| {{ __('Employee') }} | {{ __('Contact') }} | {{ __('Department') }} | {{ __('Category') }} | {{ __('Join Date') }} | |
|---|---|---|---|---|---|
|
@if($e->profile_picture)
{{ $e->first_name }} {{ $e->last_name }} {{ $e->employee_id ?? 'N/A' }} |
{{ $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') }} {{ __('Add First Employee') }} |
|||||