Extracting data from notification database in Laravel Extracting data from notification database in Laravel laravel laravel

Extracting data from notification database in Laravel


Noted from the comments The Notification object has a data attribute where all your data is stored so to access it:

change:

{{ $notification->name }}

to

{{ $notification->data['name'] }}

and do this for all your data.