Components

System component Flash

Make

The Flash component is used to display various notifications.

You can create Flash using the static method make() class Flash.

make(string $key = 'alert', string $type = 'info', bool $withToast = true, bool $removable = true)

$key - session notification key, $type - notification type, $withToast - using Toast, $removable - option to hide notification.

use MoonShine\Decorations\Flash;
//...
 
public function components(): array
{
return [
Flash::make(key: 'session_key', type: 'info', withToast: true, removable: true)
];
}
 
//...

flash flash_dark