pedrazadixon/laravel-simple-permissions

A simple package to manage permissions in Laravel

1.0.13 2023-08-10 01:19 UTC

This package is auto-updated.

Last update: 2025-03-10 04:32:51 UTC


README

Laravel Simple Permissions is a lightweight library designed to simplify permissions management in Laravel projects.

Features

  • Easily integrate permissions into your Laravel application.
  • Assign and validate permissions on users.
  • Supports Laravel's built-in user authentication system.

Requirements

  • PHP >= 7.3
  • Laravel >= 8.0
  • Laravel Breeze (Laravel's authentication features)

Installation

Laravel Simple Permissions works with Laravel's authentication features. Please install this before install Laravel Simple Permissions. You can follow instructions here: https://laravel.com/docs/10.x/starter-kits#laravel-breeze

You can install the package via composer:

composer require pedrazadixon/laravel-simple-permissions

Finish the installation with the following command:

php artisan laravel-simple-permissions:install

Usage

Add permissions middleware to routes, for example:

Route::get('/dashboard', function () {
    return view('dashboard');
})->middleware(['auth', 'verified', 'permissions'])->name('dashboard');

Creating permissions

You can create permissions navigate the following route:

Publish views (optional)

You can publish the views with:

php artisan vendor:publish --tag=laravel-simple-permissions-views