@extends('layouts.app') @section('header')
Bill To
{{ $invoice->customer->name }}
{{ $invoice->customer->address }}
TRN #: {{ $invoice->customer->gst }}
| Invoice #: {{ $invoice->invoice_number }} |
| Invoice Date: {{ date('d-m-Y', strtotime($invoice->invoice_date)) }} |
| Payment Terms: @if($invoice->expiry_days == 999) Cash on delivery @else {{ $invoice->expiry_days. ' Days' }} @endif |
| Customer Reference: {{ $invoice->reference_number }} |
| Sl. No | Item and description | Cat. No | Qty | UOM | Rate | Amount | Tax | Total |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $list->name }} {!! wordwrap($list->description,50," \n") !!} |
{!! wordwrap($list->catalogue,10," \n") !!} |
{{ $list->quantity }} | {!! wordwrap($list->uom,10," \n") !!} |
{{ $list->price }} | {{ number_format((float)($list->quantity * $list->price), 2, '.', '') }} | {{ number_format((float)($list->total - $list->price), 2, '.', '') }} | {{ $list->total }} |
| Sub total : | {{ $invoice->sub_total }} |
|---|---|
| Tax Amount : | {{ $invoice->tax }} |
Grand Total : |
{{ $invoice->total }} |
| Amount in Words : | {{ \FormHelper::SpellNumberEDP( (string)$invoice->total, "AED") }} |
Note: {{ $invoice->notes }}
With Regards,
Goods Received In Good Condition