@extends('layouts.app') @section('page-title', 'Quotation #'.$quotation->quotation_number) @section('content')
| Description | Qty | Rate | Amount |
|---|---|---|---|
| {{ $item->description }} | {{ $item->qty }} | {{ number_format($item->rate,2) }} | {{ number_format($item->amount,2) }} |
| Sub-Total | {{ number_format($quotation->subtotal,2) }} | ||
| Total | {{ number_format($quotation->total,2) }} | ||
In Words: {{ $quotation->in_word }}
@endif @if($quotation->note)Note: {{ $quotation->note }}
@endif