@include('admin.partials.languages')
@if(auth()->getDefaultDriver() === 'student')
@php
$notification = auth()->user()->unseenNotifications->count();
@endphp
@if($notification > 0)
@endif
@endif
{{__('Notifications')}}
{{__('You have')}} {{ $notification }} {{__('unread Notifications')}}
@foreach(auth()->user()->unseenNotifications as $notification)
@endforeach
{{ __($notification->message) }}
{{ $notification->created_at->diffForHumans() }}