| Empleado | Monto | Fecha de pago | Método | N° Operación | Estado |
|---|---|---|---|---|---|
| {{ $payment->employee->first_name .' '. $payment->employee->last_name }} | {{ number_format($payment->amount, 2) }} | {{ \Carbon\Carbon::parse($payment->payment_date)->format('d/m/Y') }} | {{ $payment->method }} | {{ $payment->operation_number ?? '-' }} | {{ ucfirst($payment->status) }} |
Total pagos: {{ count($staffPayments) }}
Total desembolsado: {{ number_format($staffPayments->sum('amount'), 2) }}