I coded a flash message for successful listing that lasts 3 seconds after a redirect but as soon as redirect it disappears. I can see a glimpse of it, like 10 milliseconds. Here is the code:
@if(session()->has("message"))
<div x-data="{show: true" x-init="setTimeout(() => show = false, 3000)" x-show="show">
<p>
{{session("message")}}
</p>
</div>
@endif