コード例 #1
0
ファイル: BlogController.php プロジェクト: vincent4vx/NanoMVC
 public function homeAction()
 {
     $this->output->view('blog/home.html.php', ['tickets' => $this->model->getAllTickets()]);
 }
コード例 #2
0
 public function indexAction()
 {
     echo $this->output->render('home.html.php', ['tickets' => $this->model->getAllTickets()]);
 }