@extends('layouts.app') @section('title', __('Notifications')) @push('css') @endpush @section('content')
@if($notifications->count() == 0)
{{ __('No Notifications!') }}
@endif @foreach($notifications as $notification)
{!! $notification->data['title'] !!}
@if($notification->data['subtitle'] ?? null)
{{ $notification->data['subtitle'] }}
@endif
{{ $notification->created_at->format('M d, Y - h:i A') }} ({{ $notification->created_at->diffForHumans(null, false, false, 2) }})
@if($notification->unread()) @endif
@endforeach
{!! $notifications->links() !!}
@stop @push('script') @endpush