@extends('layouts.app') @section('title', 'Quotation: '.$quotation->quotation_no) @section('breadcrumb')
| Quotation No. | {{ $quotation->quotation_no }} |
| Date | {{ $quotation->quotation_date->format('d M Y') }} |
| Valid Until | {{ $quotation->valid_until?->format('d M Y') ?? '—' }} |
| Customer | {{ $quotation->customer?->name ?? $quotation->customer_name ?? 'Walk-in' }} |
| Phone | {{ $quotation->customer->phone }} |
| Created By | {{ $quotation->creator->name }} |
| Terms | {{ $quotation->terms }} |
| Notes | {{ $quotation->notes }} |
| # | Item | Qty | Unit Price | Discount | Total |
|---|---|---|---|---|---|
| {{ $i+1 }} |
{{ $item->item_name }}
@if($item->productVariant){{ $item->productVariant->sku }}@endif
|
{{ $item->qty }} | ৳{{ number_format($item->unit_price, 2) }} | {{ $item->discount > 0 ? '৳'.number_format($item->discount,2) : '—' }} | ৳{{ number_format($item->total_price, 2) }} |
| Discount: | -৳{{ number_format($quotation->discount,2) }} | ||||
| VAT: | +৳{{ number_format($quotation->vat,2) }} | ||||
| Grand Total: | ৳{{ number_format($quotation->total_amount,2) }} | ||||