@extends('layout.app') @section('content')

Transaction Information


Total Turnover

{{ number_format($totalDeposits + $totalWithdrawals, 2) }} TK

Total Deposits

{{ number_format($totalDeposits, 2) }} TK

Total Withdrawals

{{ number_format($totalWithdrawals, 2) }} TK

Net Balance

{{ number_format($netBalance, 2) }} TK


@foreach ($bank_transfar as $transfar) @endforeach
# Date Account Name Account No Check No Bank Name Branch Name Discription Deposit/Withdraw By Diposit Amount(TK) Withdraw Amount(TK) Action
{{ $loop->iteration }} {{ $transfar->created_at->format('d-m-Y') }} {{ $transfar->bank->account_name ?? 'N/A' }} {{ $transfar->bank->account_no ?? 'N/A' }} {{ $transfar->check_no ?? '-' }} {{ $transfar->bank->bank_name ?? 'N/A' }} {{ $transfar->bank->branch_name ?? 'N/A' }} {{ $transfar->description ?? '-' }} {{ $transfar->by ?? '-' }} {{ $transfar->diposit_amount ?? '0.00' }} {{ $transfar->withdraw_amount ?? '0.00' }}
{{-- @if ($transfar->status == 0) Disapproved @else @endif --}}
@csrf @method('DELETE')
{{ $bank_transfar->links() }}
@endsection @push('js') @endpush