Spaces:
Sleeping
Sleeping
class Welcome extends Controller{ | |
public function __construct(){ | |
} | |
public function index(){ | |
$data = [ | |
'title' => 'New MVC app' | |
]; | |
$this->view('welcome/index', $data); | |
} | |
} |