PATH:
home
/
lab2454c
/
omvstudio.com
/
resources
/
views
/
admin
/
layouts
/
partials
<a class="nav-link dropdown-toggle" href="#" id="notification-dropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="fas fa-bell fa-fw"></i> @if(auth()->user()->notifications()->count()) <span class="badge badge-danger badge-counter">{{auth()->user()->notifications()->count()}}</span> @endif </a> <div class="dropdown-list dropdown-menu dropdown-menu-right shadow animated--grow-in" aria-labelledby="notification-dropdown" style="max-height:200px; overflow:hidden; overflow-y:scroll;"> <h6 class="dropdown-header">{{__('admin_lebels.notification.heading')}}</h6> @foreach(auth()->user()->notifications as $notification) <a class="dropdown-item d-flex align-items-center" href="javascript:void(0)" data-id="{{$notification->id}}"> <div> <div class="small text-gray-500">{{$notification->created_at}}</div> <span class="font-weight-bold"> {{__('admin_lebels.notification.category')}} : {{ucfirst($notification->message->category)}} {{ucfirst($notification->message->type)}} <br /> {{__('admin_lebels.notification.asset_id')}} : {{$notification->message->asset_id}} </span> </div> <div class="mr-3"> <div class="icon-circle bg-primary"> <i class="fas fa-trash text-white"></i> </div> </div> </a> @endforeach </div>
[-] scripts.blade.php
[edit]
[-] sidebar.blade.php
[edit]
[+]
..
[-] head.blade.php
[edit]
[-] nav-admin-profile.blade.php
[edit]
[-] footer.blade.php
[edit]
[-] nav-message.blade.php
[edit]
[-] navbar.blade.php
[edit]
[-] notification.blade.php
[edit]
[+]
login