{{ $tillData->business_date }} |
{{ $tillData->branch->name }} |
{{ $tillData->branch->reference }} |
{{ $tillData->user->name }} |
{{ $tillData->opening_amount }} |
{{ $tillData->closing_amount }} |
@php
echo $net = $tillData->cash_amount - $tillData->return_amount;
$total_net += $net
@endphp
|
@php
echo $expected_amount = $net + $tillData->opening_amount;
$total_expected_amount += $expected_amount;
@endphp
|
@php
echo $vr = $tillData->closing_amount - $expected_amount;
$variance += $vr;
@endphp
|
{{ $tillData->till_open_at }} |
{{ $tillData->till_close_at }} |
@endforeach