@if($journals->isEmpty())
No journal entries found.
@else
| Date |
Entry Number |
Description |
Transaction Type |
Total Debit |
Total Credit |
Status |
Created By |
Action |
@foreach($journals as $journal)
| {{ date('d/m/Y', strtotime($journal->transaction_date)) }} |
{{ $journal->entry_number }} |
{{ $journal->description }} |
{{ $journal->transaction_type }} |
{{ number_format($journal->total_debit, 2) }} |
{{ number_format($journal->total_credit, 2) }} |
{{ ucfirst($journal->status) }}
|
{{ $journal->creator->name ?? 'N/A' }} |
|
@endforeach
{{ $journals->appends(request()->query())->links() }}
@endif