mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-06-25 16:04:37 -05:00
Den reorganizing, edit location link, form styles
The admin area needed to be reorganized as it was a bit all over the place to accomodate new features. And edit link was added to location detail pages so authorized members can edit when necessary. Form elements were loosened up a bit to give them a bit more breathing room
This commit is contained in:
@ -29,7 +29,8 @@ class DenController extends Controller
|
||||
$member = Auth::user();
|
||||
return view('back.start', [
|
||||
'handle' => $member->handle,
|
||||
'title' => "This is The Den"
|
||||
'title' => "This is The Den",
|
||||
'role' => $member->role
|
||||
]);
|
||||
}
|
||||
|
||||
@ -41,7 +42,15 @@ class DenController extends Controller
|
||||
'title' => "Manage Members"]);
|
||||
}
|
||||
|
||||
public function location(Request $request, $pageNum = 1)
|
||||
public function locations(Request $request)
|
||||
{
|
||||
$member = Auth::user();
|
||||
return view('back.locations', [
|
||||
'handle' => $member->handle,
|
||||
'title' => "Manage Locations"]);
|
||||
}
|
||||
|
||||
public function listings(Request $request, $pageNum = 1)
|
||||
{
|
||||
$member = Auth::user();
|
||||
$page = $this->pagination->getPage($pageNum);
|
||||
|
Reference in New Issue
Block a user