@include('header')
Monthy Sales Information

Monthy Sales

@php $sno = 1; @endphp @foreach($monthlySales as $sale) @endforeach
SLNO Store Category Customer Total Amount Paid Amount Balance
{{ $sno++ }} {{ $sale->store->store ?? 'N/A' }} {{ $sale->category->category ?? 'N/A' }} {{ $sale->customer->name ?? 'N/A' }} {{ number_format($sale->total_amount,2) }} {{ number_format($sale->advance_paid,2) }} {{ number_format($sale->balance,2) }}
@include('footer')