@extends('layouts.app') @section('title', 'Data Siswa') @section('content')

Data Siswa

Total: {{ $students->total() ?? 0 }} siswa

@if (session('success')) {{ session('success') }} @endif
Foto NIS Nama Kelas Gender Status Aksi @forelse($students ?? [] as $student) @if ($student->photo_url) {{ $student->full_name }} @else
{{ strtoupper(substr($student->full_name, 0, 1)) }}
@endif {{ $student->student_number }} {{ $student->full_name }} {{ $student->classroom->name ?? '–' }} {{ $student->gender->label() }} {{ $student->user->is_active ? 'Aktif' : 'Non-aktif' }}
@empty Tidak ada data siswa @endforelse
@if (isset($students) && $students->hasPages()) {{ $students->withQueryString()->links() }} @endif
{{-- MODAL FORM --}}
@csrf
@endsection