Download the PHP package chiiya/filament-access-control without Composer
On this page you can find all versions of the php package chiiya/filament-access-control. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download chiiya/filament-access-control
More information about chiiya/filament-access-control
Files in chiiya/filament-access-control
Package filament-access-control
Short Description Admin user, role and permission management for Laravel Filament
License MIT
Homepage https://github.com/chiiya/filament-access-control
Informations about the package filament-access-control
Filament Access Control
Opinionated setup for managing admin users, roles and permissions within Laravel Filament
Features
- Separate database table for filament admin users (separate model, separate guard, separate password broker)
- Uses spatie/laravel-permission for roles and permissions
- Fully localized
- CRUD resources for admin users, roles and permissions
- Admin users may belong to one role
- Admin users can have direct permissions or indirect permissions through their role
- When creating admin users through the admin interface, no password is specified. Instead, the user receives an email prompting them to set their password
- Optional account expiry for admin users. Expired accounts are no longer able to log in
- Optional email based two-factor authentication.
Installation
-
Install the package via composer:
- Update your Filament Panel ServiceProvider and register the plugin:
You may remove any calls to login()
or other methods that configure the authentication process, since the plugin
takes care of that.
-
Publish the migrations and config, then run the migrations. Make sure you also publish and run the spatie/laravel-permission migrations if you haven't done so yet.
-
To seed the necessary base data (role & permissions), run
php artisan filament-access-control:install
or call theChiiya\FilamentAccessControl\Database\Seeders\FilamentAccessControlSeeder
seeder in your database seeder. - Create an admin user using
php artisan filament-access-control:user
. If you create users programmatically (e.g. in your database seeder), make sure to assign them thesuper-admin
role if you want them to be able to access the role and user management.
Optionally, you can publish the translations with:
Optionally, you can publish the views with:
Usage
Authorizing Resources, Pages & Actions
Authorizing Resources
To authorize access to resources, use policies as described in the Filament documentation.
Authorizing Pages
This package comes with a simple trait that you can use to authorize access to custom pages based on a permission.
Authorizing Actions
One way to authorize actions is to use the visible()
method:
Localizing Role & Permission Names
Roles and permissions should have names that make them easy to use in code (e.g. admin-users.update
).
For the admin you may however wish to localize them or make them more readable. You can do so by simply
adding a JSON translation entry for the given role or permission name (e.g. lang/en.json
):
Feature: Account Expiry
With the optional account expiry feature, all accounts require an expiration date. When accounts are expired, they can no longer log in. To enable the account expiry feature, enable the feature flag in the config file:
You will also need to add the EnsureAccountIsNotExpired
middleware to your filament auth middleware config in your
panel service provider:
Feature: Two-Factor Authentication
With the optional two-factor authentication feature, users must enter a verification code sent via email upon login. To enable the two-factor authentication feature, enable the feature flag in the config file:
Custom User Model
To use your own custom user model for the admin (instead of Chiiya\FilamentAccessControl\Models\FilamentUser
),
point the value of user_model
in the filament-access-control
config file to your own model.
Please make sure that your model either extends the FilamentUser
base case or implements the
Chiiya\FilamentAccessControl\Contracts\AccessControlUser
interface.
Extending Resources
To extend the resources used for managing admin users, roles and permissions, you can adjust the resources
config
value:
The easiest way to extend the resources is to create your own resource classes that extend the default ones, and overwrite the following methods:
Screenshots
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.
All versions of filament-access-control with dependencies
filament/filament Version ^3.0
illuminate/contracts Version ^8.0|^9.0|^10.0|^11.0
spatie/laravel-package-tools Version ^1.11
spatie/laravel-permission Version ^5.5|^6.4