@extends('admin.layouts.app') @section('title', 'Order') @section('content')
{{-- @dd($orders);--}} @foreach($orders as $order) @endforeach
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() }}
@endsection @push('script_code') @endpush