@extends('layouts.app') @section('content')
@php echo get_session_message() @endphp @php echo get_session_errors($errors) @endphp
@if($notifications->count() > 0)
Notifications
@foreach( $notifications as $notify )
{!! $notify->data['subject'] !!}
{!! $notify->data['body'] !!}
{{ $notify->created_at->diffForHumans() }}
@endforeach
@else
There are no new notifications
@endif
@endsection