@extends('layouts.admin') @section('title', 'Tableau de bord') @section('content') {{-- Stats Cards --}}
@foreach([ ['label' => 'Produits', 'value' => $stats['total_products'], 'icon' => 'box', 'color' => 'blue', 'link' => route('admin.produits.index')], ['label' => 'Catégories', 'value' => $stats['total_categories'], 'icon' => 'tags', 'color' => 'indigo', 'link' => route('admin.categories.index')], ['label' => 'Commandes', 'value' => $stats['total_orders'], 'icon' => 'shopping-bag', 'color' => 'green', 'link' => route('admin.orders.index')], ['label' => 'En attente', 'value' => $stats['pending_orders'], 'icon' => 'clock', 'color' => 'amber', 'link' => route('admin.orders.index', ['status' => 'pending'])], ['label' => 'Messages', 'value' => $stats['unread_messages'], 'icon' => 'envelope', 'color' => 'red', 'link' => route('admin.messages.index')], ['label' => 'Chiffre d\'aff.', 'value' => number_format($stats['total_revenue'], 0, ',', ' ') . ' FCFA', 'icon' => 'chart-line', 'color' => 'purple', 'link' => route('admin.orders.index')], ] as $stat)

{{ $stat['value'] }}

{{ $stat['label'] }}

@endforeach
{{-- Recent Orders --}}

Dernières commandes

Voir tout →
@if($recentOrders->isEmpty())
Aucune commande pour le moment.
@else @endif
{{-- Recent Messages --}}

Derniers messages

Voir tout →
@if($recentMessages->isEmpty())
Aucun message pour le moment.
@else @endif
{{-- Quick Actions --}}

Actions rapides

Nouveau produit Nouvelle catégorie Commandes en attente Messages non lus
@endsection