{{-- Visible Card or Simple Text --}} @if($display_card === true)
| Description / Memo | Credit | Debit | Date |
|---|---|---|---|
| {{ $record->memo }} | @if(filled($record->credit)) {{ money($record->credit, $curr_unit) }} @endif | @if(filled($record->debit)) {{ money($record->debit, $curr_unit) }} @endif | {{ $record->created_at->format('d.m.Y H:i') }} |
| Only last {{ $limit }} entries are displayed | |||
| No Records Found | |||
| Total Credit | Total Debit | Current Balance |
|---|---|---|
| {{ $sum_credit }} | {{ $sum_debit }} | {{ $cur_balance }} |