@extends('layouts.master') @section('content')
Back to Dashboard
Filter Journals
Clear
Journal Entries
Create Journal
@if($journals->isEmpty())

No journal entries found.

@else
@foreach($journals as $journal) @endforeach
Date Entry Number Description Transaction Type Total Debit Total Credit Status Created By Action
{{ 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' }}
{{ $journals->appends(request()->query())->links() }}
@endif
@endsection