Inheritance: extends Illuminate\Database\Eloquent\Model
コード例 #1
0
 /**
  * @param $name
  * @return mixed
  */
 public function update(UpdateRoleRequest $request, $name)
 {
     $role = Role::find($name);
     $role->fill($request->only(['name', 'description']));
     if ($request->has('permissions')) {
         $allActions = Action::all();
         $allOwnerships = Ownership::all();
         $allEntities = Entity::all();
         $role->permissions()->delete();
         foreach ($request->get('permissions') as $entity => $actions) {
             foreach ($actions as $action => $ownership) {
                 if ('no' !== $ownership) {
                     $currentAction = $allActions->find($action);
                     $currentOwnership = $allOwnerships->find($ownership);
                     $currentEntity = $allEntities->find($entity);
                     $currentPermission = new Permission();
                     $currentPermission->ownership()->associate($currentOwnership);
                     $currentPermission->action()->associate($currentAction);
                     $currentPermission->role()->associate($role);
                     $currentPermission->entity()->associate($currentEntity);
                     $currentPermission->save();
                 }
             }
         }
     }
     $role->save();
     return redirect()->route('genealabs.laravel-governor.roles.index');
 }
 public function run()
 {
     $superadmin = Role::whereName('SuperAdmin')->get()->first();
     $actions = Action::all();
     $ownership = Ownership::whereName('any')->get()->first();
     $entities = Entity::all();
     foreach ($entities as $entity) {
         foreach ($actions as $action) {
             $permission = new Permission();
             $permission->role()->associate($superadmin);
             $permission->action()->associate($action);
             $permission->ownership()->associate($ownership);
             $permission->entity()->associate($entity);
             $permission->save();
         }
     }
 }
 public function run()
 {
     Ownership::create(['name' => 'any']);
     Ownership::create(['name' => 'own']);
     Ownership::create(['name' => 'other']);
 }
コード例 #4
0
 /** @test */
 public function it_gets_permissions()
 {
     $this->prepare();
     $ownership = Ownership::with('permissions')->find('any');
     $this->assertGreaterThan(19, $ownership->permissions->count());
 }