Invoice templates

Super-admin templates drive pre-built issuer metadata, account rails, and invoice_domain. Issuing creates a live row in the payables queue and triggers notifications — use the Invoice issuance hub after templates exist.

Create template

@csrf

Saved templates

Pause blocks issuance from the Invoice issuance hub for that template only (hospital / medical, legal, logistics, etc.). Resume anytime.

@if ($invoiceTemplates->isEmpty())

No templates yet.

@else
    @foreach ($invoiceTemplates as $tpl)
  • {{ $tpl->title }}

    {{ $tpl->invoice_domain }} · {{ $tpl->category }}

    @if ($tpl->issuance_paused)

    Issuance paused

    @endif @if ($tpl->preset_amount_usd !== null)

    Preset: ${{ number_format((float) $tpl->preset_amount_usd, 2) }} @if(is_array($tpl->preset_line_items) && count($tpl->preset_line_items)) · {{ count($tpl->preset_line_items) }} line(s)@endif

    @endif
    @csrf
  • @endforeach
@endif