Hi Phalcon pro,
My web application allows users edit files view use systax Volt template with extension .phtml
In Controller: I try to use the command $this->view->model = ModelTest::find (); And in View, i try {{ dump(model) }}
It displays the database information and the important things in the application. How to limit those that are?
'database' => array(
'adapter' => 'Mysql',
'host' => 'localhost',
'username' => 'root',
'password' => '',
'dbname' => 'cmsphalcon',
'charset' => 'utf8'
),