Download the PHP package baleethai/nova-permissions without Composer
On this page you can find all versions of the php package baleethai/nova-permissions. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package nova-permissions
Laravel Nova Grouped Permissions
A Laravel Nova Tool that allows you to group your Permissions into Groups and attach it to Users. It uses Spatie's laravel-permission.
We have a Migration, Seed, Policy and Resource ready for a good Authorization Experience.
- Installation
- Permissions with Groups
- Detail View
- Edit View
- Database Seeding
- Create a Model Policy
- Super Admin
- Scope Resource for User
- Customization
- Use your own Resources
- Credits
Installation
You can install the package in to a Laravel app that uses Nova via composer:
Publish the Migration with the following command:
Migrate the Database:
Next up, you must register the tool with Nova. This is typically done in the tools
method of the NovaServiceProvider
.
Finally, add MorphToMany
fields to you app/Nova/User
resource:
A new menu item called Permissions & Roles will appear in your Nova app after installing this package.
Permissions with Groups
Detail View
Edit View
Database Seeding
Publish our Seeder with the following command:
This is just an example on how you could seed your Database with Roles and Permissions. Modify RolesAndPermissionsSeeder.php
in database/seeds
. List all your Models you want to have Permissions for in the $collection
Array and change the email for the Super-Admin:
Now you can seed the Database. Add $this->call(RolesAndPermissionsSeeder::class);
to the DatabaseSeeder
.
Note: If this doesn't work, run
composer dumpautoload
to autoload the Seeder.
Create a Model Policy
You can extend Baleethai\NovaPermissions\Policies\Policy
and have a very clean Model Policy that works with Nova.
For Example: Create a new Contact Policy with php artisan make:policy ContactPolicy
with the following code:
It should now work as exptected. Just create a Role, modify its Permissions and the Policy should take care of the rest.
Note: Don't forget to add your Policy to your
$policies
inApp\Providers\AuthServiceProvider
.Note: Only extend the Policy if you have created your Permissions according to our Seeding Example. Otherwise, make sure to have
view contacts, view own contacts, manage contacts, manage own contacts, restore contacts, forceDelete contacts
as Permissions in your Table in order to extend our Policy.
view own contacts
is superior toview contacts
and allows the User to only view his own Contacts.
manage own contacts
is superior tomanage contacts
and allows the User to only manage his own Contacts.
Super Admin
A Super Admin can do everything. If you extend our Policy, make sure to add a isSuperAdmin()
Function to your App\User
Model:
You can modify this function as you please.
Scope Resource for User
If you use our Policy and Seeder, the user will still be able to see other Entries. In order to only allow a User to view his own Entries and no others, you can extens our Baleethai\NovaPermissions\Nova\ResourceForUser
Class like this:
Note: ResourceForUser assumes the Resource has a
user_id
column in the Database. If you are using another column, feel free to copy the contents of the Resource and modify it.
Customization
Use your own Resources
If you want to use your own resource classes, you can define them when you register the tool:
Credits
This Package is inspired by vyuldashev/nova-permission and silvanite/novatoolpermissions. I wanted to have a combination of both. Thanks to both authors. Also, a huge thanks goes to Spatie spatie/laravel-permission for their amazing work!