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

Daftar Siswa

Semua siswa aktif di sekolah.

@forelse ($students as $student) @empty @endforelse
# Nama Kelas NIS NISN
{{ $loop->iteration }} {{ $student->name }} {{ $student->classRoom?->class_name ?? '-' }} {{ $student->nis ?? '-' }} {{ $student->nisn ?? '-' }}
Belum ada siswa.
@endsection