{{ $from }} to {{ $to }}
@if($tab === 'sales')| Order | Customer | Date | Total |
|---|---|---|---|
| #{{ $o->id }} | {{ $o->customer->name ?? '—' }} | {{ $o->created_at->format('d M Y') }} | ₹{{ number_format($o->total_amount, 0) }} |
| Stage | Count |
|---|---|
| {{ ucfirst($stage) }} | {{ $count }} |
| Order | Customer | Balance |
|---|---|---|
| #{{ $o->id }} | {{ $o->customer->name ?? '—' }} | ₹{{ number_format($o->balance_amount, 0) }} |
| Staff | Date | Notes | Amount |
|---|---|---|---|
| {{ $p->staff->name ?? '—' }} | {{ $p->paid_on->format('d M Y') }} | {{ $p->notes ?? '—' }} | ₹{{ number_format($p->amount, 0) }} |