@extends('layouts.teacher') @section('title', 'Data Siswa') @section('header_title', 'Data Siswa') @section('content') {{-- ================= FILTER ================= --}}
{{-- MODUL --}} {{-- TINGKAT KELAS --}} {{-- KELAS SPESIFIK --}} {{-- SEARCH --}}
{{-- ================= TABLE DESKTOP ================= --}} {{-- ================= TABLE MOBILE ================= --}}
@foreach($students as $siswa)
{{ $siswa->name }}
NISN: {{ $siswa->nisn }}
Kelas: {{ $siswa->class }}
Jurusan: {{ $siswa->department ?? '-' }}
Aktif
@endforeach
{{-- PAGINATION MOBILE --}}
Menampilkan 0 - 0 dari 0 siswa
{{-- Pagination buttons will be inserted here --}}
{{-- Tambahkan CSS untuk transition --}} @endsection