@extends('layouts.admin') @section('title', 'Cheque Management') @section('content')
Track all incoming and outgoing cheques.
| Cheque # | Type | Payee | Bank Account | Issue Date | Amount | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $ch->cheque_number }} | {{ ucfirst($ch->type) }} | {{ $ch->payee ?? '-' }} | {{ $ch->bankAccount->bank_name ?? '' }} - {{ $ch->bankAccount->account_number ?? '' }} | {{ $ch->issue_date->format('M d, Y') }} | {{ number_format($ch->amount,2) }} | {{ ucfirst($ch->status) }} | |
| No cheques found. | |||||||