change icon using font awesome
This commit is contained in:
parent
78b7e372ef
commit
82e0b51531
|
@ -40,7 +40,7 @@
|
|||
|
||||
<ul class="list-unstyled components">
|
||||
<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 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>
|
||||
|
@ -151,7 +151,7 @@
|
|||
</a>
|
||||
</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>
|
||||
<span>Logout</span>
|
||||
</a>
|
||||
|
|
|
@ -5,7 +5,7 @@ use Illuminate\Support\Facades\Route;
|
|||
|
||||
Route::get('/', function () {
|
||||
return view('login');
|
||||
});
|
||||
})->name('login');
|
||||
|
||||
Route::get('/dashboard', function () {
|
||||
return view('dashboard');
|
||||
|
|
Loading…
Reference in New Issue