@extends('layouts.app') @section('content')

Notification

@foreach ($notifications as $notification) @endforeach
# Title Message Date
{{ $loop->iteration }} {{ $notification->title }} {{ $notification->message }} {{ $notification->created_at->format('d/m/Y H:i') }}
@endsection