@php $customer = $quotation->customer; $store = $quotation->store; $items = $quotation->items; $currency_symbol = $currency['symbol']; @endphp Quotation {{$quotation->uid}}
store logo

{{$store->name}}

@if($company_name = $customer->company_name) @endif
Issued To: No: {{$quotation->uid}}
{{$customer->name}} Date: {{app_date($quotation->created_at)}}
{{$company_name}}
{{$customer->email_address}}
@foreach($items as $item) @endforeach
Description Unit Price Qty Total
{{$item->item}} {{money(amount: $item->cost, symbol: $currency_symbol, format: true)}} {{$item->quantity}} {{money($item->total, symbol: $currency_symbol, format: true)}}
Total: {{money( amount: ($quotation->total - $quotation->additional_fee), symbol: $currency_symbol, format: true )}}
Additional fee: {{money( amount: $quotation->additional_fee, symbol: $currency_symbol, format: true)}}
Amount due: {{money( amount: $quotation->total, symbol: $currency_symbol, format: true)}}
Thank You