INVOICE

{{ $invoice->invoice_number }}

eBandroom

540 W. Louse Ave.

Vinita, OK 74301

Bill To

{{ $invoice->client->name }}

Invoice Date: {{ $invoice->invoice_date?->format('F j, Y') }}
Due Date: {{ $invoice->due_date?->format('F j, Y') }}
@foreach($invoice->lines as $line) @endforeach
SKU Description School Year Qty Unit Price Amount
{{ $line->sku }} {{ $line->name }} {{ $line->school_year_formatted }} {{ $line->quantity }} {{ formatMoney($line->unit_price) }} {{ formatMoney($line->amount) }}
Total {{ formatMoney($invoice->total) }}

Payment

Please make payment to:

eBandroom

540 W. Louse Ave.

Vinita, OK 74301

@if($invoice->notes)

Notes

{{ $invoice->notes }}

@endif