@extends('layouts.app') @section('content')

📊 Dashboard Utama

Ringkasan aktivitas dan informasi sekolah.

@if(Auth::user()->role == 'admin') 📢 Buat Pengumuman @endif

Papan Pengumuman

@forelse($pengumuman as $info)

{{ $info->judul }}

{{ Str::limit($info->isi, 150) }}

📅 @if($info->tanggal_mulai) {{ \Carbon\Carbon::parse($info->tanggal_mulai)->format('d M Y') }} s/d {{ \Carbon\Carbon::parse($info->tanggal_selesai)->format('d M Y') }} @else Permanen @endif
{{ $info->created_at->diffForHumans() }}
@empty
Belum ada pengumuman aktif saat ini.
@endforelse
Total Siswa
{{ $totalSiswa }}
Total Guru
{{ $totalGuru }}
Total Kelas
{{ $totalKelas }}
Siswa Terbaru
@foreach($siswaBaru as $siswa) @endforeach
Nama NIS Status
{{ $siswa->nama_siswa }} {{ $siswa->nis }} Aktif
@endsection