@extends('layouts.app') @section('main')
Total Sales
Complete Profit
Total Expenses
Net Profit
| Date | Total Sales | Total Profit | Total Direct Sales | Total Direct Profit | Total Expenses | Net Profit |
|---|---|---|---|---|---|---|
| {{ $date }} | {{ number_format($sales, 2) }} | {{ number_format($profit, 2) }} | {{ number_format($directSales, 2) }} | {{ number_format($directProfit, 2) }} | {{ number_format($expenses, 2) }} | {{ number_format($netProfit, 2) }} |
| Total | {{ number_format($totalSalesSum, 2) }} | {{ number_format($totalProfitSum, 2) }} | {{ number_format($totalDirectSalesSum, 2) }} | {{ number_format($totalDirectProfitSum, 2) }} | {{ number_format($totalExpensesSum, 2) }} | {{ number_format($netProfitSum, 2) }} |