@extends('layouts.app') @section('content')
{{-- Sidebar --}}
@include('account.sidebar')
{{-- Main Content --}}

My Account

Total Orders

{{ auth()->user()->orders->count() }}

Wishlist Items

{{ auth()->user()->wishlist->count() }}

{{-- Recent Orders --}}

Recent Orders

@if(auth()->user()->orders->count() > 0)
@foreach(auth()->user()->orders->take(3) as $order)

{{ $order->order_number }}

{{ $order->created_at->format('M d, Y') }}

{{ ucfirst($order->status) }}

৳{{ number_format($order->total, 2) }}

@endforeach
View all orders → @else

No orders yet. Start shopping

@endif
@endsection