laravel-permission

1.0.2 • Public • Published

Total Downloads Latest Stable Version License

⭐️ Star on GitHub — it helps!

Table of content

Installation

Composer

composer require cdebattista/laravel-permission

Inertia

For now, support only Jetstream with Inertia.

php artisan permission:install inertia

npm install && npm run dev

php artisan migrate

How it works

Inertia

You can customize Actions, Models, Policies and Pages as your wishes.

PHP

In php code :

$user->hasPermissions(['view_user', 'view_group', 'view_permission']);

more details here

Protect your routes :

Route::group(['permissions' => ['administrator', 'create_user', 'view_user', 'edit_user', 'delete_user']], function (){
    Route::resource('users', Inertia\UserController::class)->except(['show']);
});

more details here

Vuejs

in VUE files :

this.HasPermissions(['view_user', 'view_group', 'view_permission'])

more details here

You can use directive v-can :

<div v-can="['view_user', 'view_group', 'view_permission']">...</div>

more details here

License

Laravel Permission is open-sourced software licensed under the MIT license.

Links

Package Sidebar

Install

npm i laravel-permission

Weekly Downloads

4

Version

1.0.2

License

MIT

Unpacked Size

16.8 kB

Total Files

6

Last publish

Collaborators

  • cdebattista