From d94a73674bb29f2234570bada61264b4fc1cc014 Mon Sep 17 00:00:00 2001 From: Graphictoria Date: Fri, 15 Apr 2022 23:58:55 -0400 Subject: [PATCH] Navbar active classes. --- web/resources/views/layouts/nav.blade.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/web/resources/views/layouts/nav.blade.php b/web/resources/views/layouts/nav.blade.php index f1b9b22..80b5e56 100644 --- a/web/resources/views/layouts/nav.blade.php +++ b/web/resources/views/layouts/nav.blade.php @@ -3,15 +3,15 @@ $routes = [ [ "label" => "Games", - "location" => "/games" + "location" => "games" ], [ "label" => "Shop", - "location" => "/shop" + "location" => "shop" ], [ "label" => "Forum", - "location" => "/forum" + "location" => "forum" ] ] @endphp @@ -32,13 +32,13 @@ $route = (object)$route; @endphp @endforeach