public static function resetSuperAdminPermissions()
 {
     Permission::where('role_key', 'SuperAdmin')->delete();
     $entities = Entity::all();
     $actions = Action::all();
     foreach ($entities as $entity) {
         foreach ($actions as $action) {
             Permission::updateOrCreate(['role_key' => 'SuperAdmin', 'entity_key' => $entity->name, 'action_key' => $action->name, 'ownership_key' => 'any']);
         }
     }
 }
 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) {
             //                foreach ($ownerships as $ownership) {
             $permission = new Permission();
             $permission->role()->associate($superadmin);
             $permission->action()->associate($action);
             $permission->ownership()->associate($ownership);
             $permission->entity()->associate($entity);
             $permission->save();
             //                    $superadmin->permissions()->attach($permission);
             //                }
         }
     }
     //        $superadmin->save();
 }
 /**
  * @param $name
  * @return mixed
  */
 public function update($name)
 {
     if (Auth::user()->hasAccessTo('change', 'any', 'role')) {
         $role = Role::find($name);
         $allActions = Action::all();
         $allOwnerships = Ownership::all();
         $allEntities = Entity::all();
         if (Input::has('permissions')) {
             $role->permissions()->delete();
             foreach (Input::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->fill(Input::only(['name', 'description']));
         $role->save();
         return redirect()->route('roles.index');
     }
 }