@extends('layouts.app') @section('main-content')
| # | Product | Quantity | UOM | Unit Price | Amount | @foreach($items as $item)
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->product->description }} | {{ $item->quantity }} | {{ $item->item_uom->description }} | {{ number_format($item->unit_price, 2) }} | RM {{ number_format($item->total, 2) }} |
| Subtotal | RM {{ number_format($header->total, 2) }} | ||||
| Labour Charge | RM {{ number_format($header->labour, 2) }} | ||||
| Discount | - RM {{ number_format($header->discount, 2) }} | ||||
| Grand Total | RM {{ number_format($header->grand_total, 2) }} | ||||