@foreach ($lateDepositList as $index => $data) @php $filePath = asset( 'uploads/images/accounting/depositslip/' . $data->depositSlip, ); @endphp @endforeach
#SL Deposit Date Branch Bank Information Cash In Hand(TK) Deposit Amount(TK) Balance(TK) Action
Bank Name A/C Number Branch Name.
{{ $index + 1 }} {{ \Carbon\Carbon::parse($data->depositDate)->format('d-m-Y') }} {{ $data->gnrBranchDisplay }} {{ $data->bankName }} {{ $data->accountNumber }} {{ $data->branchName }} {{ number_format($data->cashInHand, 2) }} {{ number_format($data->depositAmount, 2) }} {{ number_format($data->cashInHand - $data->depositAmount, 2) }} @if ((Auth::user()->branchId == 1) || (Auth::user()->branchId != 1 && $data->depositDate == $data->softwareDate)) @endif
{{ $lateDepositList->appends(request()->input())->links() }}