| 1234567891011121314151617181920212223242526 |
- <?php
- namespace UCore\DcatAdmin\Traits;
- use UCore\DcatAdmin\Widgets\Button;
- use Dcat\Admin\Grid\Tools\RefreshButton;
- use Dcat\Admin\Widgets\Modal;
- trait ModalLazyRenderable
- {
- static public function makeModal()
- {
- $obj = static::make();
- $button = new Button($obj->title);
- $modal = Modal::make()
- ->lg()
- ->title($obj->title)
- ->body($obj)
- ->button($button);
- return $modal;
- }
- }
|