title = 'MindVisionCode PHP'; $model->eyebrow = 'Small MVC framework'; $model->message = 'A lightweight PHP MVC starter with a central dispatcher, clean controllers, SQLite-backed repositories, and readable conventions.'; $model->routeExample = '/employees'; return $this->view('home.index', [ 'model' => $model, 'pageTitle' => $model->title, ]); } public function user(string $id) { return $this->json([ 'userId' => $id, ]); } }