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

Guru

@endsection @section('content-body')

Seluruh Data Guru

Berikut adalah daftar seluruh guru.

{{-- id add akan di tangkap jqeury untuk membuat modal cek di bootstrap-modal.js --}}
@foreach ($teachers as $teacher) @if ($teacher->user->status == "Active") @else @endif @endforeach
# NAME NIP PENDIDIKAN STATUS ACTION
{{ ($teachers->currentpage() - 1) * $teachers->perpage() + $loop->index + 1 }} {{$teacher->name}} {{$teacher->nip}} {{$teacher->education}}
Active
Not Active
Delete
{{$teachers->links()}}
@endsection @section("modal") {{-- modal create teacher --}} {{-- modal detail teacher--}}