Profit & Loss Account
Period: {{ $from ?? 'Start' }} → {{ $to ?? 'End' }}
| Particulars | Amount | % |
|---|---|---|
| Trading Account | ||
| Sales Accounts | ||
| {{ $row['account'] }} | {{ number_format($row['balance'], 2) }} | {{ $totalSales ? number_format(($row['balance'] / $totalSales) * 100, 2) : 0 }} % |
| Total Sales | {{ number_format($totalSales, 2) }} | 100 % |
| Cost of Sales | ||
| Opening Stock | {{ number_format($openingStock ?? 0, 2) }} | |
| Add: Purchase Accounts | {{ number_format($purchaseAccounts ?? 0, 2) }} | |
| Less: Closing Stock | {{ number_format($closingStock ?? 0, 2) }} | |
| Total Cost of Sales | {{ number_format($totalCOGS, 2) }} | {{ $totalSales ? number_format(($totalCOGS / $totalSales) * 100, 2) : 0 }} % |
| Gross Profit | {{ number_format($grossProfit, 2) }} | {{ $totalSales ? number_format(($grossProfit / $totalSales) * 100, 2) : 0 }} % |
| Income Statement | ||
| Indirect Incomes | ||
| {{ $row['account'] }} | {{ number_format($row['balance'], 2) }} | {{ $totalSales ? number_format(($row['balance'] / $totalSales) * 100, 2) : 0 }} % |
| Total Indirect Incomes | {{ number_format($totalIndirectIncome, 2) }} | {{ $totalSales ? number_format(($totalIndirectIncome / $totalSales) * 100, 2) : 0 }} % |
| Indirect Expenses | ||
| {{ $row['account'] }} | {{ number_format($row['balance'], 2) }} | {{ $totalSales ? number_format(($row['balance'] / $totalSales) * 100, 2) : 0 }} % |
| Total Indirect Expenses | {{ number_format($totalIndirectExpense, 2) }} | {{ $totalSales ? number_format(($totalIndirectExpense / $totalSales) * 100, 2) : 0 }} % |
| Excess of Income over Expenditure | {{ number_format($net, 2) }} | {{ $totalSales ? number_format(($net / $totalSales) * 100, 2) : 0 }} % |