@extends('backend.layouts.app') @section('title') Dashboard @endsection @push('style') @endpush @section('content')
@php $statConfig = [ [ 'key' => 'today', 'label' => "Today's Visitors", 'icon' => 'bx bx-user', 'color' => 'primary', 'bg' => 'bg-label-primary', ], [ 'key' => 'yesterday', 'label' => 'Yesterday Visitors', 'icon' => 'bx bx-history', 'color' => 'warning', 'bg' => 'bg-label-warning', ], [ 'key' => 'last7days', 'label' => 'Last 7 Days Visitors', 'icon' => 'bx bx-calendar-week', 'color' => 'info', 'bg' => 'bg-label-info', ], [ 'key' => 'thisMonth', 'label' => 'This Month Visitors', 'icon' => 'bx bx-calendar', 'color' => 'success', 'bg' => 'bg-label-success', ], [ 'key' => 'thisYear', 'label' => 'This Year Visitors', 'icon' => 'bx bx-calendar-star', 'color' => 'danger', 'bg' => 'bg-label-danger', ], [ 'key' => 'total', 'label' => 'Total All Visitors', 'icon' => 'bx bx-group', 'color' => 'dark', 'bg' => 'bg-label-dark', ], ]; @endphp
@foreach ($statConfig as $item)
{{ $item['label'] }}

{{ number_format($stats[$item['key']] ?? 0) }}

@endforeach
Visitors Comparison
Daily vs Monthly growth
Session Distribution

Today

Yesterday

Week

@endsection @push('script') @endpush