{{-- Print Button --}}
← āĻĢāĻŋāϰ⧁āύ

đŸ”Ĩ Gas Cylinder Management

{{ config('app.contact_phone', '01700000000') }}

{{ config('app.address', 'āĻĸāĻžāĻ•āĻž, āĻŦāĻžāĻ‚āϞāĻžāĻĻ⧇āĻļ') }}

āχāύāĻ­āϝāĻŧ⧇āϏ

āύāĻ‚: {{ $invoice->invoice_number }}

āϤāĻžāϰāĻŋāĻ–: {{ $invoice->issue_date->format('d M Y') }}

@if($invoice->due_date)

āĻĒāϰāĻŋāĻļā§‹āϧ⧇āϰ āĻļ⧇āώ: {{ $invoice->due_date->format('d M Y') }}

@endif

@if($invoice->status === 'paid') āĻĒāϰāĻŋāĻļā§‹āϧāĻŋāϤ @elseif($invoice->status === 'partial') āφāĻ‚āĻļāĻŋāĻ• @else āĻŦāϕ⧇āϝāĻŧāĻž @endif

āĻ—ā§āϰāĻžāĻšāĻ•

{{ $invoice->customer->name }}

📞 {{ $invoice->customer->phone }}

@if($invoice->customer->address)

📍 {{ $invoice->customer->address }}

@endif
āĻ…āĻ°ā§āĻĄāĻžāϰ āϤāĻĨā§āϝ

āĻ…āĻ°ā§āĻĄāĻžāϰ āύāĻ‚: {{ $invoice->order->order_number }}

āĻ…āĻ°ā§āĻĄāĻžāϰ āϤāĻžāϰāĻŋāĻ–: {{ $invoice->order->created_at->format('d M Y') }}

@if($invoice->order->delivered_at)

āĻĄā§‡āϞāĻŋāĻ­āĻžāϰāĻŋ: {{ $invoice->order->delivered_at->format('d M Y') }}

@endif
{{-- Items --}} @foreach($invoice->order->items as $i => $item) @endforeach
# āĻĒāĻŖā§āϝ āĻĒāϰāĻŋāĻŽāĻžāĻŖ āĻāĻ•āĻ• āĻŽā§‚āĻ˛ā§āϝ āϏāĻžāĻŦāĻŸā§‹āϟāĻžāϞ
{{ $i + 1 }} {{ $item->cylinderType->name }} ({{ $item->cylinderType->weight_kg }} āϕ⧇āϜāĻŋ) {{ $item->quantity }} ā§ŗ{{ number_format($item->unit_price, 2) }} ā§ŗ{{ number_format($item->subtotal, 2) }}
āĻŽā§‹āϟ:ā§ŗ{{ number_format($invoice->total_amount, 2) }}
āĻĒāϰāĻŋāĻļā§‹āϧāĻŋāϤ:ā§ŗ{{ number_format($invoice->paid_amount, 2) }}
āĻŦāϕ⧇āϝāĻŧāĻž:ā§ŗ{{ number_format($invoice->due_amount, 2) }}
@if($invoice->payments->count() > 0)
āĻĒ⧇āĻŽā§‡āĻ¨ā§āϟ āĻŦāĻŋāĻŦāϰāĻŖ
@foreach($invoice->payments as $pay) @endforeach
āϤāĻžāϰāĻŋāĻ– āĻĒāĻĻā§āϧāϤāĻŋ Transaction ID āĻĒāϰāĻŋāĻŽāĻžāĻŖ
{{ $pay->paid_at->format('d M Y') }} {{ $pay->method_label }} {{ $pay->transaction_id ?? '—' }} ā§ŗ{{ number_format($pay->amount, 2) }}
@endif @if($invoice->notes)

āύ⧋āϟ: {{ $invoice->notes }}

@endif