@extends('layouts.admin') @section('title', 'Roles & Permissions') @section('page-title', 'Roles & Permissions') @section('breadcrumbs') Settings chevron_right Roles & Permissions @endsection @section('content')

Roles & Permissions

System roles and their assigned permissions. Roles are protected and cannot be modified.

@if($isSaaSActive ?? false)
info SaaS Plugin is active
@endif
@forelse($roles as $role) @empty @endforelse
Role Description Permissions
{{ $role['name'] }}
{{ $role['slug'] }}
@if($role['is_protected']) lock @endif

{{ $role['description'] }}

@if($role['permissions']->count() > 0)
@foreach($role['permissions'] as $permission) {{ $permission->name }} @endforeach

{{ $role['permission_count'] }} permission(s)

@else No permissions assigned @endif
shield

No roles found. Please run the seeder to create system roles.

info

About System Roles

System roles are predefined and cannot be created, modified, or deleted. Permissions are automatically assigned based on the SaaS plugin status. When the SaaS plugin is active, Super Admin has full control including SaaS management. When inactive, Administration role has full system control.

@endsection