Components
Alert Dialog
A modal dialog that interrupts the user with important content and expects a response.
php artisan blatui:add alert-dialog
Are you absolutely sure?
This action cannot be undone. This will permanently delete your account
and remove your data from our servers.
<x-ui.alert-dialog>
<x-ui.alert-dialog-trigger>
<x-ui.button variant="outline">Show Dialog</x-ui.button>
</x-ui.alert-dialog-trigger>
<x-ui.alert-dialog-content>
<x-ui.alert-dialog-header>
<x-ui.alert-dialog-title>Are you absolutely sure?</x-ui.alert-dialog-title>
<x-ui.alert-dialog-description>
This action cannot be undone. This will permanently delete your account
and remove your data from our servers.
</x-ui.alert-dialog-description>
</x-ui.alert-dialog-header>
<x-ui.alert-dialog-footer>
<x-ui.alert-dialog-cancel>Cancel</x-ui.alert-dialog-cancel>
<x-ui.alert-dialog-action>Continue</x-ui.alert-dialog-action>
</x-ui.alert-dialog-footer>
</x-ui.alert-dialog-content>
</x-ui.alert-dialog>