@extends('layouts.app') @section('page-pretitle', __('Management')) @section('page-title', __('Project Quotation Details')) @section('content')
{{ $quotation->client_name }}
{{ \Carbon\Carbon::parse($quotation->date)->format('d M Y') }}
| Description | Qty | Unit Price (RM) | Total (RM) |
|---|---|---|---|
| {{ $item->description }} | {{ $item->quantity }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($lineTotal, 2) }} |
| Subtotal: | RM {{ number_format($subtotal, 2) }} |
|---|---|
| GST (6%): | RM {{ number_format($tax, 2) }} |
| Total: | RM {{ number_format($total, 2) }} |