@extends('layouts.app') @section('title', 'Quotation Details') @section('breadcrumb')
@endsection @section('content')Product | Net Unit Price | Quantity | Discount | Tax | Sub Total |
---|---|---|---|---|---|
{{ $item->product_name }} {{ $item->product_code }} |
{{ format_currency($item->unit_price) }} | {{ $item->quantity }} | {{ format_currency($item->product_discount_amount) }} | {{ format_currency($item->product_tax_amount) }} | {{ format_currency($item->sub_total) }} |
Discount ({{ $quotation->discount_percentage }}%) | {{ format_currency($quotation->discount_amount) }} |
Tax ({{ $quotation->tax_percentage }}%) | {{ format_currency($quotation->tax_amount) }} |
Shipping | {{ format_currency($quotation->shipping_amount) }} |
Grand Total | {{ format_currency($quotation->total_amount) }} |