view - How to set custom title in Phalcon Controller -


i created main layout , layouts , , controller view .

but how set custom title product / name in view ?

main layouts

{{ get_doctype() }}  <html>   <head>           {{ get_title() }} </head>      <body>         {{ content() }}  </body>  </html> 

layouts

{{ content() }} 

and controllers view

"controller view" 

in indexcontroller

phalcon\tag::settitle("welcome page"); 

and nothing return ? please !

checkout example base controller located in https://github.com/phalcon/invo/blob/master/app/controllers/controllerbase.php

later @ how other controllers use initialize() define tittle.


Comments