@include('admin.cabi_rides.operations.navbar')
Credit/Debit Notes
Add Note
@if(session('success'))
{{ session('success') }}
@endif
@forelse ($notes as $index => $note) @empty @endforelse
# Note Type Customer Total Amount Taxable Date Action
{{ $index + 1 }} {{ ucfirst($note->note_type) }} {{ $note->customer->name ?? '-' }} ₹{{ number_format($note->grand_total, 2) }} {{ $note->is_non_taxable ? 'No' : 'Yes' }} {{ $note->created_at->format('d M Y') }}
No credit/debit notes found.
@push('js') @endpush