We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
There are 2 components in the Modal package for creating dialogs, ligthboxes, user notifications etc:
Example
<?php use Sy\Bootstrap\Component\Modal\Button; use Sy\Bootstrap\Component\Modal\Dialog; // Create a modal button $myBtn = new Button(id: 'my-modal-id', label: 'My button label', icon: 'pencil', color: 'primary', size: 'lg'); // Add something in the dialog body $myBtn->getDialog()->setBody('Hello world');