{{ $settings->company_name }}
@if($settings->company_address) {!! nl2br($settings->company_address)!!} |
|
| Invoice no: | {{ $invoice->inv_no }} |
|---|---|
| Invoice Date: | {{ date_format(date_create($invoice->sales_date),"d-M-Y") }} |
| Due Date: | {{ date_format(date_create($invoice->due_date),"d-M-Y") }} |
| Reference: | {{ $invoice->tracking_ref }} |
| Product | Description | Qty | Unit Price({{ $settings->currency_symbol}}) | Subtotal({{ $settings->currency_symbol}}) |
|---|---|---|---|---|
| {{ $product->item_name }} | {{ $product->description }} | {{ $product->qty }} | {{ number_format($product->price,2) }} | {{ number_format(($product->qty*$product->price),2) }} |
Note: {{ $invoice->salesNote }}
@endif| CONTAINER NO: | {{ $invoice->container_no }} |
|---|---|
| LOCK NO: | {{ $invoice->lock_no }} |
| TARE: | {{ $invoice->tare }} |
| Subtotal({{$settings->currency_symbol}}): | {{ number_format($invoice->sub_total,2) }} |
| Discount ( {{$invoice->dis_percent}}% ) | {{ number_format($invoice->dis_amount,2) }} |
| Total GST ( {{$invoice->tax_percent}}% ) | {{ number_format($invoice->tax_amount,2) }} |
| Invoice Total({{$settings->currency_symbol}}): | {{ number_format($invoice->totalAmount,2) }} |