I can't figure out how to get flash messages to my frontend with inertia.. // config/inertia.ts sharedData: { notifications: (ctx) => ctx.inertia.always(() => ctx.session?.flashMessages.get('notifications')), } // app_controller.ts session.flash('notification', { type: 'success', message: 'Thanks for contacting. We will get back to you', }) return inertia.render('home', { storeAlerts })
Copied!
- Posted 15 days ago by
- deniz-elderenbos (@deniz-elderenbos)

Join The Discussion! (1 Replies)
Please sign in or sign up for free to join in on the dicussion.
tomgobich
Hi Deniz!
I think you've got a small typo. You're flashing to
notification
in your controller, but sharingnotifications
. You'll want those two to match 1:1.Also, make sure you've got the flash message key
notification
ornotifications
(whichever you pick) defined as a prop on your page/layout. Otherwise Vue, for example, won't ingest it and will treat it as an attribute and not a prop.Please sign in or sign up for free to reply