@if(App\Models\Notification::count() > 0) @foreach(App\Models\Notification::orderby('id','desc')->get() as $notf) @if($notf->user_id != null)
{{ $notf->created_at->diffForHumans() }}
{{ __('A new user has registered.') }}
@endif @if($notf->order_id != null)
{{ $notf->created_at->diffForHumans() }}
{{ __('You have recieved a new order.') }}
@endif @endforeach @if(App\Models\Notification::count() > 0) {{__('View All')}} @endif @else
{{ __('No Notifications') }}
@endif