1. Go to this page and download the library: Download codinglabsau/laravel-roles 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/ */
codinglabsau / laravel-roles example snippets
use Codinglabs\Roles\HasRoles;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable, HasRoles;
}
use Codinglabs\Roles\Role;
// attach multiple roles
$user->roles()->attach([
Role::whereName('employee')->first()->id,
Role::whereName('manager')->first()->id,
]);
// detach a single role
$user->roles()->detach(Role::whereName('employee')->first());
// update roles to match array
$user->roles()->sync([
Role::whereName('employee')->first()->id,
]);
// ensure roles in array are attached without detaching others
$user->roles()->syncWithoutDetaching([
Role::whereName('employee')->first()->id,
]);