ladogton2010's picture
Update view with data
cfaf855
raw
history blame contribute delete
278 Bytes
<?php
class Welcome extends Controller{
public function __construct(){
}
public function index(){
$data = [
'title' => 'New MVC app'
];
$this->view('welcome/index', $data);
}
}