@extends('layouts.main') @section('title', "Student | KelasMaju") @section('content-header')

Siswa

@endsection @section('content-body')

Seluruh Data Siswa

Berikut adalah daftar seluruh siswa.

{{-- id add akan di tangkap jqeury untuk membuat modal cek di bootstrap-modal.js --}}
@foreach ($students as $student) @if ($student->status === 'active') @else @endif @endforeach
# NAME NIS STATUS GAYA BELAJAR ACTION
{{ ($students->currentpage() - 1) * $students->perpage() + $loop->index + 1 }} {{$student->user->name}} {{$student->nis}}
Active
Not Active
{{ $student->gaya_belajar }} Delete
{{$students->links()}}
@endsection @section("modal") {{-- modal create student --}} {{-- modal detail student--}}