@error('name') {{ $message }} @enderror
@error('title') {{ $message }} @enderror
@error('notification') {{ $message }} @enderror
Notifications List
@php $notifications = [ ['id' => 1, 'name' => 'John Doe', 'title' => 'Account Alert', 'message' => 'Your account has been updated.'], ['id' => 2, 'name' => 'Jane Smith', 'title' => 'Reminder', 'message' => 'Don\'t forget your appointment tomorrow.'], ['id' => 3, 'name' => 'Robert Brown', 'title' => 'Offer', 'message' => 'You have a new discount available.'], ]; @endphp @foreach ($notifications as $index => $note) @endforeach
Sr. No. User Name Notification Title Message Action
{{ $index + 1 }} {{ $note['name'] }} {{ $note['title'] }} {{ $note['message'] }}