aboutsummaryrefslogtreecommitdiff
path: root/resources/views/includes/admin/header.blade.php
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-07-16 21:02:51 +0100
committerGitHub <noreply@github.com>2023-07-16 21:02:51 +0100
commit7c16dc53b55aa50d6c9ac0bdea2f51fbbf2b20b0 (patch)
treed81c7682b4696d4182ab375d64fa69c4ff755647 /resources/views/includes/admin/header.blade.php
parent691d0d933d9c2d9289fa01c7153371e45998ac53 (diff)
feat: site admin (#8)
Diffstat (limited to 'resources/views/includes/admin/header.blade.php')
-rw-r--r--resources/views/includes/admin/header.blade.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/resources/views/includes/admin/header.blade.php b/resources/views/includes/admin/header.blade.php
new file mode 100644
index 0000000..edb2fd7
--- /dev/null
+++ b/resources/views/includes/admin/header.blade.php
@@ -0,0 +1,12 @@
+ <nav>
+ <div>
+ <a href="/">public home</a> |
+ <a href="/admin">admin home</a> |
+ <a href="/admin/guestbook">guestbook</a>
+ @if (auth()->check())
+ | ({{ auth()->user()->name }}) <a href="/logout">logout</a>
+ @else
+ | <a href="/login">login</a>
+ @endif
+ </div>
+ </nav>