@extends('layouts.main') @push('title') Fit Sport Hub - My Orders @endpush @section('main-section')

My Orders

@foreach ($orders as $order) @endforeach
Sr No. Purchase Date Order ID Order Image Total Amount Action
{{ $loop->iteration }} {{ presentDate($order->created_at) }} {{ $order->id }} @php $firstProduct = $order->products->first(); if ($firstProduct) { $pictures = json_decode($firstProduct->pictures, true); $firstImage = is_array($pictures) && count($pictures) > 0 ? $pictures[0] : asset('img/default-product.jpg'); } else { $firstImage = asset('img/default-product.jpg'); } @endphp {{ $firstProduct->product_title ?? 'Product' }} {{ $order->billing_total }} View
@if($orders->isEmpty())

No orders found

You haven't placed any orders yet.

@endif
@endsection @section('extrascripts') @endsection