orderonlineid/role-permission-laravel-mongodb
Composer 安装命令:
composer require orderonlineid/role-permission-laravel-mongodb
包简介
Permission handling for Laravel Mongodb
README 文档
README
This package provides role and permission management for Laravel applications using MongoDB as the database.
Installation
To install this package, run the following Composer command:
composer require orderonlineid/role-permission-laravel-mongodb
After the installation is complete, you need to publish the configuration file and migrations by running the following command:
php artisan vendor:publish --provider="OrderOnlineId\RolePermissionMongoDb\RolePermissionMongoDbServiceProvider"
Usage
Setting Up Roles and Permissions To set up roles and permissions, you can use the Role and Permission models provided by this package.
use OrderOnlineId\RolePermissionMongoDb\Models\Role;
use OrderOnlineId\RolePermissionMongoDb\Models\Permission;
// Create a new role
$role = Role::create(['name' => 'admin']);
// Create a new permission
$permission = Permission::create(['code' => 'create','name' => 'Create']);
// Assign the permission to the role
$role->givePermissionTo($permission);
Assigning Roles and Permissions to Users
To assign roles and permissions to users, you can use the HasRoles and HasPermissions traits provided by this package.
use App\Models\User;
use OrderOnlineId\RolePermissionMongoDb\Traits\HasRoles;
use OrderOnlineId\RolePermissionMongoDb\Traits\HasPermissions;
class User extends Authenticatable
{
use HasRoles, HasPermissions;
// ...
}
After that, you can assign roles and permissions to users like this:
$user = User::find(1);
$permission = Permission::create(['code' => 'create','name' => 'Create']);
// Assign a role
$user->assignRole($permission);
// Grant a permission
$user->givePermissionTo('view', 'users');
Checking User Roles and Permissions
You can check if a user has a specific role or permission like this:
$user = User::find(1);
// Check for a role
if ($user->hasRole('admin')) {
// ...
}
// Check for a permission
if ($user->hasAllPermission('view', 'users')) {
// ...
}
For more information on using this package, please refer to the documentation or the configuration file.
orderonlineid/role-permission-laravel-mongodb 适用场景与选型建议
orderonlineid/role-permission-laravel-mongodb 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 609 次下载、GitHub Stars 达 2, 最近一次更新时间为 2024 年 03 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「mongodb」 「security」 「acl」 「laravel」 「permission」 「orderonline」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 orderonlineid/role-permission-laravel-mongodb 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 orderonlineid/role-permission-laravel-mongodb 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 orderonlineid/role-permission-laravel-mongodb 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Generates Symfony2 documents, forms and CRUD
Laravel Multiauth package
Provide a way to secure accesses to all routes of an symfony application.
This package provides a flexible way to add Role-based Permissions to Laravel 6.x
It's a barebone security class written on PHP
A package to allow laravel/passport use with mongodb/laravel-mongodb
统计信息
- 总下载量: 609
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-03-19