@extends('layouts.app') @section('title', 'Order Details') @section('content')
Date: {{ $orderItems->first()->order->created_at->format('M d, Y') }}
Status: {{ ucfirst($orderItems->first()->order->status) }}
| Product | Quantity | Price | Total |
|---|---|---|---|
| {{ $item->inventoryItem->product->name }} | {{ $item->quantity }} | ${{ number_format($item->price, 2) }} | ${{ number_format($item->price * $item->quantity, 2) }} |