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

My Orders

@if($orders->count() > 0)
@foreach($orders as $order) @endforeach
Order Number Date Items Total Status Action
{{ $order->order_number }} {{ $order->created_at->format('M d, Y') }} {{ $order->items->count() }} item(s) {{ \App\Support\Currency::symbol() }}{{ number_format($order->total, 2) }} {{ ucfirst($order->status) }} View
{{ $orders->links() }}
@else

No orders yet

You haven't placed any orders

Start Shopping
@endif
@endsection