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.
129 lines
6.1 KiB
129 lines
6.1 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-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> |
|
@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="{{ 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> |
|
<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> |
|
|
|
<!-- Logout Modal--> |
|
<div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" |
|
aria-hidden="true"> |
|
<div class="modal-dialog" role="document"> |
|
<div class="modal-content"> |
|
<div class="modal-header"> |
|
<h5 class="modal-title" id="exampleModalLabel">Apakah anda yakin ingin keluar?</h5> |
|
<button class="close" type="button" data-dismiss="modal" aria-label="Close"> |
|
<span aria-hidden="true">×</span> |
|
</button> |
|
</div> |
|
<div class="modal-body">Pilih "Logout" di bawah ini jika Anda siap untuk mengakhiri sesi Anda saat ini. |
|
</div> |
|
<div class="modal-footer"> |
|
<button class="btn btn-secondary" type="button" data-dismiss="modal">Cancel</button> |
|
<form method="POST" action="{{ route('logout') }}"> |
|
@csrf |
|
<button class="btn btn-danger" style="cursor: pointer" type="submit">Logout</button> |
|
</form> |
|
</div> |
|
</div> |
|
</div> |
|
</div>
|
|
|