@lang('accounting-reports::lang.cheque_book_details')
| @lang('accounting-reports::lang.book_name'): | {{ $chequeBook->book_name }} |
| @lang('accounting-reports::lang.bank_account'): | {{ $chequeBook->account->name ?? '-' }} |
| @lang('accounting-reports::lang.cheque_range'): | {{ $chequeBook->start_cheque_no }} - {{ $chequeBook->end_cheque_no }} |
| @lang('accounting-reports::lang.total_cheques'): | {{ $chequeBook->total_cheques }} |
| @lang('accounting-reports::lang.used_cheques'): | {{ $chequeBook->used_cheques }} |
| @lang('accounting-reports::lang.remaining_cheques'): | {{ $chequeBook->remaining_cheques }} |
| @lang('accounting-reports::lang.status'): | @if($chequeBook->status == 'active') @lang('accounting-reports::lang.active') @elseif($chequeBook->status == 'completed') Completed @else @lang('accounting-reports::lang.cancelled') @endif |
| @lang('accounting-reports::lang.issue_date'): | {{ $chequeBook->issue_date ? @format_date($chequeBook->issue_date) : '-' }} |
@lang('accounting-reports::lang.cheque_range')
@if($entry->status == 'cleared') Cleared @elseif($entry->status == 'bounced') Bounced @elseif($entry->status == 'pending') Pending @elseif($entry->status == 'deposited') Deposited @elseif($entry->status == 'cancelled') Cancelled @elseif($entry->status == 'available') Available @else {{ ucfirst($entry->status) }} @endif @if($entry->payee_name)
{{ Str::limit($entry->payee_name, 14) }} @endif {{-- Print button for any entry (available ones can be printed blank) --}}
Print @else
@lang('accounting-reports::lang.available') @endif