@extends('layouts.app') @section('header')
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 }} |
| 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") }} |
Note: {{ $purchase->notes }}
With Regards,
Terms And Condition :