@extends('admin.layout') @section('title','Admin Dashboard') @section('card_title','Dashboard') @section('card_icon') @endsection @section('content')
@hasSection('card_icon') @yield('card_icon') @endif @yield('card_title')

Halo Admin

Selamat datang di dashboard admin.

@if(!empty($userStats))

Info Pengguna

@foreach(($userStats['labels'] ?? []) as $i => $label)
{{ $label }}: {{ $userStats['data'][$i] ?? 0 }}
@endforeach
@endif @if(!empty($guruStats))

Info Guru (per Jenjang)

@foreach(($guruStats['labels'] ?? []) as $i => $label)
{{ $label }}: {{ $guruStats['data'][$i] ?? 0 }}
@endforeach
@endif @if(!empty($sekolahStats))

Info Sekolah Binaan (per Jenjang)

@foreach(($sekolahStats['labels'] ?? []) as $i => $label)
{{ $label }}: {{ $sekolahStats['data'][$i] ?? 0 }}
@endforeach
@endif
@endsection