findAll() public method

Returns all groups.
Author: Steve Montambeault
public findAll ( ) : array
return array $groups
Esempio n. 1
0
 /**
  * Display the user edit form
  *
  * @author Steve Montambeault
  * @link   http://stevemo.ca
  *
  * @param int $id
  *
  * @return \Illuminate\Http\RedirectResponse
  */
 public function edit($id)
 {
     try {
         $user = $this->users->findById($id);
         $groups = $this->groups->findAll();
         $userPermissions = $user->getPermissions();
         $genericPermissions = $this->permissions->generic();
         $modulePermissions = $this->permissions->module();
         //get only the group id the user belong to
         $userGroupsId = array_pluck($user->getGroups()->toArray(), 'id');
         return View::make(Config::get('cpanel::views.users_edit'))->with('user', $user)->with('groups', $groups)->with('userGroupsId', $userGroupsId)->with('genericPermissions', $genericPermissions)->with('modulePermissions', $modulePermissions)->with('userPermissions', $userPermissions);
     } catch (UserNotFoundException $e) {
         return Redirect::route('cpanel.users.index')->with('error', $e->getMessage());
     }
 }
Esempio n. 2
0
 /**
  * Display all the groups
  *
  * @author Steve Montambeault
  * @link   http://stevemo.ca
  *
  * @return \Illuminate\View\View
  */
 public function index()
 {
     $groups = $this->groups->findAll();
     return View::make(Config::get('cpanel::views.groups_index'), compact('groups'));
 }