Laravel8をノリで使ってみたらTarget class [◯◯Controller] does not existと表示された
今までLaravle6や7でアプリなどを作っていたが8にバージョンアップになったと聞いて早速8を使ってみたら、今まで見たことないエラーメッセージが表示されたのでここにメモとして残すことにした。
記述したコード
routes/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('/','BbsController@index');
App\Http\Controllers\BbsController.php
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class BbsController extends Controller
{
//
public function index(){
return view('Bbs.index');
}
}
いつもの通りこれで画面表示されるだろと思ったらまさかのTarget class [BbsController] does not exist.と表示された。
よくよく調べてみたらLaravel8からルーティングの書き方が変わったらしく以下のように修正したら正常に動作した
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\BbsController;
/*
|--------------------------------------------------------------------------
| 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('/', [BbsController::class,'index']);
どうやら作成したControllerのパスとルーティングの書き方を上のようにしないといけなくなったらしい。
まだまだLaravel8の変更点があるらしいので公式ドキュメントを見ようと思った。
Author And Source
この問題について(Laravel8をノリで使ってみたらTarget class [◯◯Controller] does not existと表示された), 我々は、より多くの情報をここで見つけました https://qiita.com/ruirui_38/items/14e4d7ec1479d4c8216a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .