@extends('layouts.frontend') @section('title', 'আমার অ্যাকাউন্ট - ' . \App\Models\Setting::get('site_name', config('app.name'))) @section('content')
@include('frontend.customer.partials.sidebar')

স্বাগতম, {{ $customer->name }}! 👋

আপনার অ্যাকাউন্ট পরিচালনা করুন এবং অর্ডার দেখুন।

{{ $customer->orders->count() }}

মোট অর্ডার

{{ $customer->orders->where('status', 'processing')->count() }}

প্রক্রিয়াধীন

{{ $customer->orders->where('status', 'delivered')->count() }}

সম্পন্ন

{{ $customer->reviews->count() }}

রিভিউ

সাম্প্রতিক অর্ডার

সব দেখুন
@if($recentOrders->count() > 0)
@foreach($recentOrders as $order) @php $statusColors = [ 'pending' => 'yellow', 'confirmed' => 'blue', 'processing' => 'indigo', 'shipped' => 'purple', 'delivered' => 'green', 'cancelled' => 'red', ]; $statusLabels = [ 'pending' => 'অপেক্ষমান', 'confirmed' => 'নিশ্চিত', 'processing' => 'প্রক্রিয়াধীন', 'shipped' => 'শিপড', 'delivered' => 'ডেলিভারি সম্পন্ন', 'cancelled' => 'বাতিল', ]; $color = $statusColors[$order->status] ?? 'gray'; @endphp

#{{ str_pad($order->id, 6, '0', STR_PAD_LEFT) }}

{{ $order->created_at->format('d M, Y') }} • {{ $order->items->count() }}টি পণ্য

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

{{ $statusLabels[$order->status] ?? ucfirst($order->status) }}
@endforeach
@else

এখনো কোনো অর্ডার নেই।

শপিং শুরু করুন
@endif
@endsection