|
ACCOUNTIFY
123 Finance Plaza, Suite 400
Mumbai, Maharashtra - 400001 Phone: +91 98765 43210 |
INVOICE #{{ $invoice->invoice_number }}
{{ strtoupper($invoice->status) }}
|
|
BILL TO
{{ $invoice->customer->name }}
@if($invoice->customer->company_name)
{{ $invoice->customer->company_name }}
@endif
{!! nl2br(e($invoice->customer->billing_address)) !!}
|
|
| ITEM & DESCRIPTION | QTY | RATE | AMOUNT |
|---|---|---|---|
| {{ $item->item_name }} | {{ number_format($item->quantity, 2) }} | {{ getCurrencySymbol() }}{{ number_format($item->rate, 2) }} | {{ getCurrencySymbol() }}{{ number_format($item->amount, 2) }} |
| SUB TOTAL | {{ getCurrencySymbol() }}{{ number_format($invoice->subtotal, 2) }} |
| {{ strtoupper($invoice->taxDetails->name) }} ({{ $invoice->taxDetails->rate }}%) | {{ getCurrencySymbol() }}{{ number_format($invoice->tax_amount, 2) }} |
| TOTAL | {{ getCurrencySymbol() }}{{ number_format($invoice->total_amount, 2) }} |