| Employee | Earned | Paid | Balance | Action |
|---|---|---|---|---|
|
{{ strtoupper(substr($emp->name, 0, 1)) }}
{{ $emp->name }}
{{ $emp->display_role }}
@if(count($empBreakdown))
@foreach($empBreakdown as $line)
@endif
{{ $line['sale_date'] }} · {{ $line['service_name'] }} ·
KSh {{ number_format($line['amount'], 2) }}
@endforeach
|
KSh {{ number_format($earned, 2) }} | KSh {{ number_format($paid, 2) }} | @if($balance > 0) KSh {{ number_format($balance, 2) }} @elseif($balance < 0) KSh {{ number_format($balance, 2) }} @else Settled @endif |
@if(count($empBreakdown))
@endif
@if($balance > 0)
@endif
|
| No commission data for this date. | ||||
| Totals | KSh {{ number_format($tE, 2) }} | KSh {{ number_format($tP, 2) }} | KSh {{ number_format($tB, 2) }} | |