29 lines
794 B
PHP
29 lines
794 B
PHP
<li class="nav-item dropdown notifications-menu">
|
|
|
|
<a href="#" class="nav-link" data-toggle="dropdown">
|
|
|
|
<i class="fas fa-sync"></i>
|
|
|
|
<span class="badge badge-warning navbar-badge" id="count">{!! $notification->count() !!}</span>
|
|
</a>
|
|
|
|
<div class="dropdown-menu dropdown-menu-lg dropdown-menu-right">
|
|
|
|
<span class="dropdown-header">You have {!! $notification->count() !!} update(s).</span>
|
|
|
|
<ul class="menu list-unstyled">
|
|
|
|
@if($notification->count()>0)
|
|
@foreach($notification as $notify)
|
|
@if($notify->value)
|
|
|
|
<li> {!! ucfirst($notify->value) !!}</li>
|
|
<li class="clearfix"></li>
|
|
@endif
|
|
@endforeach
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
</li>
|
|
|