@extends('layouts.app') @section('title','Employees') @section('content')
| ID | Name | Department | Designation | Phone | Joined | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $e->employee_id }} | {{ $e->full_name }} | {{ $e->department->name ?? '—' }} | {{ $e->designation->name ?? '—' }} | {{ $e->phone ?? '—' }} | {{ $e->date_of_joining->format('d M Y') }} | {{ ucfirst(str_replace('_',' ',$e->status)) }} | |
| No employees found | |||||||