{{-- Step 1: Display Uploaded Information --}}
| Man No. | Name | Department | @foreach($earningCodes as $code){{ $code }} | @endforeach
|---|---|---|---|
| {{ $row['manno'] }} | {{ $row['employee_name'] }} | {{ $row['department'] }} | @foreach($earningCodes as $code){{ isset($row['earnings'][$code]) ? number_format($row['earnings'][$code]['amount'], 2) : '-' }} | @endforeach
{{-- Overall Total Card --}}
{{-- Earning Code Totals Card --}}
Total Amount
ZMW {{ number_format($validatedTotalAmount, 2, '.', ',') }}
Earning Totals
| Earning Code | Amount (ZMW) |
|---|---|
| {{ $code }} | {{ number_format($total, 2, '.', ',') }} |
Finish!
You have reached the last step of the upload process!