| Product | Total Amount | Date | Actions |
|---|---|---|---|
| @php $itemCount = count($order->items); @endphp @if($itemCount > 1) Multiple @else @php $productId = $order->items[0]->product_id; $product = \App\Models\Product::find($productId); @endphp {{$product->name ?? ''}} @endif | {{$order->total_amount ?? ''}} | {{$order->created_at->diffForHumans() }} |
|