@extends('layouts.app') @section('title', 'Seller Orders') @section('content')

Orders

@if ($orderItems->isEmpty())

No orders found.

@else @foreach ($orderItems as $item) @endforeach
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
@endif
@endsection