@extends('layouts.layout-horizontal') @section('title', 'Bank Statement') @section('content')
| Date | Type | Party | Reference | Remarks | Credit (In) | Debit (Out) |
|---|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($tx->date)->format('d-M-Y') }} | @if($tx->type === 'Receipt') Receipt @else Payment @endif | {{ $tx->party ?? '—' }} | {{ $tx->reference ?? '—' }} | {{ $tx->remarks ?? '—' }} | {{ $tx->credit > 0 ? '₹'.indian_number($tx->credit, 2) : '—' }} | {{ $tx->debit > 0 ? '₹'.indian_number($tx->debit, 2) : '—' }} |
| No transactions in this period | ||||||
| Totals: | ₹{{ indian_number($totalCredit, 2) }} | ₹{{ indian_number($totalDebit, 2) }} | ||||