| 123456789101112131415161718 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\Forms\Sections;
- use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Traits\Toggler;
- /**
- * Base Form Section controler
- *
- * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
- */
- class BoxSection extends BaseSection
- {
- use Toggler;
- protected $id = 'boxSection';
- protected $name = 'boxSection';
- }
|