{{ __('lng.WithdrawHistory') }}
{{ __('lng.SiNo') }} |
{{ __('lng.Date') }} |
{{ __('lng.PayAmount') }} |
@php $si=$WithdrawTotal=0; @endphp
@foreach ($BankingRegister->BankingWithdraw()->where('isCancelled', false)->orWhereNull('isCancelled')->get() as $BankingWithdraw)
@php $Date = date("d-m-y",strtotime($BankingWithdraw->date));@endphp
{{ ++$si }} |
{{ $Date }} |
@currency($BankingWithdraw->amount) |
@php
$WithdrawTotal += $BankingWithdraw->amount;
@endphp
@endforeach
@if ($WithdrawTotal)
{{ __('lng.Total') }}
|
@currency($WithdrawTotal) |
@endif