PHP code example of mnshankar / role-based-authority

1. Go to this page and download the library: Download mnshankar/role-based-authority 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/ */

    

mnshankar / role-based-authority example snippets


'Authority'        => 'mnshankar\RoleBasedAuthority\Facades\Authority',

php artisan migrate --package="mnshankar/role-based-authority"

php artisan config:publish mnshankar/role-based-authority

...
public function roles() {
		return $this->belongsToMany('Role');
	}
public function hasRole($key)
    {
        foreach ($this->roles as $role) {            
            if ($role->role_name === $key) {
                return true;
            }
        }        
        return false;
    }	
...

class Role extends Eloquent
{
	public function permissions() {
		return $this->hasMany('Permission');
	}
}

Route::filter('admin', function(){
    if (!Auth::user()->hasRole('admin'))
    {
        return App::abort('403', 'You are not authorized.');
    }
});