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

Quotation

Bill To

{{ $estimate->customer->name }}

{{ $estimate->customer->address }}

TRN #: {{ $estimate->customer->gst }}

Quotation #: {{ $estimate->estimate_number }}
Quotation Date: {{ date('d-m-Y', strtotime($estimate->estimate_date)) }}
Payment Terms: @if($estimate->expiry_days == 999) Cash on delivery @else {{ $estimate->expiry_days. ' Days' }} @endif
Customer Reference: {{ $estimate->reference_number }}
@foreach($estimateList 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 : {{ $estimate->sub_total }}
Tax Amount : {{ $estimate->tax }}

Grand Total :

{{ $estimate->total }}
Amount in Words : {{ \FormHelper::SpellNumberEDP( (string)$estimate->total, "AED") }}
@if($estimate->notes)

Note: {{ $estimate->notes }}

@endif

With Regards,

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

Terms And Condition :

Delivery - 6 Weeks Payment: Official LPO payable in 30 days Quotation Validation: 90 days
@endsection @section('scripts') @endsection