アクション追加をしたく、HelloController.phpに記載したソースコードを書き込みましたが、ルートが違うのかHelloController.phpが見つかりませんと出ます。
#verの違いと思い、6以外の8も試しましたがエラーとなります。
6:Route::get('hello','HelloController@index');
8:Route::get('hello', [HelloController::class, 'index']);```
『web.phpのコード』
<?php use Illuminate\Support\Facades\Route; /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | // */ Route::get('hello','HelloController@index'); 『HelloController.phpのコード』 <?php namespace App\Http\Controllers; use Illuminate\Http\Request; class HelloController extends Controller { public function index() { return <<<EOF <html> <head> <title>Hello/Index</title> <style> body{font-size:16pt; color:#999; } h1 { font-size:100pt; text-align:right; color:#eee; margin:-40px 0px -50px 0px; } </style> </head> <body> <h1>Index</h1> <p>これは、Helloコントローラのindexアクションです。</p> </body> </html> EOF; } }回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。