Alert
Notification banners for important messages, warnings, and status updates. Supports titles, actions, dismissible mode, and filled backgrounds.
Variants
<?= ws_alert('Your changes have been saved!', ['variant' => 'success']) ?>
<?= ws_alert('Please review the form', ['variant' => 'warning']) ?>
<?= ws_alert('An error occurred', ['variant' => 'error']) ?>With Title
Session Expiring
Verification Required
<?= ws_alert('Message here', [
'variant' => 'warning',
'title' => 'Alert Title'
]) ?>Dismissible
Heads Up
<?= ws_alert('Message', ['dismissible' => true]) ?>With Actions
Update Available
<?= ws_alert('Message', [
'variant' => 'info',
'actions' => [
['text' => 'Action', 'href' => '/url'],
['text' => 'Another', 'onclick' => 'doSomething()']
]
]) ?>Filled Variant
<?= ws_alert('Message', ['variant' => 'success', 'filled' => true]) ?>Without Border
<?= ws_alert('Message', ['bordered' => false]) ?>