composer require jbennecker/cakephp-admin-themebin/cake plugin load AdminThemeCreate config/admin_theme.php
<?php
return [
'AdminTheme.title' => '',
'AdminTheme.controllers' => [
[],
],
];Set theme e.g in AppController::beforeRender()
if ($this->getRequest()->getParam('prefix') === 'Admin') {
$this->viewBuilder()->setTheme('AdminTheme');
}There are two ViewBlocks
<?= $this->fetch('css'); ?>
<?= $this->fetch('script') ?>