@extends('layouts.app') @section('title','Notifications') @section('header','Notifications') @section('content')

Notifications

@forelse($notifications as $notification) @empty @endforelse
NotificationTypeDate
{{ $notification->title }}
{{ $notification->message }}
{{ $notification->type }} {{ $notification->created_at->format('d M Y H:i') }} @if(!$notification->read_at)
@csrf
@else Read @endif
No notifications.
{{ $notifications->links() }}
@endsection