@extends('layouts.app') @section('title', 'Manajemen Staff') @section('content')

Manajemen Staff

Akun untuk staf non-guru.

Tambah Staff
@include('admin.pengguna._role-tabs', ['activeRole' => 'staff']) @include('admin.partials._import-form', [ 'importTitle' => 'Import Staff', 'templateRoute' => 'admin.excel.template.staff', 'importRoute' => 'admin.excel.import.staff', 'submitLabel' => 'Import Staff', 'accent' => 'violet', ])
@forelse ($staffs as $staff) @empty @endforelse
Nama Jabatan Email Telepon Aksi
{{ $staff->name }} {{ $staff->position }} {{ $staff->email }} {{ $staff->phone ?? '-' }}
Edit Reset Password
@csrf @method('DELETE')
Belum ada data staff.
{{ $staffs->links() }}
@endsection