@extends('layouts.admin') @section('title', 'Employee Master Data') @section('content')

Employee Master Data

Manage all employee records.

All Employees

@forelse($employees as $employee) @empty @endforelse
Employee ID Name Department Designation Joining Date Salary Actions
{{ $employee->employee_id }} {{ $employee->name }} {{ $employee->department }} {{ $employee->designation }} {{ optional($employee->date_of_joining)->format('M d, Y') ?? '-' }} Rs. {{ number_format($employee->salary, 2) }} Edit
@csrf @method('DELETE')
No employees found.
{{ $employees->links() }}

Add New Employee

@csrf
@endsection @push('scripts') @endpush