23 lines
750 B
PHP
23 lines
750 B
PHP
<li class="dropdown notifications-menu">
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
|
|
<i class="fa fa-refresh"></i>
|
|
<span class="label label-danger" id="count">{!! $notification->count() !!}</span>
|
|
</a>
|
|
<ul class="dropdown-menu" style="width:500px">
|
|
|
|
<li class="header">You have {!! $notification->count() !!} update(s).</li>
|
|
|
|
<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>
|
|
</ul>
|
|
</li> |