@extends('layouts.account', ['title' => 'لوحة التحكم | RaseedNow']) @section('account_content')

لوحة التحكم

المفضلة {{ $favoritesCount }} الطلبات هذا الشهر {{ $ordersThisMonth }}

إحصائيات الطلبات

هذا الشهر

@for($day = 1; $day <= now()->daysInMonth; $day++) @endfor

تسوق بطاقات الهدايا

تصفح المجموعة واختر الباقة المناسبة لك.

آخر الطلبات

عرض الكل
@forelse($recentOrders as $order) {{ $order->order_number }} {{ number_format($order->total_minor / 100, 2) }} {{ $order->currency_code }} {{ $order->payment_status }} @empty

لا توجد طلبات بعد

ابدأ بتصفح المنتجات وإضافة أول طلب.

@endforelse

آخر الإشعارات

عرض الكل
@forelse($recentNotifications as $notification) {{ $notification->title }} {{ $notification->created_at->diffForHumans() }} @empty

لا توجد إشعارات

ستظهر تحديثات الطلبات هنا.

@endforelse
@endsection