@extends('layouts.app') @section('title', 'Employees') @section('content')

Employees

Manage your staff and their salary structures.

Add Employee
@forelse($employees as $employee) @empty @endforelse
Name Designation Department Net Salary Status Actions
{{ $employee->name }}
{{ $employee->email }}
{{ $employee->designation }} {{ $employee->department }} {{ formatCurrency($employee->salary->net_salary ?? 0) }} @if($employee->status == 'active') Active @else {{ ucfirst($employee->status) }} @endif
@csrf @method('DELETE')
No data

No employees found. Start by adding one!

@endsection