Basics
The Flash
component is designed to display different types of notifications that are stored in the session.
You can create a Flash
using the static method make()
.
make( string $key = 'alert', string|FlashType $type = FlashType::INFO, bool $withToast = true, bool $removable = true)
- $key - the key of the value from the session
- $type - the type of notification
- $withToast - adds toast notifications that can be displayed by adding the value
toast
to the session - $removable - the notification can be closed
use MoonShine\UI\Components\Layout\Flash Flash::make()
Toast
To display toast notifications, it is necessary for the $withToast
flag in the Flash
component to be set to true
. Add the toast
array to the session with the following values:
session()->flash('toast', [ 'type' => FlashType::INFO, 'message' => 'Info',]);
When working asynchronously, you can trigger the notification using JsEvents:
AlpineJs::event(JsEvent::TOAST, params: ['type' => 'success', 'message' => 'Success'])