@extends('layouts.biller') @section('title', 'Sales & Collections Report') @section('page_title', 'Sales & Collections') @section('content')

Sales & Collections

Data from {{ $startDate->format('d M Y, h:i A') }} to {{ $endDate->format('d M Y, h:i A') }}

to

Sales Summary

Total Revenue ₹{{ number_format($salesSummary['total_revenue'], 2) }}
Subtotal ₹{{ number_format($salesSummary['total_subtotal'], 2) }}
Taxes (GST) ₹{{ number_format($salesSummary['total_gst'], 2) }}
Discounts -₹{{ number_format($salesSummary['total_discount'], 2) }}
Total Orders {{ $salesSummary['total_orders'] }}

Dine-in

₹{{ number_format($salesSummary['by_type']['dine_in'], 2) }}

Takeaway

₹{{ number_format($salesSummary['by_type']['takeaway'], 2) }}

Delivery

₹{{ number_format($salesSummary['by_type']['delivery'], 2) }}

Collection by Tender

Cash
₹{{ number_format($paymentMethods['cash'], 2) }}
Card
₹{{ number_format($paymentMethods['card'], 2) }}
UPI / Digital
₹{{ number_format($paymentMethods['upi'], 2) }}
@endsection