@extends('layouts.app') @section('title', 'Notification') @section('content')
@csrf
@error('name') {{ $message }} @enderror
@error('title') {{ $message }} @enderror
@error('notification') {{ $message }} @enderror
Notifications List
@forelse ($notifications as $index => $note) @empty @endforelse
Sr. No. User Name Notification Title Message Action
{{ $index + 1 }} {{ $note->name }} {{ $note->title }} {{ $note->message }}
@csrf @method('DELETE')
No notifications found.
@endsection