whilesmart/eloquent-roles
最新稳定版本:v1.0.0
Composer 安装命令:
composer require whilesmart/eloquent-roles
包简介
Flexible roles and permissions package for Laravel applications
README 文档
README
A flexible roles and permissions package for Laravel applications built on Eloquent ORM.
Features
- Contextual Roles: Assign roles within specific contexts (e.g., user can be admin in one workspace, member in another)
- Hierarchical Permissions: Role-based permissions with inheritance support
- Eloquent Integration: Seamlessly integrates with your existing Eloquent models
- Flexible Architecture: Support for abilities, permissions, and role assignments
- Laravel Auto-Discovery: Automatically registers service provider
Installation
Install the package via Composer:
composer require whilesmart/eloquent-roles
The package will automatically register its service provider.
Usage
Adding Roles to Models
Use the HasRoles trait on any model that should have roles:
use Whilesmart\Roles\Traits\HasRoles; class User extends Model { use HasRoles; }
Role Management
// Check if user has a role $user->hasRole('admin'); // Check role within specific context $user->hasRole('manager', 'workspace', $workspaceId); // Assign role $user->assignRole($role); // Assign role with context $user->assignRole($role, 'workspace', $workspaceId);
Permission Management
Use the HasPermissions trait for permission-based access control:
use Whilesmart\Roles\Traits\HasPermissions; class User extends Model { use HasRoles, HasPermissions; }
// Check permissions $user->hasPermission('edit-posts'); $user->hasPermission('manage-users', 'workspace', $workspaceId);
Models
Role
- name: Human-readable role name
- slug: URL-friendly identifier (auto-generated)
- description: Role description
- level: Hierarchical level for role inheritance
Permission
- name: Permission name
- slug: URL-friendly identifier
- description: Permission description
RoleAssignment
- assignable: Polymorphic relation to any model
- role_id: Associated role
- context_type: Context model type (optional)
- context_id: Context model ID (optional)
Configuration
The package works out of the box, but you can customize it by publishing the configuration:
php artisan vendor:publish --provider="Whilesmart\Roles\RolesServiceProvider"
Requirements
- PHP ^8.2
- Laravel ^11.0|^12.0
License
The MIT License (MIT).
统计信息
- 总下载量: 173
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-08-23