Financial Management & Ledger

Double-entry journal ledger, Chart of Accounts, and Profit & Loss statement.

@if($activeTab === 'journal')

Posted Journal Entries (Traceable to Source Document)

@forelse($journals as $jv)
{{ $jv->entry_number }} • {{ $jv->entry_date->format('d M Y') }}
{{ $jv->description }}
@foreach($jv->lines as $line) @endforeach
Account Debit (Dr) Credit (Cr)
{{ $line->account->code }} - {{ $line->account->name }} @if($line->memo) {{ $line->memo }} @endif {{ $line->debit > 0 ? '₹' . number_format($line->debit, 2) : '—' }} {{ $line->credit > 0 ? '₹' . number_format($line->credit, 2) : '—' }}
@empty
No financial journal entries posted yet. Operational transactions (advances, invoices, expenses) will appear here automatically.
@endforelse
{{ $journals->links() }}
@endif @if($activeTab === 'pnl')

Profit & Loss Statement

Mayoora Costume House • Financial Year {{ now()->format('Y') }}-{{ now()->addYear()->format('y') }}

Operating Revenue

Costume Rental Revenue: ₹{{ number_format($rentalRevenue, 2) }}
Retail Sales Revenue: ₹{{ number_format($salesRevenue, 2) }}
Total Operating Revenue: ₹{{ number_format($totalRevenue, 2) }}

Operating Expenses

Total Operating Expenses (Cleaning, Alterations, Rent): ₹{{ number_format($totalExpenses, 2) }}
Net Operating Profit / (Loss): ₹{{ number_format($netProfit, 2) }}
@endif @if($activeTab === 'coa')
@foreach($accounts as $acc) @endforeach
Account Code Account Name Category Type Status
{{ $acc->code }} {{ $acc->name }} {{ $acc->type }} Active
@endif