@extends('layouts.app') @section('content')

My Orders

@forelse($orders as $order) {{-- PRODUCTS --}} {{-- STATUS --}} {{-- INVOICE --}} @empty @endforelse
ID Order No Products Date Total Status Invoice
{{ $loop->iteration }} #{{ $order->order_no }} @foreach($order->items as $item)
{{-- IMAGE --}} {{-- @if($item->product && $item->product->image) @else @endif --}} {{-- NAME + QTY --}} {{ $item->product_name }} x{{ $item->quantity }}
@endforeach
{{ $order->created_at->format('d M Y') }} ₹{{ number_format($order->total_amount, 2) }} @if($order->order_status === 'DELIVERED') Delivered @elseif($order->order_status === 'PLACED') Placed @else {{ $order->order_status }} @endif View
No Orders Found
@endsection