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

Staff

Manage team members and their access

All Staff

Add Staff

@forelse($staff as $member) @empty @endforelse
# Name Email Role Branch Status Actions
{{ $staff->firstItem() + $loop->index }} {{ $member->name }} {{ $member->email }} {{ $member->hotelRole?->name ?? '—' }} {{ $member->branch?->name ?? '—' }} @if($member->is_active) Active @else Inactive @endif Edit
@csrf @method('DELETE')
No staff yet. Add your first team member.
{{ $staff->links() }}
@endsection