LoginSignup
1
1

More than 1 year has passed since last update.

Invalid route action: [〇〇Controller]. が起きた時に確認すること

Posted at

問題

__invoke を使ったシングルアクションコントローラーの作成時に以下のエラーが出た。

Invalid route action: [〇〇Controller].

確認すること

class名がファイル名であるかどうか

〇〇Controller.php
class 〇〇Controller extends Controller
{
}

namespaceの記述があるかどうか

〇〇Controller.php
namespace App\Http\Controllers\〇〇;

useの記述があるかどうか

〇〇Controller.php
use App\Http\Controllers\Controller;

ルーティングのチェック

Route::get('/', 〇〇\〇〇Controller::class);
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1