Profit & Loss Statement

{{ $profile->business_name }}  |  GSTIN: {{ $profile->gstin ?? 'N/A' }}

Period: {{ \Carbon\Carbon::parse($fyStart)->format('d M Y') }} to {{ \Carbon\Carbon::parse($fyEnd)->format('d M Y') }}

Generated: {{ now()->format('d M Y') }}

@foreach($data['revenue']['rows'] as $row) @endforeach
Revenue AccountAmount (₹)
{{ $row['account']->account_name }}{{ number_format($row['balance'],2) }}
Total Revenue₹{{ number_format($data['revenue']['total'],2) }}
@foreach($data['expense']['rows'] as $row) @endforeach
Expense AccountAmount (₹)
{{ $row['account']->account_name }}{{ number_format($row['balance'],2) }}
Total Expenses₹{{ number_format($data['expense']['total'],2) }}
{{ $data['net_profit'] >= 0 ? 'NET PROFIT' : 'NET LOSS' }} ₹{{ number_format(abs($data['net_profit']),2) }}

Generated by {{ config('app.name') }} on {{ now()->format('d M Y H:i') }}