@extends('backend.app') @section('title', 'Monthly Profit Report') @section('content')

Monthly Profit Report

{{-- Filter Form --}}
{{-- Report Summary Cards --}}
Total Sales (Inc. Delivery)

৳ {{ number_format($monthlySales, 2) }}

Net Sales (Exc. Delivery)

৳ {{ number_format($monthlyNetSales, 2) }}

Total Product Cost

৳ {{ number_format($monthlyProductCost, 2) }}

Gross Profit

৳ {{ number_format($monthlyGrossProfit, 2) }}

(Net Sales - Cost)
Total Ad Cost

৳ {{ number_format($monthlyAdCost, 2) }}

Total Other Expenses

৳ {{ number_format($monthlyOtherExpense, 2) }}

Final Net Profit

৳ {{ number_format($monthlyNetProfit, 2) }}

(Gross - All Expenses)
{{-- Daily Sales Chart --}}
Daily Sales Overview ({{ date('F Y', mktime(0, 0, 0, $month, 1, $year)) }})
{{-- Chart.js CDN --}} @endsection