@extends('layouts.app') @section('title', 'Order Details') @section('breadcrumb')
{{ $order->order_number }}
| Product | Qty | Unit Price | Total |
|---|---|---|---|
|
{{ $item->product_name }}
@if($item->product)
{{ $item->product->sku }}
@endif
|
{{ $item->quantity }} {{ $item->unit }} | Rs. {{ number_format($item->unit_price, 2) }} | Rs. {{ number_format($item->total, 2) }} |
{{ $order->notes }}