You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
5.5 KiB
113 lines
5.5 KiB
<nav class="navbar navbar-expand navbar-light bg-white topbar mb-4 static-top shadow"> |
|
|
|
<!-- Sidebar Toggle (Topbar) --> |
|
<button id="sidebarToggleTop" class="btn btn-link d-md-none rounded-circle mr-3"> |
|
<i class="fa fa-bars"></i> |
|
</button> |
|
|
|
<!-- Topbar Navbar --> |
|
<ul class="navbar-nav ml-auto"> |
|
|
|
<!-- Nav Item - Search Dropdown (Visible Only XS) --> |
|
<li class="nav-item dropdown no-arrow d-sm-none"> |
|
<a class="nav-link dropdown-toggle" href="#" id="searchDropdown" role="button" data-toggle="dropdown" |
|
aria-haspopup="true" aria-expanded="false"> |
|
<i class="fas fa-search fa-fw"></i> |
|
</a> |
|
</li> |
|
|
|
<!-- Nav Item - Alerts --> |
|
<li class="nav-item dropdown no-arrow mx-1"> |
|
<a class="nav-link dropdown-toggle" href="#" id="alertsDropdown" role="button" data-toggle="dropdown" |
|
aria-haspopup="true" aria-expanded="false"> |
|
<i class="fas fa-bell fa-fw"></i> |
|
<!-- Counter - Alerts --> |
|
<span class="badge badge-danger badge-counter">3+</span> |
|
</a> |
|
<!-- Dropdown - Alerts --> |
|
<div class="dropdown-list dropdown-menu dropdown-menu-right shadow animated--grow-in" |
|
aria-labelledby="alertsDropdown"> |
|
<h6 class="dropdown-header"> |
|
Alerts Center |
|
</h6> |
|
<a class="dropdown-item d-flex align-items-center" href="#"> |
|
<div class="mr-3"> |
|
<div class="icon-circle bg-primary"> |
|
<!-- <i class="fas fa-file-alt text-white"></i> --> |
|
<i class="fas fa-download text-white"></i> |
|
</div> |
|
</div> |
|
<div> |
|
<div class="small text-gray-500">December 12, 2019</div> |
|
<span class="font-weight-bold">A new monthly report is ready to |
|
download!</span> |
|
</div> |
|
</a> |
|
<a class="dropdown-item d-flex align-items-center" href="#"> |
|
<div class="mr-3"> |
|
<div class="icon-circle bg-success"> |
|
<i class="fas fa-upload text-white"></i> |
|
</div> |
|
</div> |
|
<div> |
|
<div class="small text-gray-500">December 7, 2019</div> |
|
$290.29 has been deposited into your account! |
|
</div> |
|
</a> |
|
<a class="dropdown-item d-flex align-items-center" href="#"> |
|
<div class="mr-3"> |
|
<div class="icon-circle bg-warning"> |
|
<i class="fas fa-exclamation-triangle text-white"></i> |
|
</div> |
|
</div> |
|
<div> |
|
<div class="small text-gray-500">December 2, 2019</div> |
|
Spending Alert: We've noticed unusually high spending for your account. |
|
</div> |
|
</a> |
|
<a class="dropdown-item text-center small text-gray-500" href="#">Show All |
|
Alerts</a> |
|
</div> |
|
</li> |
|
|
|
<div class="topbar-divider d-none d-sm-block"></div> |
|
|
|
<!-- Nav Item - User Information --> |
|
<li class="nav-item dropdown no-arrow"> |
|
<a class="nav-link dropdown-toggle" href="#" id="userDropdown" role="button" data-toggle="dropdown" |
|
aria-haspopup="true" aria-expanded="false"> |
|
<span class="mr-2 d-none d-lg-inline text-gray-600 small">{{ auth()->user()->fullname }}</span> |
|
{{-- <img class="img-profile rounded-circle" src="{{ asset('assets/img/default-profile.png') }}"> --}} |
|
@if (auth()->user()->foto == null) |
|
<img src="{{ asset('assets/img/default-profile.png') }}" alt="{{ auth()->user()->fullname }}" |
|
class="img-profile rounded-circle"> |
|
@else |
|
{{-- <img src="{{ Storage::url(Auth::user()->foto) }}" alt="{{ auth()->user()->id }}" |
|
class="rounded-circle"> --}} |
|
<img src="{{ asset('storage/' . auth()->user()->foto) }}" alt="{{ auth()->user()->fullname }}" |
|
class="img-profile rounded-circle"> |
|
@endif |
|
</a> |
|
<!-- Dropdown - User Information --> |
|
<div class="dropdown-menu dropdown-menu-right shadow animated--grow-in" aria-labelledby="userDropdown"> |
|
<a class="dropdown-item" href="{{ route('profile.edit') }}"> |
|
<i class="fas fa-user fa-sm fa-fw mr-2 text-gray-400"></i> |
|
Profile |
|
</a> |
|
<a class="dropdown-item" href="{{ route('profile.setting') }}"> |
|
<i class="fas fa-cogs fa-sm fa-fw mr-2 text-gray-400"></i> |
|
Settings |
|
</a> |
|
<a class="dropdown-item" href="#"> |
|
<i class="fas fa-list fa-sm fa-fw mr-2 text-gray-400"></i> |
|
Activity Log |
|
</a> |
|
<div class="dropdown-divider"></div> |
|
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#logoutModal"> |
|
<i class="fas fa-sign-out-alt fa-sm fa-fw mr-2 text-gray-400"></i> |
|
Logout |
|
</a> |
|
</div> |
|
</li> |
|
</ul> |
|
</nav>
|
|
|