@extends('layouts.app') @section('title','Data Guru') @section('content')
{{-- Header --}}

Data Guru

Kelola seluruh data guru yang terdaftar pada sistem.

Tambah Guru
{{-- Statistik --}}
Total Guru

{{ $guru->count() }}

Guru Induk

{{ $guru->where('status','Tetap')->count() }}

Guru Non Induk

{{ $guru->where('status','Honorer')->count() }}

{{-- Card --}}
Daftar Guru
@foreach($guru as $g) @endforeach
Kode Guru Nama Guru Status Tarif / Jam Aksi
{{ $g->nip }} {{ $g->nama }} @if($g->status=="Tetap") Induk @else Non Induk @endif Rp {{ number_format($g->tarif_per_jam,0,',','.') }}
@csrf @method('DELETE')
@endsection