Closed JFOC closed 8 years ago
Did you work add 'web' to your middleware in your routes? If you work with laravel 5.2
Yes is using 'web' middleware in the routes
What is the order of middlewares?
The middleware is web only
Are you doing a redirect in your controller after setting the Notification? Or are you returning a view?
@npostman Some returning view and other is redirecting. But it seems for unknown reason, the notification are working for now
How did you solved this problem?
There are packages that redirect, like the localization package. If you redirect for example to /contact, this package will redirect it to /nl/contact.
So be sure there is no redirect.
I have been set a notification in Controller
Notification::warning('New password and confirm new password is mismatch !');
And in the view blade
{!! Notification::showAll() !!}
But it seems does not show the notification because warning session is not set by Notification::warning