change icon using font awesome
This commit is contained in:
parent
78b7e372ef
commit
82e0b51531
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
<ul class="list-unstyled components">
|
<ul class="list-unstyled components">
|
||||||
<li class="{{ Request::is('user-management') ? 'active' : '' }}">
|
<li class="{{ Request::is('user-management') ? 'active' : '' }}">
|
||||||
<a href="{{ route('user.management') }}" class="dashboard " style="display:flex"><i class="fa-solid fa-gauge" style="padding-top:3px"></i><span>User Management</span></a>
|
<a href="{{ route('user.management') }}" class="dashboard " style="display:flex"><i class="fa-solid fa-users" style="padding-top:3px"></i><span>User Management</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="{{ Request::is('notification') ? 'active' : '' }}">
|
<li class="{{ Request::is('notification') ? 'active' : '' }}">
|
||||||
<a href="{{ route('notification') }}" class="dashboard" style="display:flex"><i class="fa-solid fa-bell" style="padding-top:3px"></i><span>Notifications</span></a>
|
<a href="{{ route('notification') }}" class="dashboard" style="display:flex"><i class="fa-solid fa-bell" style="padding-top:3px"></i><span>Notifications</span></a>
|
||||||
|
@ -151,7 +151,7 @@
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a class="dropdown-item d-flex align-items-center gap-2" href="/logout">
|
<a class="dropdown-item d-flex align-items-center gap-2" href="{{ route('login') }}">
|
||||||
<i class="fa-solid fa-right-from-bracket" style="font-size:16px; color:gray;"></i>
|
<i class="fa-solid fa-right-from-bracket" style="font-size:16px; color:gray;"></i>
|
||||||
<span>Logout</span>
|
<span>Logout</span>
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -5,7 +5,7 @@ use Illuminate\Support\Facades\Route;
|
||||||
|
|
||||||
Route::get('/', function () {
|
Route::get('/', function () {
|
||||||
return view('login');
|
return view('login');
|
||||||
});
|
})->name('login');
|
||||||
|
|
||||||
Route::get('/dashboard', function () {
|
Route::get('/dashboard', function () {
|
||||||
return view('dashboard');
|
return view('dashboard');
|
||||||
|
|
Loading…
Reference in New Issue