Revenue
{{ $fmtAmt($total_revenue) }}
{{ $months[$month - 1] }} {{ $year }}
Expenses
{{ $fmtAmt($total_expense) }}
{{ $months[$month - 1] }} {{ $year }}
Net {{ $net_profit >= 0 ? 'Profit' : 'Loss' }}
{{ $net_profit < 0 ? '-' : '' }}{{ $fmtAmt(abs($net_profit)) }}
{{ $total_revenue > 0 ? round($net_profit / $total_revenue * 100) : 0 }}% margin
No expenses recorded
for {{ $months[$month - 1] }} {{ $year }}
| Date | Description | Category | Amount | Method | |
|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($e->expense_date)->format('d M') }} |
{{ $e->title }} @if($e->vendor){{ $e->vendor }} @endif |
{{ $category_icons[$e->category] ?? '' }}
{{ $e->category }}
@if($e->is_recurring)
{{ $e->recurrence }}
@endif
|
₹{{ number_format($e->amount, 0) }} | {{ str_replace('_', ' ', $e->payment_method) }} |
|
No expenses this month.
@elseProfit Margin
{{ $total_revenue > 0 ? round($net_profit / $total_revenue * 100) : 0 }}%
{{ $net_profit >= 0 ? $fmtAmt($net_profit) . ' profit' : $fmtAmt(abs($net_profit)) . ' loss' }}