From 6a4e2926b913dcb3744690c7ff47e1b2e1f1fb66 Mon Sep 17 00:00:00 2001 From: edmondlang Date: Sat, 23 Oct 2021 13:55:38 +0800 Subject: [PATCH] wip --- resources/views/pages/settings.blade.php | 70 +++++++++++++++++++++++ resources/views/partials/header.blade.php | 9 +++ resources/views/partials/menu.blade.php | 8 +++ routes/web.php | 4 ++ 4 files changed, 91 insertions(+) create mode 100644 resources/views/pages/settings.blade.php diff --git a/resources/views/pages/settings.blade.php b/resources/views/pages/settings.blade.php new file mode 100644 index 00000000..be7dc92b --- /dev/null +++ b/resources/views/pages/settings.blade.php @@ -0,0 +1,70 @@ +@extends('layouts.base_portal') +@section('inner_content') +
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
User Profile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
Complete
+
+
+
+
+
+
+
+
+
+
+
+
+

active

+
+
+
+
+

complete

+
+
+
+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/partials/header.blade.php b/resources/views/partials/header.blade.php index d3a15ad2..685d3f27 100644 --- a/resources/views/partials/header.blade.php +++ b/resources/views/partials/header.blade.php @@ -17,6 +17,15 @@ +
+ +
+
+ +
+
+
+
diff --git a/resources/views/partials/menu.blade.php b/resources/views/partials/menu.blade.php index c32eb3df..cf62bda3 100644 --- a/resources/views/partials/menu.blade.php +++ b/resources/views/partials/menu.blade.php @@ -129,6 +129,14 @@
Shipping Queue
+
+
+ +
+
+
Settings
+
+
diff --git a/routes/web.php b/routes/web.php index 6c3097e4..b3858c11 100644 --- a/routes/web.php +++ b/routes/web.php @@ -150,3 +150,7 @@ Route::get('/debug', function (){ dd($issues); }); + +Route::get('/settings', function () { + return view('pages.settings'); +})->name('settings'); \ No newline at end of file