{{__('frontendmanage.Notifications')}}

{{-- @dd($all_notifications) --}}
@if(Auth::user()->notifications->count()==0)

{{__('student.Empty')}}!

@else @if($all_notifications) @foreach($all_notifications as $notification) @endforeach @endif
{{__('frontendmanage.Notification')}} {{__('common.Date')}} {{__('common.Action')}}
@php $text=explode('.',$notification->data['body']); @endphp @if ($notification->read_at==null)

{!! strip_tags($notification->data['body']) !!}.

@else {!! strip_tags($notification->data['body']) !!}. @endif
{{showDate($notification->created_at)}} {{$notification->data['actionText']}}
{{ $all_notifications->links() }}
@endif