@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['label'] }}
@endforeach