@extends('layouts.app') @section('title', 'Seller Orders') @section('content')
No orders found.
@else| Order ID | Product | Quantity | Price | Total | Actions |
|---|---|---|---|---|---|
| {{ $item->order->id }} | {{ $item->inventoryItem->product->name }} | {{ $item->quantity }} | ${{ number_format($item->price, 2) }} | ${{ number_format($item->price * $item->quantity, 2) }} | View |