@extends('layouts.admin') @section('title', 'Monthly Sales Report') @section('subtitle', \Carbon\Carbon::parse($month . '-01')->format('F Y')) @section('actions') @endsection @section('content')
Total Sales
LKR {{ number_format($summary['total_sales'], 2) }}
Total Invoices
{{ number_format($summary['total_invoices']) }}
Total Refunds
LKR {{ number_format($summary['total_refunds'] ?? 0, 2) }}
Average Daily Sales
LKR {{ number_format($summary['avg_daily'], 2) }}
No data for this month
| Date | Invoices | Total Sales |
|---|---|---|
| {{ \Carbon\Carbon::parse($day->date)->format('D, M d') }} | {{ number_format($day->invoices) }} | LKR {{ number_format($day->total, 2) }} |
📊
No sales data for this month