@extends('layouts.admin')
@section('title','Dashboard')
@section('content')
{{-- Stats Grid --}}
@foreach([
['Total Reservations', $stats['total_reservations'], 'fas fa-calendar-check', 'text-gold', 'from-gold/20 to-bo/10'],
['Pending', $stats['pending_reservations'], 'fas fa-clock', 'text-yellow-400', 'from-yellow-500/20 to-yellow-600/10'],
['Today\'s Bookings', $stats['today_reservations'], 'fas fa-calendar-day', 'text-blue-400', 'from-blue-500/20 to-blue-600/10'],
['Subscribers', $stats['total_subscribers'], 'fas fa-envelope', 'text-green-400', 'from-green-500/20 to-green-600/10'],
['Food Items', $stats['total_food_items'], 'fas fa-utensils', 'text-purple-400', 'from-purple-500/20 to-purple-600/10'],
['Unread Messages', $stats['unread_contacts'], 'fas fa-inbox', 'text-orange-400', 'from-orange-500/20 to-orange-600/10'],
['Pending Reviews', $stats['pending_reviews'], 'fas fa-star-half-alt','text-pink-400','from-pink-500/20 to-pink-600/10'],
['Active Branches', $stats['active_branches'], 'fas fa-store', 'text-teal-400', 'from-teal-500/20 to-teal-600/10'],
] as [$label,$value,$icon,$color,$gradient])
{{ number_format($value) }}
{{ $label }}
@endforeach