@extends('layouts.app')
@section('title', 'Manajemen Staff')
@section('content')
@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',
])
| Nama |
Jabatan |
Email |
Telepon |
Aksi |
@forelse ($staffs as $staff)
| {{ $staff->name }} |
{{ $staff->position }}
|
{{ $staff->email }} |
{{ $staff->phone ?? '-' }} |
|
@empty
| Belum ada data staff. |
@endforelse
{{ $staffs->links() }}
@endsection