@extends('layouts.admin') @section('title', 'Salary Slips') @section('content')

Salary Slips

Generate and manage employee salary slips.

@forelse($slips as $slip) @empty @endforelse
Employee Month Net Salary Actions
{{ $slip->employee->name ?? 'N/A' }} {{ \Carbon\Carbon::parse($slip->month)->format('F Y') }} {{ number_format($slip->net_salary, 2) }} View / Download
No salary slips found.
@endsection