| ID |
Bank Account |
Book Number |
Cheque Range |
Total Leaves |
Available |
Used |
Issued Date |
Received By |
Status |
Actions |
@forelse($chequeBooks as $book)
| {{ $book->cheque_book_id }} |
{{ $book->bankAccount->bank_name ?? 'N/A' }}
{{ $book->bankAccount->account_number ?? 'N/A' }}
|
{{ $book->book_number ?? 'N/A' }} |
{{ $book->start_number }} - {{ $book->end_number }} |
{{ $book->total_leaves }} |
{{ $book->available_leaves_count }} |
{{ $book->used_leaves_count }} |
{{ $book->issued_date->format('Y-m-d') }} |
{{ $book->received_by ?? 'N/A' }} |
@if($book->status == 'active')
Active
@elseif($book->status == 'completed')
Completed
@else
Cancelled
@endif
|
|
@empty
| No cheque books found |
@endforelse
{{ $chequeBooks->links() }}