diff --git a/skolehjem/app/Contact.php b/skolehjem/app/Contact.php
index c035b2a..353a325 100644
--- a/skolehjem/app/Contact.php
+++ b/skolehjem/app/Contact.php
@@ -6,5 +6,7 @@ use Illuminate\Database\Eloquent\Model;
class Contact extends Model
{
- //
+ protected $fillable = [
+ 'name_first', "name_last", 'email', 'phone'
+ ];
}
diff --git a/skolehjem/app/Http/Controllers/ContactController.php b/skolehjem/app/Http/Controllers/ContactController.php
index 63eea17..2fb0e54 100644
--- a/skolehjem/app/Http/Controllers/ContactController.php
+++ b/skolehjem/app/Http/Controllers/ContactController.php
@@ -18,7 +18,7 @@ class ContactController extends Controller
$contact = Contact::query()->paginate($request->input("limit", 20));
- return Response::detect("contact.index", [ "contact" => $contact]);
+ return Response::detect("contacts.index", [ "contacts" => $contact]);
}
/**
@@ -28,7 +28,8 @@ class ContactController extends Controller
*/
public function create()
{
- //
+ return Response::detect("contacts.create");
+
}
/**
@@ -39,7 +40,17 @@ class ContactController extends Controller
*/
public function store(Request $request)
{
- //
+ $requestContact = $request->validate([
+ "name_first" => "required|max:255",
+ "name_last" => "required|max:255",
+ "email" => "required|max:255",
+ "phone" => "required|max:255",
+ ]);
+
+ $contact = new Contact($requestContact);
+ $contact->save();
+
+ return Response::detect("contacts.store");
}
/**
@@ -50,7 +61,8 @@ class ContactController extends Controller
*/
public function show($id)
{
- //
+ return Response::detect("contacts.show", [ "contacts" => $id]);
+
}
/**
@@ -61,7 +73,8 @@ class ContactController extends Controller
*/
public function edit($id)
{
- //
+ $contact = Contact::find($id);
+ return Response::detect("contacts.edit", ["contact" => $contact]);
}
/**
@@ -73,7 +86,13 @@ class ContactController extends Controller
*/
public function update(Request $request, $id)
{
- //
+
+ $data = $request->all();
+ $contact = Contact::find($id);
+ $contact->update($data);
+ $contact->save();
+
+ return Response::detect("contacts.update", [ "contacts" => $contact ]);
}
/**
@@ -84,6 +103,9 @@ class ContactController extends Controller
*/
public function destroy($id)
{
- //
+
+ $contact = Contact::find($id);
+ $contact->delete();
+ return redirect()->route("contacts.index");
}
}
diff --git a/skolehjem/app/Http/Controllers/StaffController.php b/skolehjem/app/Http/Controllers/StaffController.php
new file mode 100644
index 0000000..c5fbf78
--- /dev/null
+++ b/skolehjem/app/Http/Controllers/StaffController.php
@@ -0,0 +1,203 @@
+middleware([ "auth" ])->only("logout");
+// $this->middleware([ "guest" ])->only("login");
+//
+// $this->middleware([ "permission:staff.list", "role:admin" ])->only("index");
+// $this->middleware([ "permission:staff.show", "role:admin" ])->only("show");
+// $this->middleware([ "permission:staff.edit", "role:admin" ])->only([ "edit", "update" ]);
+// $this->middleware([ "permission:staff.delete", "role:admin" ])->only("delete");
+ }
+
+ /**
+ * Display a listing of the resource.
+ *
+ * @param Request $request
+ * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
+ */
+ public function index(Request $request)
+ {
+ $staffs = Staff::query()->paginate($request->query("page", 20));
+
+ return Response::detect("staff.index", [ "staffs" => $staffs ]);
+ }
+
+ /**
+ * Show the form for creating a new resource.
+ *
+ * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
+ */
+ public function create()
+ {
+ return Response::detect("staff.create");
+ }
+
+ /**
+ * Store a newly created resource in storage.
+ *
+ * @param \Illuminate\Http\Request $request
+ * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
+ */
+ public function store(Request $request)
+ {
+ Log::debug("STORE FUNCTION");
+
+ $data = $request->validate([
+ "name_first" => "required|max:255",
+ "name_last" => "required|max:255",
+ "email" => "required|email|unique:staff",
+ "password" => "required|max:60",
+ "phone" => "required|unique:staff",
+
+ ]);
+
+ Log::debug("FINISHED VALIDATION?");
+
+ $staff = new Staff($data);
+
+ Log::debug("CREATED STAFF [NOT PERSISTED YET]");
+
+ $staff->save();
+
+ Log::debug("SAVED STAFF");
+
+ return view("staff.store");
+ }
+
+ /**
+ * Display the specified resource.
+ *
+ * @param int $id
+ * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
+ */
+ public function show($id)
+ {
+ $staff = Staff::find($id);
+
+ return Response::detect("staff.show", [
+ "staff" => $staff
+ ]);
+ }
+
+ /**
+ * Show the form for editing the specified resource.
+ *
+ * @param int $id
+ * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
+ */
+ public function edit($id)
+ {
+ $staff = Staff::find($id);
+
+ return Response::detect("staff.edit", [
+ "staff" => $staff
+ ]);
+ }
+
+ /**
+ * Update the specified resource in storage.
+ *
+ * @param \Illuminate\Http\Request $request
+ * @param int $id
+ * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
+ */
+ public function update(Request $request, $id)
+ {
+ $data = $request->all();
+
+// $data = $request->validate([
+// "name_first" => "max:255",
+// "name_last" => "max:255",
+// "email" => "email|unique:staff",
+// "password" => "max:60",
+// "phone" => "unique:staff",
+// ]);
+
+ // Validates if the staff is updating itself or another staff.
+// if($id === Auth::id()) {
+// $staff = Auth::staff();
+//
+// $staff->update($data);
+//
+// $staff->save();
+// return Response::detect("staff.edit", [
+// "staff" => $staff
+// ]);
+// }
+
+ //TODO: Implement when security's ready!!!
+// else if(Auth::staff()->hasPermissionTo("staff.edit")) {
+ $staff = Staff::find($id);
+
+ /** @var Staff $staff */
+ $staff->update($data);
+
+ $staff->save();
+// }
+
+ $staffs = Staff::query()->paginate(20);
+
+ return Response::detect("staff.index", [
+ "staffs" => $staffs
+ ]);
+ }
+
+ /**
+ * Remove the specified resource from storage.
+ *
+ * @param int $id
+ * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
+ */
+ public function destroy($id)
+ {
+// if($id === Auth::id()) {
+// $user = Auth::user();
+// $user->delete();
+// }
+// else if(Auth::user()->hasPermissionTo("user.delete")) {
+ $staff = Staff::find($id);
+
+ $staff->delete();
+// }
+
+ return redirect()->route("staff.index");
+ }
+
+ /*******************************************/
+ /* Authentication */
+ /*******************************************/
+
+ public function showLogin() {
+ return view("admin.staff.login");
+ }
+
+ public function login(Request $request) {
+ $data = $request->only("email", "password");
+
+ if(Auth::attempt($data)) {
+ //TODO: Implement home?
+ return redirect()->route("staff.index");
+ }
+
+ return redirect()->back(303);
+ }
+
+ public function logout(Request $request) {
+ Auth::logout();
+
+ return redirect()->to("/");
+ }
+}
diff --git a/skolehjem/app/Staff.php b/skolehjem/app/Staff.php
new file mode 100644
index 0000000..841134d
--- /dev/null
+++ b/skolehjem/app/Staff.php
@@ -0,0 +1,45 @@
+ 'datetime',
+ ];
+
+ public function setPasswordAttribute($password) {
+ $this->attributes["password"] = Hash::make($password);
+ }
+}
diff --git a/skolehjem/database/migrations/2020_06_29_065007_create_contact.php b/skolehjem/database/migrations/2020_06_29_065007_create_contact.php
index 01a3235..233c7e3 100644
--- a/skolehjem/database/migrations/2020_06_29_065007_create_contact.php
+++ b/skolehjem/database/migrations/2020_06_29_065007_create_contact.php
@@ -13,9 +13,14 @@ class CreateContact extends Migration
*/
public function up()
{
- Schema::create('contact', function (Blueprint $table) {
+ Schema::create('contacts', function (Blueprint $table) {
$table->id();
$table->timestamps();
+ $table->string('name_first', 255);
+ $table->string('name_last', 255);
+ $table->string('email', 255);
+ $table->integer('phone');
+ //$table->unique('email');
});
}
diff --git a/skolehjem/resources/views/admin/contacts/create.blade.php b/skolehjem/resources/views/admin/contacts/create.blade.php
new file mode 100644
index 0000000..9e95044
--- /dev/null
+++ b/skolehjem/resources/views/admin/contacts/create.blade.php
@@ -0,0 +1,26 @@
+@extends("admin.layout.base")
+@extends("admin.layout.header")
+
+@section("title")
+ Kontakter - Opret
+@endsection
+
+@section("path")
+ Opret Kontakt /
+@endsection
+
+@section("content")
+
Opret Kontakt:
+
+@endsection
diff --git a/skolehjem/resources/views/admin/contacts/delete.blade.php b/skolehjem/resources/views/admin/contacts/delete.blade.php
new file mode 100644
index 0000000..b126821
--- /dev/null
+++ b/skolehjem/resources/views/admin/contacts/delete.blade.php
@@ -0,0 +1,14 @@
+@extends("admin.layout.base")
+@extends("admin.layout.header")
+
+@section("title")
+ Kontakter - Opret
+@endsection
+
+@section("path")
+ Slet Kontakt /
+@endsection
+
+@section("content")
+ Din kontakt blev slettet
+@endsection
diff --git a/skolehjem/resources/views/admin/contacts/edit.blade.php b/skolehjem/resources/views/admin/contacts/edit.blade.php
new file mode 100644
index 0000000..5167abf
--- /dev/null
+++ b/skolehjem/resources/views/admin/contacts/edit.blade.php
@@ -0,0 +1,27 @@
+@extends("admin.layout.base")
+@extends("admin.layout.header")
+
+@section("title")
+ Kontakt - Rediger
+@endsection
+
+@section("path")
+ Rediger Kontakt /
+@endsection
+
+@section("content")
+ Rediger Kontakt:
+
+@endsection
diff --git a/skolehjem/resources/views/admin/contacts/index.blade.php b/skolehjem/resources/views/admin/contacts/index.blade.php
new file mode 100644
index 0000000..36b034a
--- /dev/null
+++ b/skolehjem/resources/views/admin/contacts/index.blade.php
@@ -0,0 +1,33 @@
+@extends("admin.layout.base")
+@extends("admin.layout.header")
+
+@section("title")
+ Events - Vis
+@endsection
+
+@section("path")
+ Vis Kontakter /
+@endsection
+
+@section("content")
+
+
+ Kontakt Navn |
+ Titel |
+ E-mail |
+ Tlf |
+  }}) |
+  }}) |
+
+ @foreach($contacts as $contact)
+
+ {{ $contact->name_first }} |
+ {{ $contact->name_last }} |
+ {{ $contact->email }} |
+ {{ $contact->phone }} |
+ $contact ]) }}"> }}) |
+ $contact ]) }}"> }}) |
+
+ @endforeach
+
+@endsection
diff --git a/skolehjem/resources/views/admin/contacts/store.blade.php b/skolehjem/resources/views/admin/contacts/store.blade.php
new file mode 100644
index 0000000..d6adde7
--- /dev/null
+++ b/skolehjem/resources/views/admin/contacts/store.blade.php
@@ -0,0 +1,14 @@
+@extends("admin.layout.base")
+@extends("admin.layout.header")
+
+@section("title")
+ Kontakter - Opret
+@endsection
+
+@section("path")
+ Opbevar Kontakt /
+@endsection
+
+@section("content")
+ Kontakten blev (ikke) oprettet.
+@endsection
diff --git a/skolehjem/resources/views/admin/contacts/update.blade.php b/skolehjem/resources/views/admin/contacts/update.blade.php
new file mode 100644
index 0000000..f10aa0f
--- /dev/null
+++ b/skolehjem/resources/views/admin/contacts/update.blade.php
@@ -0,0 +1,14 @@
+@extends("admin.layout.base")
+@extends("admin.layout.header")
+
+@section("title")
+ Kontakt - Rediger
+@endsection
+
+@section("path")
+ $contact]) }}" class="text-white">Rediger Bruger /
+@endsection
+
+@section("content")
+ Kontakten blev (ikke) redigeret.
+@endsection
diff --git a/skolehjem/resources/views/admin/layout/base.blade.php b/skolehjem/resources/views/admin/layout/base.blade.php
index 0706b73..e3398e2 100644
--- a/skolehjem/resources/views/admin/layout/base.blade.php
+++ b/skolehjem/resources/views/admin/layout/base.blade.php
@@ -28,6 +28,15 @@
Opret Menuplan
+
diff --git a/skolehjem/resources/views/admin/menuplans/create.blade.php b/skolehjem/resources/views/admin/menuplans/create.blade.php
index fab76ef..925a315 100644
--- a/skolehjem/resources/views/admin/menuplans/create.blade.php
+++ b/skolehjem/resources/views/admin/menuplans/create.blade.php
@@ -14,19 +14,13 @@
diff --git a/skolehjem/resources/views/admin/menuplans/edit.blade.php b/skolehjem/resources/views/admin/menuplans/edit.blade.php
index 97cf74b..a8a8cc3 100644
--- a/skolehjem/resources/views/admin/menuplans/edit.blade.php
+++ b/skolehjem/resources/views/admin/menuplans/edit.blade.php
@@ -22,12 +22,6 @@
-
-
-
-
-
-
diff --git a/skolehjem/resources/views/admin/menuplans/index.blade.php b/skolehjem/resources/views/admin/menuplans/index.blade.php
index c42d8e0..e165a9b 100644
--- a/skolehjem/resources/views/admin/menuplans/index.blade.php
+++ b/skolehjem/resources/views/admin/menuplans/index.blade.php
@@ -16,9 +16,6 @@
Tirsdag |
Onsdag |
Torsdag |
-
Fredag |
-
Lørdag |
-
Søndag |
 }}) |
 }}) |
@@ -28,9 +25,6 @@
{{$menuplan->tuesday}} |
{{$menuplan->wednesday}} |
{{$menuplan->thursday}} |
-
{{$menuplan->friday}} |
-
{{$menuplan->saturday}} |
-
{{$menuplan->sunday}} |
$menuplan ]) }}"> }}) |
+@endsection
diff --git a/skolehjem/resources/views/admin/staff/delete.blade.php b/skolehjem/resources/views/admin/staff/delete.blade.php
new file mode 100644
index 0000000..4c3f81e
--- /dev/null
+++ b/skolehjem/resources/views/admin/staff/delete.blade.php
@@ -0,0 +1,13 @@
+@extends("admin.layout.base")
+@extends("admin.layout.header")
+
+@section("title")
+ Personal - Fjern
+@endsection
+
+@section("path")
+ Fjern Personal /
+@endsection
+
+@section("content")
+@endsection
diff --git a/skolehjem/resources/views/admin/staff/edit.blade.php b/skolehjem/resources/views/admin/staff/edit.blade.php
new file mode 100644
index 0000000..fe8271d
--- /dev/null
+++ b/skolehjem/resources/views/admin/staff/edit.blade.php
@@ -0,0 +1,31 @@
+@extends("admin.layout.base")
+@extends("admin.layout.header")
+
+@section("title")
+ Personal - Rediger
+@endsection
+
+@section("path")
+ Rediger Personal /
+@endsection
+
+@section("content")
+ Rediger Personal:
+
+@endsection
diff --git a/skolehjem/resources/views/admin/staff/index.blade.php b/skolehjem/resources/views/admin/staff/index.blade.php
new file mode 100644
index 0000000..88f80ff
--- /dev/null
+++ b/skolehjem/resources/views/admin/staff/index.blade.php
@@ -0,0 +1,42 @@
+@extends("admin.layout.base")
+@extends("admin.layout.header")
+
+@section("title")
+ Personal - Vis
+@endsection
+
+@section("path")
+ Vis Personal /
+@endsection
+
+@section("content")
+
+
+ Fornavn |
+ Efternavn |
+ Email |
+ Tlf nr |
+  }}) |
+  }}) |
+
+ @foreach($staffs as $staff)
+
+ {{ $staff->name_first }} |
+ {{ $staff->name_last }} |
+ {{ $staff->email }} |
+ {{ $staff->phone }} |
+ $staff->id ]) }}"> }}) |
+
+
+ |
+
+ @endforeach
+
+
+ {{ $staffs->links() }}
+@endsection
diff --git a/skolehjem/resources/views/admin/staff/login.blade.php b/skolehjem/resources/views/admin/staff/login.blade.php
new file mode 100644
index 0000000..5accdac
--- /dev/null
+++ b/skolehjem/resources/views/admin/staff/login.blade.php
@@ -0,0 +1,27 @@
+@extends("app.layout.base")
+
+@section("title")
+ Login
+@endsection
+
+@section("content")
+
+
+ }})
+
+
+ Forgot password?
+
+@endsection
diff --git a/skolehjem/resources/views/admin/staff/logout.blade.php b/skolehjem/resources/views/admin/staff/logout.blade.php
new file mode 100644
index 0000000..d364bbd
--- /dev/null
+++ b/skolehjem/resources/views/admin/staff/logout.blade.php
@@ -0,0 +1,14 @@
+@extends("admin.layout.base")
+@extends("admin.layout.header")
+
+@section("title")
+ Home - Logud
+@endsection
+
+@section("path")
+ Logud /
+@endsection
+
+@section("content")
+
+@endsection
diff --git a/skolehjem/resources/views/admin/staff/show.blade.php b/skolehjem/resources/views/admin/staff/show.blade.php
new file mode 100644
index 0000000..5563064
--- /dev/null
+++ b/skolehjem/resources/views/admin/staff/show.blade.php
@@ -0,0 +1,14 @@
+@extends("admin.layout.base")
+@extends("admin.layout.header")
+
+@section("title")
+ Personal - Vis
+@endsection
+
+@section("path")
+ Vis Personal /
+@endsection
+
+@section("content")
+ show.blade.php
+@endsection
diff --git a/skolehjem/resources/views/admin/staff/store.blade.php b/skolehjem/resources/views/admin/staff/store.blade.php
new file mode 100644
index 0000000..43ae210
--- /dev/null
+++ b/skolehjem/resources/views/admin/staff/store.blade.php
@@ -0,0 +1,14 @@
+@extends("admin.layout.base")
+@extends("admin.layout.header")
+
+@section("title")
+ Personal - Opret
+@endsection
+
+@section("path")
+ Opret Personal /
+@endsection
+
+@section("content")
+ Personal blev (ikke) oprettet.
+@endsection
diff --git a/skolehjem/resources/views/admin/staff/update.blade.php b/skolehjem/resources/views/admin/staff/update.blade.php
new file mode 100644
index 0000000..7f7a25f
--- /dev/null
+++ b/skolehjem/resources/views/admin/staff/update.blade.php
@@ -0,0 +1,14 @@
+@extends("admin.layout.base")
+@extends("admin.layout.header")
+
+@section("title")
+ Personal - Rediger
+@endsection
+
+@section("path")
+ Rediger Personal /
+@endsection
+
+@section("content")
+ Din Personal blev (ikke) redigeret.
+@endsection
diff --git a/skolehjem/resources/views/admin/washing-machines/create.blade.php b/skolehjem/resources/views/admin/washing-machines/create.blade.php
index b8915bb..c81e7c9 100644
--- a/skolehjem/resources/views/admin/washing-machines/create.blade.php
+++ b/skolehjem/resources/views/admin/washing-machines/create.blade.php
@@ -14,28 +14,7 @@
-
-{{-- --}}
-{{-- --}}
-{{-- ID | --}}
-{{-- Fornavn | --}}
-{{-- Efternavn | --}}
-{{-- Email | --}}
-{{-- Tlf nr | --}}
-{{--  }}) | --}}
-{{--  }}) | --}}
-{{-- --}}
-{{-- --}}
-{{-- {ID} | --}}
-{{-- {Fornavn} | --}}
-{{-- {Efternavn} | --}}
-{{-- {Email} | --}}
-{{-- {TLF} | --}}
-{{--  }}) | --}}
-{{--  }}) | --}}
-{{-- --}}
-{{-- --}}
@endsection
diff --git a/skolehjem/resources/views/admin/washing-reservations/create.blade.php b/skolehjem/resources/views/admin/washing-reservations/create.blade.php
index 5460e31..01d38ad 100644
--- a/skolehjem/resources/views/admin/washing-reservations/create.blade.php
+++ b/skolehjem/resources/views/admin/washing-reservations/create.blade.php
@@ -2,11 +2,11 @@
@extends("admin.layout.header")
@section("title")
- Booking - Opret
+ Vaske Reservationer - Opret
@endsection
@section("path")
- Opret Booking /
+ Opret Vaske Reservationer /
@endsection
@section("content")
diff --git a/skolehjem/resources/views/admin/washing-reservations/delete.blade.php b/skolehjem/resources/views/admin/washing-reservations/delete.blade.php
index faf2283..1fdbf71 100644
--- a/skolehjem/resources/views/admin/washing-reservations/delete.blade.php
+++ b/skolehjem/resources/views/admin/washing-reservations/delete.blade.php
@@ -2,11 +2,11 @@
@extends("admin.layout.header")
@section("title")
- Booking - Fjern
+ Vaske Reservationer - Fjern
@endsection
@section("path")
- Fjern Booking /
+ Fjern Vaske Reservationer /
@endsection
@section("content")
diff --git a/skolehjem/resources/views/admin/washing-reservations/edit.blade.php b/skolehjem/resources/views/admin/washing-reservations/edit.blade.php
index 036dbf0..66e0edb 100644
--- a/skolehjem/resources/views/admin/washing-reservations/edit.blade.php
+++ b/skolehjem/resources/views/admin/washing-reservations/edit.blade.php
@@ -2,11 +2,11 @@
@extends("admin.layout.header")
@section("title")
- Booking - Rediger
+ Vaske Reservationer - Rediger
@endsection
@section("path")
- Rediger Booking /
+ Rediger Vaske Reservationer /
@endsection
@section("content")
diff --git a/skolehjem/resources/views/admin/washing-reservations/show.blade.php b/skolehjem/resources/views/admin/washing-reservations/show.blade.php
index 9971c49..a77b6b7 100644
--- a/skolehjem/resources/views/admin/washing-reservations/show.blade.php
+++ b/skolehjem/resources/views/admin/washing-reservations/show.blade.php
@@ -2,11 +2,11 @@
@extends("admin.layout.header")
@section("title")
- Booking - Vis
+ Vaske Reservationer - Vis
@endsection
@section("path")
- Vis Booking /
+ Vis Vaske Reservationer /
@endsection
@section("content")
diff --git a/skolehjem/resources/views/admin/washing-reservations/store.blade.php b/skolehjem/resources/views/admin/washing-reservations/store.blade.php
index 616c3e8..85ed1d7 100644
--- a/skolehjem/resources/views/admin/washing-reservations/store.blade.php
+++ b/skolehjem/resources/views/admin/washing-reservations/store.blade.php
@@ -2,13 +2,13 @@
@extends("admin.layout.header")
@section("title")
- Booking - Opret
+ Vaske Reservationer - Opret
@endsection
@section("path")
- Opret Booking /
+ Opret Vaske Reservationer /
@endsection
@section("content")
- Booking blev (ikke) oprettet.
+ Vaske Reservationer blev (ikke) oprettet.
@endsection
diff --git a/skolehjem/resources/views/admin/washing-reservations/update.blade.php b/skolehjem/resources/views/admin/washing-reservations/update.blade.php
index 9dd8408..f890995 100644
--- a/skolehjem/resources/views/admin/washing-reservations/update.blade.php
+++ b/skolehjem/resources/views/admin/washing-reservations/update.blade.php
@@ -2,13 +2,13 @@
@extends("admin.layout.header")
@section("title")
- Booking - Rediger
+ Vaske Reservationer - Rediger
@endsection
@section("path")
- Rediger Booking /
+ Rediger Vaske Reservationer /
@endsection
@section("content")
- Din booking blev (ikke) redigeret.
+ Din Vaske Reservationer blev (ikke) redigeret.
@endsection
diff --git a/skolehjem/resources/views/app/menuplans/index.blade.php b/skolehjem/resources/views/app/menuplans/index.blade.php
index cbd4249..f66d484 100644
--- a/skolehjem/resources/views/app/menuplans/index.blade.php
+++ b/skolehjem/resources/views/app/menuplans/index.blade.php
@@ -25,18 +25,6 @@
Torsdag
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sodales pulvinar congue aenean suspendisse.
-
- Fredag
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sodales pulvinar congue aenean suspendisse.
-
-
- Lørdag
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sodales pulvinar congue aenean suspendisse.
-
-
- Søndag
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sodales pulvinar congue aenean suspendisse.
-
@endsection
diff --git a/skolehjem/resources/views/app/root/index.blade.php b/skolehjem/resources/views/app/root/index.blade.php
index df2b1fe..1984f5d 100644
--- a/skolehjem/resources/views/app/root/index.blade.php
+++ b/skolehjem/resources/views/app/root/index.blade.php
@@ -21,11 +21,14 @@
{{--@extends("app.washing-reservations.index")--}}
{{--Menuplan--}}
-{{----}}@extends("app.menuplans.index")
+{{--@extends("app.menuplans.index")--}}
{{--Contact--}}
{{--@extends("app.contact.index")--}}
+{{--Account--}}
+{{----}}@extends("app.users.index")
+
{{----}}
{{------Admin Panel
{{----}}
diff --git a/skolehjem/routes/web.php b/skolehjem/routes/web.php
index 260a3f8..ef7c2dd 100644
--- a/skolehjem/routes/web.php
+++ b/skolehjem/routes/web.php
@@ -29,6 +29,7 @@ Route::get("/logout", "UserController@logout")->name("users.logout");
Route::resource("contacts", "ContactController");
Route::resource("menu-plans", "MenuPlanController");
Route::resource("users", "UserController");
+Route::resource("staff", "StaffController");
Route::resource("events", "EventController");
Route::resource("washing-machines", "WashingMachineController");
Route::resource("washing-reservations", "WashingReservationController");
|