The easiest and most intuitive way to add access management to your Filament Panels.
📝 Note: For Filament 2.x use 2.x branch
composer require bezhansalleh/filament-shield
php artisan vendor:publish --tag="filament-shield-config"
//config/filament-shield.php... 'auth_provider_model' => [ 'fqcn' => 'App\\Models\\User', ],...
HasRoles
trait to your auth provider model:use Spatie\Permission\Traits\HasRoles; class User extends Authenticatable{ use HasRoles;}
3.1 Without Tenancy:
php artisan shield:setup
3.2 With Tenancy:
php artisan shield:setup --tenant=App\\Models\\Team# Replace Team with your tenant model
This command will:
The install command will register the plugin for your panel automatically. Choose the appropriate installation method:
4.1 Without Tenancy:
php artisan shield:install admin# Replace 'admin' with your panel ID
Or instead of the above command you can register the plugin manually in your xPanelProvider
:
->plugins([ \BezhanSalleh\FilamentShield\FilamentShieldPlugin::make(),])
4.2 With Tenancy:
php artisan shield:install admin --tenant --generate-relationships# Replace 'admin' with your panel ID
Or instead of the above command you can register the plugin and enable tenancy manually in your xPanelProvider
:
->tenant(YourTenantModel::class)->tenantMiddleware([ \BezhanSalleh\FilamentShield\Middleware\SyncShieldTenant::class,], isPersistent: true)->plugins([ \BezhanSalleh\FilamentShield\FilamentShieldPlugin::make(),])
This command will:
--tenant
flag is provided:
SyncShieldTenant
middleware to the panel--generate-relationships
flag is provided:
See config/filament-shield.php for full configuration options.
Generally there are two scenarios that shield handles permissions for your Filament
resources.
Out of the box Shield
handles the predefined permissions for Filament
resources. So if that's all that you need you are all set.
If you need to add a single permission (for instance lock
) and have it available for all your resources just append it to the following config
key:
permission_prefixes' => [ 'resource' => [ 'view', 'view_any', 'create', 'update', 'restore', 'restore_any', 'replicate', 'reorder', 'delete', 'delete_any', 'force_delete', 'force_delete_any', 'lock' ], ...],
:bulb: Now you are thinking what if I need a permission to be only available for just one resource?
No worries, that's where Custom Permissions come to play.
To define custom permissions per Resource
your Resource
must implement the HasShieldPermissions
contract.
This contract has a getPermissionPrefixes()
method which returns an array of permission prefixes for your Resource
.
Consider you have a PostResource
and you want a couple of the predefined permissions plus a new permission called publish_posts
to be only available for PostResource
only.
<?php namespace BezhanSalleh\FilamentShield\Resources; use BezhanSalleh\FilamentShield\Contracts\HasShieldPermissions;... class PostResource extends Resource implements HasShieldPermissions{ ... public static function getPermissionPrefixes(): array { return [ 'view', 'view_any', 'create', 'update', 'delete', 'delete_any', 'publish' ]; } ...}
In the above example the getPermissionPrefixes()
method returns the permission prefixes Shield
needs to generate the permissions.
✅ Now to enforce publish_post
permission headover to your PostPolicy
and add a publish()
method:
/** * Determine whether the user can publish posts. * * @param \App\Models\User $admin * @return \Illuminate\Auth\Access\Response|bool */public function publish(User $user){ return $user->can('publish_post');}
🅰️/🈯️ To make the prefix translatable, publish Shield
's translations and append the prefix inside resource_permission_prefixes_labels
as key and it's translation as value for the languages you need.
//lang/en/filament-shield.php'resource_permission_prefixes_labels' => [ 'publish' => 'Publish'],//lang/es/filament-shield.php'resource_permission_prefixes_labels' => [ 'publish' => 'Publicar'],
By default the permission identifier is generated as follow:
Str::of($resource) ->afterLast('Resources\\') ->before('Resource') ->replace('\\', '') ->snake() ->replace('_', '::');
So for instance if you have a resource like App\Filament\Resources\Shop\CategoryResource
then the permission identifier would be shop::category
and then it would be prefixed with your defined prefixes or what comes default with shield.
If you wish to change the default behaviour, then you can call the static configurePermissionIdentifierUsing()
method inside a service provider's boot()
method, to which you pass a Closure to modify the logic. The Closure receives the fully qualified class name of the resource as $resource
which gives you the ability to access any property or method defined within the resource.
For example, if you wish to use the model name as the permission identifier, you can do it like so:
use BezhanSalleh\FilamentShield\Facades\FilamentShield; FilamentShield::configurePermissionIdentifierUsing( fn($resource) => str($resource::getModel()) ->afterLast('\\') ->lower() ->toString());
Warning Keep in mind that ensuring the uniqueness of the permission identifier is now up to you.
By default the english translation renders Roles and Permissions under 'Filament Shield' if you wish to change this, first publish the translations files and change the relative locale to the group of your choosing for example:
'nav.group' => 'Filament Shield',
to
'nav.group' => 'User Management',
apply this to each language you have groups in.
If you have generated permissions for Pages
you can toggle the page's navigation from sidebar and restrict access to the page. You can set this up manually but this package comes with a HasPageShield
trait to speed up this process. All you have to do is use the trait in you pages:
<?php namespace App\Filament\Pages; use ...;use BezhanSalleh\FilamentShield\Traits\HasPageShield; class MyPage extends Page{ use HasPageShield; ...}
📕 HasPageShield
uses the booted
method to check the user's permissions and makes sure to execute the booted
page method in the parent page if exists.
However if you need to perform some methods before and after the booted method you can declare the next hooks methods in your filament page.
<?php namespace App\Filament\Pages; use ...;use BezhanSalleh\FilamentShield\Traits\HasPageShield; class MyPage extends Page{ use HasPageShield; ... protected function beforeBooted : void() { ... } protected function afterBooted : void() { ... } /** * Hook to perform an action before redirect if the user * doesn't have access to the page. * */ protected function beforeShieldRedirects : void() { ... }}
HasPageShield
uses the config('filament.path')
value by default to perform the shield redirection. If you need to overwrite the rediretion path, just add the next method to your page:
<?php namespace App\Filament\Pages; use ...;use BezhanSalleh\FilamentShield\Traits\HasPageShield; class MyPage extends Page{ use HasPageShield; ... protected function getShieldRedirectPath(): string { return '/'; // redirect to the root index... }}
if you have generated permissions for Widgets
you can toggle their state based on whether a user have permission or not. You can set this up manually but this package comes with a HasWidgetShield
trait to speed up this process. All you have to do is use the trait in you widgets:
<?php namespace App\Filament\Widgets; use ...;use BezhanSalleh\FilamentShield\Traits\HasWidgetShield; class IncomeWidget extends LineChartWidget{ use HasWidgetShield; ...}
If your policies are not in the default Policies
directory in the app_path()
you can change the directory name in the config file:
...'generator' => [ 'option' => 'policies_and_permissions', 'policy_directory' => 'Policies',],...
Shield also generates policies and permissions for third-party plugins and Models
with custom folder structure and to enforce the generated policies you will need to register them.
//AuthServiceProvider.php...class AuthServiceProvider extends ServiceProvider{ ... protected $policies = [ ..., 'App\Models\Blog\Author' => 'App\Policies\Blog\AuthorPolicy', 'Ramnzys\FilamentEmailLog\Models\Email' => 'App\Policies\EmailPolicy' ];
//AppServiceProvider.phpuse Illuminate\Support\Facades\Gate;...class AppServiceProvider extends ServiceProvider{ ... public function boot(): void { ... Gate::policy(\App\Models\Blog\Author::class, \App\Policies\Blog\AuthorPolicy::class); Gate::policy(\Ramnzys\FilamentEmailLog\Models\Email::class, \App\Policies\EmailPolicy::class); }
Shield does not come with a way to assign roles to your users out of the box, however you can easily assign roles to your users using Filament Forms
's Select
or CheckboxList
component. Inside your users Resource
's form add one of these components and configure them as you need:
// Using Select ComponentForms\Components\Select::make('roles') ->relationship('roles', 'name') ->multiple() ->preload() ->searchable(), // Using CheckboxList ComponentForms\Components\CheckboxList::make('roles') ->relationship('roles', 'name') ->searchable(),
// Using Select ComponentForms\Components\Select::make('roles') ->relationship('roles', 'name') ->saveRelationshipsUsing(function (Model $record, $state) { $record->roles()->syncWithPivotValues($state, [config('permission.column_names.team_foreign_key') => getPermissionsTeamId()]); }) ->multiple() ->preload() ->searchable(), // Using CheckboxList ComponentForms\Components\CheckboxList::make('roles') ->relationship(name: 'roles', titleAttribute: 'name') ->saveRelationshipsUsing(function (Model $record, $state) { $record->roles()->syncWithPivotValues($state, [config('permission.column_names.team_foreign_key') => getPermissionsTeamId()]); }) ->searchable(),
You can find out more about these components in the Filament Docs
You can easily customize the Grid
, Section
and CheckboxList
's columns()
and columnSpan()
without publishing the resource.
use BezhanSalleh\FilamentShield\FilamentShieldPlugin; public function panel(Panel $panel): Panel{ return $panel ... ... ->plugins([ FilamentShieldPlugin::make() ->gridColumns([ 'default' => 1, 'sm' => 2, 'lg' => 3 ]) ->sectionColumnSpan(1) ->checkboxListColumns([ 'default' => 1, 'sm' => 2, 'lg' => 4, ]) ->resourceCheckboxListColumns([ 'default' => 1, 'sm' => 2, ]), ]);}
Since almost all shield commands are destructive and can cause data loss, they can be prohibited by calling the prohibit method of the command as following in a service provider's boot()
method:
use BezhanSalleh\FilamentShield\FilamentShield;use BezhanSalleh\FilamentShield\Commands; public function boot(): void { // individually prohibit commands Commands\SetupCommand::prohibit($this->app->isProduction()); Commands\InstallCommand::prohibit($this->app->isProduction()); Commands\GenerateCommand::prohibit($this->app->isProduction()); Commands\PublishCommand::prohibit($this->app->isProduction()); // or prohibit the above commands all at once FilamentShield::prohibitDestructiveCommands($this->app->isProduction()) }
# Setup Shieldshield:setup [--fresh] [--minimal] [--tenant=] # Install Shield for a panelshield:install {panel} [--tenant] [--generate-relationships] # Generate permissions/policiesshield:generate [options] # Create super adminshield:super-admin [--user=] [--panel=] [--tenant=] # Create seedershield:seeder [options] # Publish Role Resourceshield:publish {panel}
--all Generate for all entities--option=[OPTION] Override generator option--resource=[RESOURCE] Specific resources--page=[PAGE] Specific pages--widget=[WIDGET] Specific widgets--exclude Exclude entities--ignore-config-exclude Ignore config excludes--panel[=PANEL] Panel ID to get the components(resources, pages, widgets)
📝 Note: For setting up super-admin user when using tenancy/team feature consult the core package spatie/laravel-permission
Publish the translations using:
php artisan vendor:publish --tag="filament-shield-translations"
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.
Bezhan Salleh, an expert full-stack developer, shines in the open-source arena with his suite of popular plugins for the Filament community. His standout creation, the Shield plugin, reigns as the most starred and top-ranked open-source plugin, underscoring Bezhan's knack for crafting powerful tools. With a deep passion for technology and innovation, Bezhan consistently delivers with a commitment to excellence.