@extends('layouts/default') {{-- Page title --}} @section('title') Invoice @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Quotation Sales


Customer: {{$details->supplier}}
Attn.: {{$details->reference_no}}
Project: {{$details->description}}
Subject: {{$details->subject}}
Date: {{date('d-m-Y',strtotime($details->voucher_date))}}
Qtn. Ref.: {{$details->voucher_no}}
@php $i = 0;@endphp @foreach($items as $item) @php $i++; $unit_price = $item->unit_price; $vat_amount = $item->vat_amount; $line_total = $item->item_total; @endphp @endforeach
Si.No Item Reference Brand Material Description Code Qty. Image AED Unit Price AED Total Price
{{$i}} {{$item->remarks}} {{$item->group_name}} {{$item->item_name}} {{$item->item_code}} {{$item->quantity}} @if($item->image!='')@endif {{number_format($unit_price,2)}} {{number_format($line_total,2)}}

Net Price:

Tax 5%:

Total Price with Tax:

@php $total = $details->total; $vat_amount_net = $details->vat_amount; $net_total = $details->net_total; @endphp

{{number_format($total,2)}}

{{number_format($vat_amount_net,2)}}

{{number_format($net_total,2)}}

{{$amtwords}}
Terms & Conditions
1. Prices covered delivery to the site.
2. Delivery will be within 14-16 weeks from the date of issuing LC.
3. Installation is not included in this offer.
4. Manufacturer's Warranty Applicable.
5. Payment Terms: Irrevocable Letter of Credit.
6. Offer is valid for 30 Days.

For Eqwep Building & Construction Materials Trading LLC.


Ramzi Taiyem
ramzi@eqwep-me.com
+971544949929
Dubai Showroom:
Sheikh Zayed Rd, 2020 Building

Head Office : Concord Tower 2306, Media city, Dubai
T: +971 4 564 1453
@stop {{-- page level scripts --}} @section('footer_scripts') @stop