@extends('layouts.app') @section('title', 'Quotation #'.optional($quotation)->quotation_number) @section('breadcrumbs') @endsection @section('content')
Quotation for {{ $quotation->customer->name ?? 'N/A' }}
| # | Description | Qty | Unit Price | Amount |
|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $item->product->name ?? $item->description }}
@if($item->hs_code)HS: {{ $item->hs_code }}@endif
|
{{ number_format($item->quantity, 2) }} {{ $item->unit }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->quantity * $item->unit_price, 2) }} |
| No items | ||||
| Subtotal | {{ number_format($quotation->subtotal, 2) }} | |||
| Tax ({{ $quotation->tax_rate }}%) | {{ number_format($quotation->tax_amount, 2) }} | |||
| Total | {{ number_format($quotation->total_amount, 2) }} {{ $quotation->currency }} | |||
| Inquiry | {{ $quotation->inquiry->inquiry_number ?? 'N/A' }} |
| Currency | {{ $quotation->currency }} |
| Payment Terms | {{ $quotation->payment_terms ?? 'N/A' }} |
| Shipping Terms | {{ $quotation->incoterm ?? 'N/A' }} |