@extends('layouts.app') @section('title', 'Daftar Guru') @section('content')
Kelola data guru di sekolah Anda
| No | Nama | NIP | No. Telepon | Status | Aksi | |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $item->name }}
@if($item->employee)
{{ $item->employee->position ?? '-' }} @endif |
{{ $item->employee->nip ?? '-' }} | {{ $item->email }} | {{ $item->employee->phone ?? '-' }} | @if($item->is_active) Aktif @else Nonaktif @endif |
|
|
Belum ada data guru |
||||||