@extends('layouts.master') @section('css') @endsection @section('title') Profit & Loss Account @endsection @section('content')
| Particulars | Amount |
|---|---|
| Opening Stock | {{ number_format($openingStock, 2) }} |
| {{ $group->name }} | {{ number_format($group->amount, 2) }} |
| Closing Stock | {{ number_format($closingStock, 2) }} |
| Gross Profit | {{ number_format($grossProfitOrLoss, 2) }} |
| Total | {{ number_format($debitTotal, 2) }} |
|---|
| Particulars | Amount |
|---|---|
| Opening Stock | {{ number_format($openingStock, 2) }} |
| {{ $group->name }} | {{ number_format($group->amount, 2) }} |
| Closing Stock | {{ number_format($closingStock, 2) }} |
| Gross Loss | {{ number_format($grossProfitOrLoss, 2) }} |
| Total | {{ number_format($creditTotal, 2) }} |
|---|
| Total | {{ number_format($debitTotal, 2) }} | Total | {{ number_format($creditTotal, 2) }} |
|---|
| Particulars | Amount |
|---|---|
| Gross Loss | {{ number_format($grossProfitOrLoss, 2) }} |
| {{ $netProfitGroup->name }} | {{ number_format($netProfitGroup->amount, 2) }} |
| Net Profit | {{ number_format($netProfitOrLoss, 2) }} |
| Total | {{ number_format($netProfitDebitTotal, 2) }} |
|---|
| Particulars | Amount |
|---|---|
| Gross Profit | {{ number_format($grossProfitOrLoss, 2) }} |
| {{ $netProfitGroup->name }} | {{ number_format($netProfitGroup->amount, 2) }} |
| Net Loss | {{ number_format($netProfitOrLoss, 2) }} |
| Total | {{ number_format($netProfitCreditTotal, 2) }} |
|---|
| Total | {{ number_format($netProfitDebitTotal, 2) }} | Total | {{ number_format($netProfitCreditTotal, 2) }} |
|---|