public function testStore()
 {
     $this->withSession(['SOURCE_URL' => URL::route('role.create')]);
     $this->withoutMiddleware();
     $this->call('POST', '/role', $this->systemRoleWorks);
     $role = Role::orderBy('id', 'desc')->first();
     $this->assertEquals($this->systemRoleWorks['name'], $role->name);
     $this->call('POST', '/role', $this->systemRoleFailsValidationNoName);
     // todo: the test environment has source route '/' on failure redirect->back() -> the test below wont do
     // $this->assertRedirectedToRoute('role.create');
     // todo: this is the best I can do for now
     // $this->assertSessionHasErrors('name');
     $this->assertSessionHasErrors();
     $this->call('POST', '/role', $this->systemRoleFailsValidationSameRole);
     // todo: redirect is failing for some reason
     // todo: the test environment has source route '/' on failure redirect->back() -> the test below wont do
     // $this->assertRedirectedToRoute('role.create');
     // todo: this is the best I can do for now
     // $this->assertSessionHasErrors('name');
     $this->assertSessionHasErrors();
     $this->call('POST', '/role', $this->systemRoleFailsValidationShortRole);
     $this->assertRedirectedToRoute('role.create');
     // todo: this is the best I can do for now
     // $this->assertSessionHasErrors('name');
     $this->assertSessionHasErrors();
 }
 /**
  * @param  string  $order_by
  * @param  string  $sort
  * @param  bool    $withPermissions
  * @return mixed
  */
 public function getAllRoles($order_by = 'id', $sort = 'asc', $withPermissions = false)
 {
     if ($withPermissions) {
         return Role::with('permissions')->orderBy($order_by, $sort)->get();
     }
     return Role::orderBy($order_by, $sort)->get();
 }
 public function lastUpdated()
 {
     $query = Role::orderBy('updated_at', 'DESC')->first();
     if ($query) {
         return $query->updated_at->format('Y-m-d H:i:s');
     }
     return date("Y-m-d H:i:s");
 }
Exemple #4
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $roles = Role::orderBy('created_at', 'DESC')->paginate(10);
     return view('backend.role.index', compact('roles'));
 }
 /**
  * Show the form for editing the specified resource.
  *
  * @param User $user
  * @return \Illuminate\View\View
  */
 public function edit(User $user)
 {
     $roles = Role::orderBy('id', 'asc')->get();
     return view('admin.user.edit', ['user' => $user, 'roles' => $roles]);
 }
 public function groups_roles()
 {
     $data['title'] = "Associate Roles to Groups";
     $data['groups'] = Group::orderBy('display_name')->paginate(PAGINATION);
     $data['roles'] = Role::orderBy('display_name')->get();
     return view('groups/groups_roles', $data);
 }
 /**
  * Show the form for editing the specified resource.
  *
  * @param User $user
  * @return \Illuminate\View\View
  */
 public function edit(User $user)
 {
     $roles = Role::orderBy('id', 'asc')->get();
     $page = $_SERVER['HTTP_REFERER'];
     return view('admin.user.edit', ['user' => $user, 'roles' => $roles])->with('page', $page);
 }
 public function getAllOrderedBy($column = 'id', $order = 'asc')
 {
     $roles = Role::orderBy($column, $order)->get();
     return $roles;
 }