@extends('layouts.app')
@section('title', 'Notifications')
@section('content')
Notifications
@if($notifications->isEmpty())
@else
@foreach($notifications as $notification)
{{ $notification->title }}
{{ $notification->message }}
{{ $notification->created_at->format('M d, Y H:i') }}
@if(!$notification->is_read)
@endif
@endforeach
{{ $notifications->links() }}
@endif
@endsection