Partial Plugin is CakePHP element of small scope.
composer require kozo/partial:"~5.0"
AppView.php
use Partial\View\PartialTrait;
class AppView extends View
{
use PartialTrait;
}
_hoge.ctp
Partial content.
example.ctp
<?= $this->partial('hoge'); ?>