@extends('layouts.app') @section('header')
@endsection @section('content') @php $address = []; @endphp

Tax INVOICE

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 }}
@foreach($invoiceList as $list) @endforeach
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") }}
@if($invoice->notes)

Note: {{ $invoice->notes }}

@endif

With Regards,

ANVAR SADATH Sales Cooridinator Mob - +971 557256543 / Email - sales@gomet.bio

Goods Received In Good Condition

Receiver Name: Signature:
@endsection @section('scripts') @endsection