@extends('layouts.app') @section('title', 'Order ' . $order->order_number) @section('heading', 'Order ' . $order->order_number) @section('content')
No line items.
@else| Product | Price | Qty | Subtotal |
|---|---|---|---|
| {{ $item['name'] ?? '—' }} | {{ number_format($item['price'] ?? 0, 2) }} | {{ $item['quantity'] ?? 0 }} | {{ number_format(($item['price'] ?? 0) * ($item['quantity'] ?? 0), 2) }} |