@extends('layouts.admin-club') @section('club-admin-content')

Roles & Permissions

Manage club staff roles and access

@if(isset($staffMembers) && count($staffMembers) > 0)
@foreach($staffMembers as $staff) @endforeach
Staff Member Role Added Actions
@if($staff->user->profile_picture) @else
{{ strtoupper(substr($staff->user->full_name ?? 'S', 0, 1)) }}
@endif

{{ $staff->user->full_name ?? 'N/A' }}

{{ $staff->user->email ?? '' }}

@if($staff->role === 'admin') Admin @elseif($staff->role === 'instructor') Instructor @else {{ ucfirst($staff->role) }} @endif {{ $staff->created_at ? $staff->created_at->format('M d, Y') : 'N/A' }}
@else
No staff roles assigned

Add staff members and assign roles

@endif
Available Roles
Admin

Full access to all club settings, members, and financials

Instructor

Can manage activities, view members, and track attendance

Staff

Limited access to member check-in and basic operations

@endsection