@extends('adminlte::page') @section('title', 'Data Guru & Staff | Smart Cendekia') @section('plugins.Datatables', true) @section('content_header')
Kelola profil guru, pimpinan, dan staff untuk ditampilkan di website.
| No | Profil Personil | Jabatan | Kategori | Urutan | Aksi |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{-- Profil (Foto & Nama) --}}
@if($item->photo)
{{ $item->name }}
ID: {{ $item->id }}
|
{{-- Jabatan --}}
{{ $item->position }} | {{-- Kategori --}}@php $badgeClass = match($item->category) { 'Pimpinan' => 'warning', 'Guru' => 'success', 'Staff' => 'secondary', default => 'light' }; $icon = match($item->category) { 'Pimpinan' => 'fa-crown', 'Guru' => 'fa-chalkboard-teacher', 'Staff' => 'fa-user-cog', default => 'fa-user' }; @endphp {{ $item->category }} | {{-- Urutan --}}{{ $item->urutan ?? '-' }} | {{-- Aksi --}}{{-- Modal Delete --}} |