@extends('layouts.app') @section('title', 'Journal Entries') @section('content')

Journal Entries

Manual Entry
{{-- Filters --}}
Clear
@forelse ($entries as $entry) @empty @endforelse
# Date Narration Type Debit Credit By Status
{{ $entry->entry_number }} {{ $entry->entry_date->format('d M Y') }} {{ Str::limit($entry->narration, 60) }} {{ ucfirst($entry->entry_type) }} ৳ {{ number_format($entry->total_debit, 2) }} ৳ {{ number_format($entry->total_credit, 2) }} {{ $entry->createdBy->name ?? '—' }} @if ($entry->is_reversed) Reversed @elseif ($entry->is_reversal) Reversal @else Active @endif
No journal entries found.
{{ $entries->links() }}
@endsection