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

Dashboard Utama

Ringkasan aktivitas dan informasi sekolah terkini.

@if(Auth::user()->role == 'admin') @endif
Total Siswa
{{ $totalSiswa }} Anak
Total Guru
{{ $totalGuru }} Pengajar
Total Kelas
{{ $totalKelas }} Ruangan

Info & 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') }} - {{ \Carbon\Carbon::parse($info->tanggal_selesai)->format('d M y') }} @else Info Permanen @endif
{{ $info->created_at->diffForHumans() }}
@empty

Belum ada pengumuman aktif saat ini.

@endforelse

Siswa Baru

@if($siswaBaru->count() > 0)
    @foreach($siswaBaru as $siswa)
  • {{ substr($siswa->nama_siswa, 0, 1) }}

    {{ $siswa->nama_siswa }}

    {{ $siswa->nis }}

  • @endforeach
@else

Belum ada siswa baru.

@endif
@endsection