@extends('layouts.app') @section('title', 'Profit and Loss') @section('content')
From {{ date('d M Y', strtotime($startDate)) }} to {{ date('d M Y', strtotime($endDate)) }}
| Description | Total Amount |
|---|---|
| Operating Income | |
| Sales Income (from Invoices) | {{ formatCurrency($totalIncome) }} |
| Total Operating Income | {{ formatCurrency($totalIncome) }} |
| Operating Expense | |
| Purchases & Expenses (from Bills) | {{ formatCurrency($totalExpenses) }} |
| Total Operating Expense | {{ formatCurrency($totalExpenses) }} |
| NET PROFIT | {{ formatCurrency($netProfit) }} |