@extends('layouts.state') @section('title', 'State Dashboard') @push('styles') @endpush @php $summary = [ [ 'label' => 'Athletes', 'count' => $members->athletes_all ?? 0, 'today' => $members->athletes_today ?? 0, 'icon' => 'fa-person-running', 'color' => 'primary' ], [ 'label' => 'Coach', 'count' => $members->coach_all ?? 0, 'today' => $members->coach_today ?? 0, 'icon' => 'fa-user-graduate', 'color' => 'info' ], [ 'label' => 'Referee', 'count' => $members->referee_all ?? 0, 'today' => $members->referee_today ?? 0, 'icon' => 'fa-award', 'color' => 'success' ], [ 'label' => 'Doctor', 'count' => $members->doctor_all ?? 0, 'today' => $members->doctor_today ?? 0, 'icon' => 'fa-user-md', 'color' => 'danger' ], [ 'label' => 'Physiotherapist', 'count' => $members->physiotherapist_all ?? 0,'today' => $members->physiotherapist_today ?? 0, 'icon' => 'fa-dumbbell', 'color' => 'secondary' ], [ 'label' => 'Manager', 'count' => $members->manager_all ?? 0, 'today' => $members->manager_today ?? 0, 'icon' => 'fa-user-tie', 'color' => 'dark' ], [ 'label' => 'Media', 'count' => $members->media_all ?? 0, 'today' => $members->media_today ?? 0, 'icon' => 'fa-bullhorn', 'color' => 'primary' ], [ 'label' => 'Fan', 'count' => $members->fan_all ?? 0, 'today' => $members->fan_today ?? 0, 'icon' => 'fa-heart', 'color' => 'info' ], [ 'label' => 'Official', 'count' => $members->official_all ?? 0, 'today' => $members->official_today ?? 0, 'icon' => 'fa-clipboard-check', 'color' => 'warning' ], [ 'label' => 'Other', 'count' => $members->other_all ?? 0, 'today' => $members->other_today ?? 0, 'icon' => 'fa-users', 'color' => 'secondary' ], ]; @endphp @section('content')
@foreach($summary as $card)
{{ $card['label'] }}
{{ $card['count'] }}
{{ $card['today'] }} today
@endforeach
Profile Ratio
Total Profiles
@endsection @push('scripts') @endpush @push('scripts') @endpush