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

Journal Entries

Record and manage all manual journal entries.

All Journal Entries

@forelse($journalEntries as $entry) @empty @endforelse
Date Entry # Description Total Debit Total Credit Status Actions
{{ $entry->entry_date->format('M d, Y') }} {{ $entry->entry_number }} {{ \Illuminate\Support\Str::limit($entry->description, 50) }} Rs. {{ number_format($entry->total_debit, 2) }} Rs. {{ number_format($entry->total_credit, 2) }} {{ ucfirst($entry->status) }} View
No journal entries found.
{{-- component remains open to scope modal and errors below --}} @if($errors->any())
@endif

New Journal Entry

@csrf
Entry Lines
Total Debit: Rs. 0.00
Total Credit: Rs. 0.00
@endsection @push('scripts') @endpush @push('scripts') @endpush