@extends('layouts/contentNavbarLayout') @section('title', 'Bank Deposit') @section('vendor-style') @endsection @section('content')
| Date | Type | Amount (₹) | Payment Mode | Person Name | UTR / Ref. |
|---|---|---|---|---|---|
| {{ $e->entry_date->format('d/m/Y') }} | {{ $e->type === \App\Models\BankEntry::TYPE_DEPOSIT_TO_BANK ? 'Deposit to Bank' : 'Withdraw from Bank' }} | ₹ {{ number_format($e->amount, 2) }} | {{ $paymentModes[$e->payment_mode] ?? $e->payment_mode ?? '—' }} | {{ $e->person_name ?? '—' }} | {{ $e->transaction_id ?? '—' }} |
| No bank entries for the selected filter. | |||||
| Total | ₹ {{ number_format($total, 2) }} | ||||