@extends('layouts.app') @section('title', 'Bank Transactions') @section('breadcrumbs') @endsection @section('content')
Match bank statements with ledger entries
| Date | Description | Debit | Credit | Match |
|---|---|---|---|---|
| {{ optional($bt->date)->format('d M Y') ?? '' }} | {{ Str::limit($bt->description ?? '', 30) }} | {{ ($bt->debit ?? 0) > 0 ? number_format($bt->debit, 2) : '-' }} | {{ ($bt->credit ?? 0) > 0 ? number_format($bt->credit, 2) : '-' }} | is_matched ? 'checked disabled' : '' }}> |
| No bank transactions | ||||
| Date | Account | Debit | Credit | Match |
|---|---|---|---|---|
| {{ optional($le->date)->format('d M Y') ?? '' }} | {{ Str::limit($le->ledgerAccount->name ?? '', 25) }} | {{ ($le->debit ?? 0) > 0 ? number_format($le->debit, 2) : '-' }} | {{ ($le->credit ?? 0) > 0 ? number_format($le->credit, 2) : '-' }} | is_matched ? 'checked disabled' : '' }}> |
| No unmatched entries | ||||