Not able to share flash messages to frontend with inertia

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!

Join The Discussion! (1 Replies)

Please sign in or sign up for free to join in on the dicussion.

  1. Commented 13 days ago

    Hi Deniz!

    I think you've got a small typo. You're flashing to notification in your controller, but sharing notifications. You'll want those two to match 1:1.

    Also, make sure you've got the flash message key notification or notifications (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.

    0

    Please sign in or sign up for free to reply