@extends('layouts.layout-horizontal') @section('title', 'Sale Receipts') @section('css') @include('partials._index-table-styles') @endsection @section('content')
| Received From (Party) | Deposited To (Bank) | Reference | Amount | Remarks | Action |
|---|---|---|---|---|---|
|
{{ $dateLabel }} ({{ $dateReceipts->count() }})
₹{{ indian_number($dayTotal, 2) }}
|
|||||
|
{{ $initial }}
{{ $receipt->party?->name ?? '—' }}
|
{{ $receipt->bank->name ?? '—' }} ({{ ucfirst($receipt->bank->mode ?? '') }}) | {{ $receipt->reference ?: '—' }} | ₹{{ indian_number($receipt->amount, 2) }} | {{ Str::limit($receipt->remarks, 30) }} | |
| @include('partials._empty-state', [ 'icon' => 'ph-money', 'title' => 'No receipts yet', 'subtitle' => 'Record your first sale receipt.', 'action' => route('sale-receipts.create'), 'actionLabel' => 'Record Receipt', ]) | |||||
| {{ $receipts->count() }} receipts | ₹{{ indian_number($receipts->sum('amount'), 2) }} | ||||