BoxSection.php 388 B

123456789101112131415161718
  1. <?php
  2. namespace ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\Forms\Sections;
  3. use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Traits\Toggler;
  4. /**
  5. * Base Form Section controler
  6. *
  7. * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
  8. */
  9. class BoxSection extends BaseSection
  10. {
  11. use Toggler;
  12. protected $id = 'boxSection';
  13. protected $name = 'boxSection';
  14. }