Process Cashbook Entry
Back to Processing
@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
@php
$entry = $entry ?? null;
@endphp
Cashbook Entries
| Date | Cashbook | Type | Amount | Client | Matter | Trust Account | Reference | Description | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ $entryRow->transaction_date ? $entryRow->transaction_date->format('d/m/Y') : '' }} | {{ $entryRow->cashbook?->name ?? 'N/A' }} | {{ ucfirst($entryRow->transaction_type ?? '') }} | {{ number_format($entryRow->amount, 2) }} | {{ $entryRow->client?->full_name ?? trim(($entryRow->client?->first_name ?? '') . ' ' . ($entryRow->client?->last_name ?? '')) ?: 'N/A' }} | {{ $entryRow->matter?->matter_number ?? $entryRow->matter?->matter_title ?? 'N/A' }} | {{ $entryRow->trustAccount?->account_number ?? 'N/A' }} | {{ $entryRow->reference ?? '-' }} | {{ \Illuminate\Support\Str::limit($entryRow->description, 30) }} | Edit |
| No cashbook entries found. Create your first entry using the form. | |||||||||
Total Entries: {{ $cashbookEntries->count() }}
Total Receipts:
{{ number_format($totalReceipts, 2) }}
Total Payments:
{{ number_format($totalPayments, 2) }}
Total Transfers:
{{ number_format($totalTransfers, 2) }}