Files
faveo/resources/views/themes/default1/update/notification.blade.php
Sujit Prasad ffa56a43cb update v1.0.7.9 R.C.
This is a Release Candidate. We are still testing.
2016-08-03 20:04:36 +05:30

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>&nbsp;&nbsp;&nbsp;{!! ucfirst($notify->value) !!}</li>
<li class="clearfix"></li>
@endif
@endforeach
@endif
</ul>
</ul>
</li>