Hi,
How to include one .ctp file in another .ctp file in cakephp 3? Is it correct way ?
Not really, you should do it with Element (view)
But depend what you need to do exactly
you can do it in two ways…
-
create
.ctp
file in Elements directory under Template and include in another.ctp
as
$this->element('my_another_view')
-
Extend view
$this->extend(‘my_another_view’)
This view need not to be in Elements directory