@extends('layouts.app')
@section('title', 'Manajemen Kelas')
@section('content')
@include('admin.partials._import-form', [
'importTitle' => 'Import Kelas',
'templateRoute' => 'admin.excel.template.kelas',
'importRoute' => 'admin.excel.import.kelas',
'submitLabel' => 'Import Kelas',
'accent' => 'amber',
])
| Nama Kelas |
Wali Kelas |
Siswa |
Aksi |
@forelse ($classes as $class)
| {{ $class->class_name }} |
{{ $class->waliKelas?->name ?? '-' }} |
{{ $class->students_count ?? 0 }} |
|
@empty
| Belum ada data kelas. |
@endforelse
{{ $classes->links() }}
@endsection