composer require jbennecker/cakephp-admin-theme
bin/cake plugin load AdminTheme
Create 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') ?>