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.
118 lines
5.7 KiB
118 lines
5.7 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"> |
|
@php |
|
$notification = \App\Models\asset_status::whereNull('enter_at') |
|
->whereDate('est_pengembalian', \Carbon\Carbon::today()) |
|
->get(); |
|
$totalNotification = $notification->count(); |
|
@endphp |
|
<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">{{ $totalNotification }}</span> |
|
</a> |
|
<!-- Dropdown - Alerts --> |
|
<div class="dropdown-list dropdown-menu dropdown-menu-right shadow animated--grow-in" |
|
aria-labelledby="alertsDropdown"> |
|
<h6 class="dropdown-header"> |
|
Notifikasi Siopas |
|
</h6> |
|
@foreach ($notification as $data_notification) |
|
<a class="dropdown-item d-flex align-items-center" |
|
href="{{ route('dashboard.pengembalian.edit', $data_notification->id) }}"> |
|
<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"> |
|
{{ \Carbon\Carbon::parse($data_notification->est_pengembalian)->format('F j, Y') }} |
|
</div> |
|
<span class="font-weight-bold">Peti dengan kode |
|
{{ $data_notification->peti->fix_lot }} Sudah waktunya pengembalian</span> |
|
</div> |
|
</a> |
|
@endforeach |
|
<a class="dropdown-item text-center small text-gray-500" |
|
href="{{ route('dashboard.navbarList.notification') }}">Show All Notifikasi</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>
|
|
|