@extends('layouts.admin') @section('heading', 'Staff') @section('subheading', 'Manage staff logins and their assigned roles.') @section('actions') + Add staff @endsection @section('content') @include('partials.master-tabs') @if (session('status'))
| Staff ID | Name | Role | Status | Actions | |
|---|---|---|---|---|---|
| {{ $member->staff_code ?? '—' }} | {{ $member->name }} | {{ $member->email }} | @if($member->role) {{ $member->role->name }} @else No role assigned @endif | @if($member->is_active) Active @else Inactive @endif | Edit |
| No staff yet. | |||||