@extends('layouts.admin') @section('title', 'Debit Notes') @section('page-title', 'Debit Notes') @section('content')
@if(!$panelOpen)
to
and
Clear
@if($debitNotes->isNotEmpty())
@foreach($debitNotes as $note) @php $status = $note->statusMeta(); @endphp @endforeach
Issue Date Doc. No. Status Client/Vendor Name Amount Amount Due Action
{{ $note->debit_note_date->format('d M Y') }} {{ $note->debit_note_number }} {{ $status['label'] }} {{ $note->partyName() }} ₹{{ number_format($note->grand_total, 2) }} ₹{{ number_format($note->amount_due, 2) }}
@csrf @method('DELETE')
@else

There are no debit notes created yet

Issue debit notes when taxable value or tax on an invoice was understated. Record additional amounts due from clients or vendors.

New Debit Note @include('admin.debit-notes.partials.lifecycle')
In the Debit Notes tab, you can:
@foreach(config('debit_note.empty_state.capabilities', $features) as $feature)
{{ $feature }}
@endforeach
@endif
@if($debitNotes->isNotEmpty())
@include('admin.debit-notes.partials.lifecycle')
@endif @else
@include('admin.debit-notes.partials.sidebar-toolbar')
@forelse($debitNotes as $note) @php $qStatus = $note->statusMeta(); @endphp
{{ $note->debit_note_number }}
{{ $note->partyName() }} · {{ $note->debit_note_date->format('d M Y') }}
₹{{ number_format($note->grand_total, 2) }}
{{ $qStatus['label'] }}
@empty
No debit notes match filters.
@endforelse
@if($selected && isset($debitNote))
@include('admin.debit-notes.partials.preview', [ 'embedded' => true, 'closeUrl' => route('admin.debit-notes.index', request()->except('debit_note')), ])
@endif
@endif
@endsection @push('styles') @if($panelOpen ?? false) @endif @endpush @push('scripts') @if($panelOpen ?? false) @include('admin.debit-notes.partials.preview-scripts') @endif @endpush