@extends('layouts.admin') @section('title', 'Credit Notes') @section('page-title', 'Credit Notes') @section('content')
@if(!$panelOpen)
to
and
Clear
@if($creditNotes->isNotEmpty())
@foreach($creditNotes as $note) @php $status = $note->statusMeta(); @endphp @endforeach
Issue Date Doc. No. Status Client Name Amount Credits Avail. Action
{{ $note->credit_note_date->format('d M Y') }} {{ $note->credit_note_number }} {{ $status['label'] }} {{ $note->customer->name ?? '—' }} ₹{{ number_format($note->grand_total, 2) }} ₹{{ number_format($note->credits_available, 2) }}
@csrf @method('DELETE')
@else

Issue credits to your clients

Create credit notes for returns, discounts, or invoice corrections. Apply credits to future invoices or issue refunds.

New Credit Note @include('admin.credit-notes.partials.lifecycle')
In the Credit Notes Tab, you can:
@foreach($features as $feature)
{{ $feature }}
@endforeach
@endif
@if($creditNotes->isNotEmpty())
@include('admin.credit-notes.partials.lifecycle')
@endif @else
@include('admin.credit-notes.partials.sidebar-toolbar')
@forelse($creditNotes as $note) @php $qStatus = $note->statusMeta(); @endphp
{{ $note->credit_note_number }}
{{ $note->customer->name ?? '—' }} · {{ $note->credit_note_date->format('d M Y') }}
₹{{ number_format($note->grand_total, 2) }}
{{ $qStatus['label'] }}
@empty
No credit notes match filters.
@endforelse
@if($selected && isset($creditNote))
@include('admin.credit-notes.partials.preview', [ 'embedded' => true, 'closeUrl' => route('admin.credit-notes.index', request()->except('credit_note')), ])
@endif
@endif
@endsection @push('styles') @if($panelOpen ?? false) @endif @endpush @push('scripts') @if($panelOpen ?? false) @include('admin.credit-notes.partials.preview-scripts') @endif @endpush