@extends('layouts.admin') @section('title', 'Journal Entries') @section('content')
Record and manage all manual journal entries.
| 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. | ||||||