ihabafia / permissions-admin
This package for an admin of Spatie Laravel Permission package
Fund package maintenance!
ihabafia
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
Requires
- php: ^8.2
- illuminate/contracts: ^10.0||^11.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^2.9
- laravel/laravel: ^11.0
- laravel/pint: ^1.14
- livewire/livewire: *
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^9.0.0||^8.22.0
- pestphp/pest: ^2.34
- pestphp/pest-plugin-arch: ^2.7
- pestphp/pest-plugin-laravel: ^2.3
- phpstan/extension-installer: ^1.3
- phpstan/phpstan-deprecation-rules: ^1.1
- phpstan/phpstan-phpunit: ^1.3
- spatie/laravel-permission: ^6.7
- spatie/laravel-ray: ^1.35
This package is auto-updated.
Last update: 2025-03-31 17:56:07 UTC
README
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example. This package is a cool livewire GUI for Spatie Laravel Permission (not included), and it will help you to:
- Create role.
- Create permission.
- Assign role to user.
- Give permission to role.
- Assign role to permission.
- Remove permission from role.
All this via 3 livewire components that will show you the information in a dynamic table which is searchable, sortable and filtered.
Installation
You can install the package via composer:
composer require ihabafia/permissions-admin
Additional Steps for installation
- This package is depend on Spatie Laravel Permission, to install it if you didn't already:
composer require spatie/laravel-permission
- Livewire is required, to install it if you didn't already:
composer require livewire/livewire
- You need to create and empty
App\Models\Role
andApp\Models\Permission
class and addHasPermissionAdmin
trait as follows:
namespace App\Models; use IhabAfia\PermissionsAdmin\Traits\HasPermissionAdmin; use Spatie\Permission\Models\Role as SpatieRole; class Role extends SpatieRole { use HasPermissionAdmin; }
namespace App\Models; use IhabAfia\PermissionsAdmin\Traits\HasPermissionAdmin; use Spatie\Permission\Models\Permission as SpatiePermission; class Permission extends SpatiePermission { use HasPermissionAdmin; }
These classes will not affect your application since these classes extends the original class.
- You need to add
HasPermissionAdmin
trait in yourUser::class
like follows:
namespace App\Models; use Spatie\Permission\Traits\HasRoles; use IhabAfia\PermissionsAdmin\Traits\HasPermissionAdmin; class User extends Authenticatable { use HasRoles; use HasPermissionAdmin; ... }
This trait is needed for adding the search functionality to the 3 models.
- Finally, you need to use this route in
web.php
Route::rolesPermissionsAdmin();
You might need to publish the config file to change default routes with your own:
php artisan vendor:publish --tag="permissions-admin-config"
Optionally but recommended, you can publish the views using the command bellow, to make sure you get the correct styling of all the component.
php artisan vendor:publish --tag="permissions-admin-views"
Testing
Need Help
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.