From 7744360ea48dbda4f1ef500cdd9da166eb02336e Mon Sep 17 00:00:00 2001 From: Aksai Date: Fri, 16 Feb 2024 15:12:34 +0000 Subject: [PATCH] testing --- resources/views/homepage.blade.php | 2 +- resources/views/layout.blade.php | 21 +++- resources/views/partials/footer.blade.php | 103 +++++++++++++++ resources/views/partials/navbar.blade.php | 4 +- resources/views/partials/sidebar.blade.php | 138 +++++++++++++++++++++ 5 files changed, 263 insertions(+), 5 deletions(-) create mode 100644 resources/views/partials/footer.blade.php create mode 100644 resources/views/partials/sidebar.blade.php diff --git a/resources/views/homepage.blade.php b/resources/views/homepage.blade.php index 70fe962..34e19fb 100644 --- a/resources/views/homepage.blade.php +++ b/resources/views/homepage.blade.php @@ -1,4 +1,4 @@ @extends('layout') @section('content') - test +Where the content is. @endsection \ No newline at end of file diff --git a/resources/views/layout.blade.php b/resources/views/layout.blade.php index 6495d9c..1fe1d28 100644 --- a/resources/views/layout.blade.php +++ b/resources/views/layout.blade.php @@ -6,8 +6,25 @@ Document @vite("resources/css/app.css") - + @include('partials.navbar') - @yield('content') + + +
+ + + + +
+ @yield('content') +
+
+ + + \ No newline at end of file diff --git a/resources/views/partials/footer.blade.php b/resources/views/partials/footer.blade.php new file mode 100644 index 0000000..71a1b04 --- /dev/null +++ b/resources/views/partials/footer.blade.php @@ -0,0 +1,103 @@ + \ No newline at end of file diff --git a/resources/views/partials/navbar.blade.php b/resources/views/partials/navbar.blade.php index cdb8731..0c28715 100644 --- a/resources/views/partials/navbar.blade.php +++ b/resources/views/partials/navbar.blade.php @@ -43,7 +43,7 @@ -
+
\ No newline at end of file diff --git a/resources/views/partials/sidebar.blade.php b/resources/views/partials/sidebar.blade.php new file mode 100644 index 0000000..b4eb2fc --- /dev/null +++ b/resources/views/partials/sidebar.blade.php @@ -0,0 +1,138 @@ + + +
+
+ + Logo + + + +
\ No newline at end of file