Fixed select in side bar

master
sundayenglish 4 weeks ago
parent 9cb74a6d7a
commit 8d6f5ba6f7
  1. 1
      public/soft-ui
  2. 6
      resources/views/layouts/partials/sidebar.blade.php

@ -0,0 +1 @@
Subproject commit 8d29eaac504f62240b5c7be56c93b27848280f77

@ -20,7 +20,7 @@
<!-- Dashboard -->
<li class="nav-item">
<a class="nav-link active" href="{{ route('dashboard') }}">
<a class="nav-link {{ request()->routeIs('dashboard') ? 'active' : '' }}" href="{{ route('dashboard') }}">
<div
class="icon icon-shape icon-sm shadow border-radius-md bg-white text-center me-2 d-flex align-items-center justify-content-center">
<svg width="12px" height="12px" viewBox="0 0 45 40" version="1.1"
@ -48,7 +48,7 @@
<!-- Permissions -->
<li class="nav-item">
<a class="nav-link" href="{{ route('permissions.index') }}">
<a class="nav-link {{ request()->routeIs('permissions.*') ? 'active' : '' }}" href="{{ route('permissions.index') }}">
<div
class="icon icon-shape icon-sm shadow border-radius-md bg-white text-center me-2 d-flex align-items-center justify-content-center">
<svg width="12px" height="12px" viewBox="0 0 42 42" version="1.1"
@ -76,7 +76,7 @@
<!-- Roles -->
<li class="nav-item">
<a class="nav-link" href="{{ asset('soft-ui/pages/billing.html') }}">
<a class="nav-link {{ request()->routeIs('roles.*') ? 'active' : '' }}" href="{{ asset('soft-ui/pages/billing.html') }}">
<div
class="icon icon-shape icon-sm shadow border-radius-md bg-white text-center me-2 d-flex align-items-center justify-content-center">
<svg width="12px" height="12px" viewBox="0 0 43 36" version="1.1"

Loading…
Cancel
Save