まずは、コントローラーとビューを作ります。
モデルはなくても大丈夫!
CakePHP4でBakeを利用してMVCを作る
CakePHP4でモデルなしでビューを表示する方法
作ったら
Routeを設定します。
Route設定
routes.phpに以下のような設定があるので、
controllerにコントローラー名を
actionに関数名を入れています。
/*
* Here, we are connecting '/' (base path) to a controller called 'Pages',
* its action called 'display', and we pass a param to select the view file
* to use (in this case, templates/Pages/home.php)...
*/
$builder->connect('/', ['controller' => 'Pages', 'action' => 'display', 'home']);
例
$builder->connect('/', ['controller' => 'Menu', 'action' => 'index']);
配列の3個目の「home」はよくわかりません。
とりあえず消してます。
教えてください。