clara_old/app/Core/Bootstrap/BootstrapSystem.php
Daeng Deni Mardaeni 6210e33a3b Initial commit
2023-07-03 14:58:31 +07:00

14 lines
236 B
PHP

<?php
namespace App\Core\Bootstrap;
class BootstrapSystem
{
public function init()
{
// See also starterkit/app/View/Components/SystemLayout.php to change the layout
addHtmlClass('body', 'app-blank');
}
}