diff --git a/.gitignore b/.gitignore
index 25df27a..cc4914a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,6 +3,7 @@
/public/build
/public/hot
/public/storage
+/public/reference
/storage/*.key
/vendor
.env
diff --git a/app/Http/Controllers/DenController.php b/app/Http/Controllers/DenController.php
index f97e707..7054e3b 100644
--- a/app/Http/Controllers/DenController.php
+++ b/app/Http/Controllers/DenController.php
@@ -11,18 +11,26 @@ class DenController extends Controller
public function start(Request $request)
{
$member = Auth::user();
- return view('back.start', ['handle' => $member->handle]);
+ return view('back.start', [
+ 'handle' => $member->handle,
+ 'title' => "This is The Den"
+ ]);
}
public function member(Request $request)
{
$member = Auth::user();
- return view('back.member', ['handle' => $member->handle]);
+ return view('back.member', [
+ 'handle' => $member->handle,
+ 'title' => "Manage Members"]);
}
public function location(Request $request, string $action = "index")
{
$member = Auth::user();
- return view('back.locations', ['handle' => $member->handle, "action" => $action]);
+ return view('back.locations', [
+ 'handle' => $member->handle,
+ 'title' => "Manage Locations",
+ "action" => $action]);
}
}
diff --git a/public/assets/css/global/typography.css b/public/assets/css/global/typography.css
index 96e9c3e..35465aa 100644
--- a/public/assets/css/global/typography.css
+++ b/public/assets/css/global/typography.css
@@ -50,7 +50,7 @@ h1 {
margin: 0;
position: absolute;
bottom: 20px;
- width: 70%;
+ width: 66%;
}
h2 {
diff --git a/resources/views/back/locations.blade.php b/resources/views/back/locations.blade.php
index 2b99109..69f37c0 100644
--- a/resources/views/back/locations.blade.php
+++ b/resources/views/back/locations.blade.php
@@ -1,14 +1,12 @@
@extends('frame')
-@section('title', 'Den|Locations')
+@section('title', 'Den | Location Admin')
@section('main-content')
@parent
- Locations
- Hey {{$handle}}
-
+ Location Listings
@if($action === "add")
@include('forms.add-location')
@elseif($action === "edit")
@@ -18,6 +16,6 @@
@else
START
@endif
-