Level 14
If you want to show it on same page then you can use livewire public property for that.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I have a custom Livewire component and want to make use of the Jetstream banner. It works but only after a redirect:
session()->flash('flash.banner', 'Yay it works!');
return redirect()->route('import');
I want it this way. But without redirect the banner is not shown:
session()->flash('flash.banner', 'Yay it works!');
Is there a way to show the banner without the redirect?
I found out this is quit easy. Just use this inside the component:
$this->dispatchBrowserEvent('banner-message', [
'style' => 'success',
'message' => 'Order successfull created!'
]);
Please or to participate in this conversation.