@extends('layouts.finance') @section('title', 'Salaries') @section('subtitle', 'Employee payroll entries') @section('content') {{-- Breadcrumb --}}
| Pay Period | Employee | Gross | Net | Cur. | PKR Eq. | Bank Account | Notes | |
|---|---|---|---|---|---|---|---|---|
| {{ ($detail?->pay_period_month ?? $expense->expense_date)?->format('d M Y') ?? '-' }} | {{ $detail?->employee?->name ?? $expense->description }} | {{ $metrics->money($detail?->gross_amount ?? $expense->amount, $detail?->currency ?? $expense->currency) }} | {{ $detail?->net_amount !== null ? $metrics->money($detail->net_amount, $detail?->currency ?? $expense->currency) : '-' }} | {{ $detail?->currency ?? $expense->currency }} | {{ $metrics->money($metrics->convert($expense->amount, $expense->currency, 'PKR'), 'PKR') }} | {{ $expense->bankAccount?->name ?? 'None' }} | {{ $detail?->notes ?? '-' }} | Edit |
| No salary entries yet. Add employees above and record their first payment. | ||||||||