Exemplo n.º 1
0
 /**
  * Get user collection.
  *
  * @param  string  $slug
  * @return Illuminate\Support\Collection
  */
 public function show($id)
 {
     $user = $this->user->findOrFail($id);
     //dd($user);
     //		$roles = $this->getRoles();
     //		$allRoles =  $this->role->all()->lists('name', 'id');
     $roles = $this->getUserRoles($user->id);
     //dd($roles);
     return compact('user', 'roles');
 }