Changeset c6b84df for resources/views/layouts
- Timestamp:
- 10/21/21 23:45:59 (3 years ago)
- Branches:
- develop, master
- Children:
- 4b7e2d3
- Parents:
- 6b95845
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/views/layouts/app.blade.php
r6b95845 rc6b84df 17 17 <!-- App styles --> 18 18 <link rel="stylesheet" href="{{ url('assets/css/app.min.css') }}" type="text/css"> 19 <link rel="stylesheet" href="{{ url('vendors/lightbox/magnific-popup.css') }}" type="text/css"> 20 19 21 </head> 20 22 <body @if (trim($__env->yieldContent('bodyClass'))) class="@yield('bodyClass')" @endif> … … 121 123 <!-- end::header fullscreen --> 122 124 125 <!-- begin::header notification dropdown --> 126 <li class="nav-item dropdown"> 127 <div class="dropdown dropdown-notifications-wrapper dropdown-menu-right dropdown-menu-big"> 128 <a href="javascript:void(0)" class="nav-link dropdown-notifications-unread icon" data-toggle="dropdown"> 129 <i data-feather="bell"></i> 130 <span class="nav-unread"></span> 131 </a> 132 <div class="dropdown-menu dropdown-notifications dropdown-menu-right dropdown-menu-big"> 133 <div class="bg-dark p-4 text-center d-flex justify-content-between align-items-center"> 134 <h5 class="mb-0">Notifications</h5> 135 </div> 136 <div class="p-4 text-center align-items-center"> 137 <p class='text-center unreadNotificationsInfo'>No unread notifications</p> 138 </div> 139 <div class="dropdown-divider"></div> 140 <a href="{{ route("dashboard.notifications.index") }}" class="dropdown-item text-center text-muted-dark">See all</a> 141 </div> 142 </div> 143 </li> 144 145 {{-- </li>--}} 146 <!-- end::header notification dropdown --> 147 123 148 <!-- begin::user menu --> 124 149 <li class="nav-item dropdown"> … … 155 180 <li> 156 181 <a href="{{ route("dashboard.index") }}" class="nav-link {{ request()->is('dashboard') ? 'active' : '' }}" data-toggle="tooltip" 157 data-placement="right" title=" Pages">158 <i data-feather=" copy"></i>182 data-placement="right" title="Dashboard"> 183 <i data-feather="home"></i> 159 184 </a> 160 185 </li> … … 171 196 <a href="{{route("dashboard.departments.index")}}" data-toggle="tooltip" 172 197 data-placement="right" title="Departments"> 173 <i data-feather="layers"></i> 174 </a> 175 </li> 176 @endif 177 @if(auth()->user()->hasPermission("manage_all_documents")) 178 <li> 179 <a href="{{route("dashboard.documents.index")}}" data-toggle="tooltip" 180 data-placement="right" title="Documents"> 198 <i data-feather="grid"></i> 199 </a> 200 </li> 201 @endif 202 @if(auth()->user()->hasPermission("manage_all_folders")) 203 <li> 204 <a href="{{route("dashboard.folders.index")}}" data-toggle="tooltip" 205 data-placement="right" title="Folders"> 206 <i data-feather="folder"></i> 207 </a> 208 </li> 209 @endif 210 @if(auth()->user()->hasPermission("manage_all_files")) 211 <li> 212 <a href="{{route("dashboard.files.index")}}" data-toggle="tooltip" 213 data-placement="right" title="Files"> 181 214 <i data-feather="file-text"></i> 182 215 </a> … … 220 253 var clipboard = new ClipboardJS('.btn'); 221 254 </script> 255 <script src="{{ url('vendors/lightbox/jquery.magnific-popup.min.js') }}"></script> 256 257 <!-- Isotope --> 258 <script src="{{ url('vendors/jquery.isotope.min.js') }}"></script> 259 260 <script src="{{ url('assets/js/examples/pages/gallery.js') }}"></script> 222 261 @yield('script') 262 223 263 224 264 @include("layouts.alert")
Note:
See TracChangeset
for help on using the changeset viewer.