Installation
You can install this plugin into your CakePHP application using composer.
composer require fredericomartini/adminlte
// in config/bootstrap.php
Plugin::load('AdminLTE');// in your AppController
public function beforeRender(Event $event)
{
$this->viewBuilder()->theme('AdminLTE');
}