Create, view, update and delete employees without reloading the page.
| # | Employee | Contact | Department | Salary | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $employees->firstItem() + $loop->index }} |
{{ $employee->name }}
Created {{ $employee->created_at->format('d M Y') }}
|
{{ $employee->email }}
{{ $employee->phone ?: 'No phone' }}
|
{{ $employee->department }} | ₹{{ number_format((float) $employee->salary, 2) }} | @if ($employee->status) Active @else Inactive @endif | |
| No employees found. | ||||||