{{ $garage->name ?? 'Garage' }}
| Description | Type | Amount |
|---|---|---|
| {{ $line->title }} | {{ ucfirst((string) $line->type) }} | {{ number_format((float)$line->amount, 2) }} |
| Total Allowance | {{ number_format((float)$payslip->total_allowance, 2) }} |
| Total Deduction | {{ number_format((float)$payslip->total_deduction, 2) }} |
| Total Fine | {{ number_format((float)$payslip->total_fine, 2) }} |
| Net Pay | {{ number_format((float)$payslip->net_pay, 2) }} |