Skip to content

muhammadsaeedparacha/nova-permission-tool

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

On-Going Development with constant Breaking Changes - Fork Not Stable

Nova Permission Tool.

This tool allows you to create and manage rules and permissions for nova resources, actions & tools. After installation, the default nova resource permissions will be generated for all available resources and resource actions as well as global Nova Tools.

In addition we can also define custom_permissions in configuration permission, which can be either linked with a resource or be created as global Custom Permission. Which are accessed via $permissionName-CustomPermission, ending with -CustomPermission to separate them from system generated permissions to avoid overrides.

Requirements & Dependencies

This tool uses Spatie Permission package.

Installation

You can install the package via composer:

composer require digitalcloud/nova-permission-tool

You can publish the migration with:

php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider" --tag="migrations"

After the migration has been published you can create the role- and permission-tables by running the migrations:

php artisan migrate

Usage

  1. You must register the tool with Nova. This is typically done in the tools method of the NovaServiceProvider, in app/Providers/NovaServiceProvider.php.
use DigitalCloud\PermissionTool\PermissionTool;
// ....

public function boot()
{
    // ...
    PermissionTool::register();
}

public function tools()
{
    return [
        // ...
        new PermissionTool(),
        // ...
    ];
}
  1. Specify SuperAdmins who can access permissions without being allocated any permissions in config('permission.permissions.admin_emails')

  2. To allow the tool to generate permissions actions, you need to se the name of the action. Actions with no names will not be generated automatically.

<?php

namespace App\Nova\Actions;

use Laravel\Nova\Actions\Action;

class YourAction extends Action {

    // ...

    public $name = 'send email';

    // ...

}
  1. and then in the resource you can authorize the action:
<?php

namespace App\Nova;

use App\Nova\Actions\YourAction;
use Illuminate\Support\Facades\Gate;
use Illuminate\Http\Request;


class Quotation extends Resource {

    // ...

    public function actions(Request $request) {
        return [
            (new YourAction())->canSee(function ($request) {
                return Gate::check('send email'); // the same name of the action
            })->canRun(function ($request) {
                return Gate::check('send email'); // the same name of the action
            })
        ];
    }

    // ...
}

Images

per

Todo

[] Do not show action permission. (Depreciated: Action without name does not show)

About

Nova Permissions tool based on spatie permissions

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 73.6%
  • Vue 19.1%
  • Blade 4.5%
  • JavaScript 2.8%