PHP code example of pedrazadixon / laravel-simple-permissions
1. Go to this page and download the library: Download pedrazadixon/laravel-simple-permissions library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pedrazadixon / laravel-simple-permissions example snippets
Route::get('/dashboard', function () {
return view('dashboard');
})->middleware(['auth', 'verified', 'permissions'])->name('dashboard');
bash
php artisan laravel-simple-permissions:install
bash
php artisan vendor:publish --tag=laravel-simple-permissions-views