05-11-2019, 02:46 PM
Hi guys!
I want to work with view parser and view layout, so I see view parser does not interpret php code to create a layout. what would be a good practice to solve this problem. I have handled it in this way and it works.
Any ideas to work with these 2 things?
regards!
I want to work with view parser and view layout, so I see view parser does not interpret php code to create a layout. what would be a good practice to solve this problem. I have handled it in this way and it works.
PHP Code:
$parser = service ('parser');
$data['news'] = $this->model->getNews();
$page['page'] = $parser->setData($ data)->render('pages/overview');
echo view('templates/layout',$page);
Any ideas to work with these 2 things?
regards!