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

Purchase

Bill To

{{ $purchase->supplier->name }}

{{ $purchase->supplier->address }}

Purchase #: {{ $purchase->purchase_number }}
Purchase Date: {{ date('d-m-Y', strtotime($purchase->purchase_date)) }}
Payment Terms: @if($purchase->expiry_days == 999) Cash on delivery @else {{ $purchase->expiry_days. ' Days' }} @endif
Currency: {{ $purchase->currency_code }}
@foreach($purchaseList 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 : {{ $purchase->sub_total }}
Tax Amount : {{ $purchase->tax }}

Grand Total :

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

Note: {{ $purchase->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 Purchase Validation: 90 days
@endsection @section('scripts') @endsection