laravelでコントローラーがないと表示される。
エラー文
Illuminate\Contracts\Container\BindingResolutionException
Target class [BbsEntryController] does not exist.
【コントローラー】
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\BbsEntry; class BbsEntryController extends Controller { public function index(){ $item_list = BbsEntry::all(); return view("bbs_entry_list",["item_list" => $item_list]); } function create(){ echo "create"; } }
【ルート】
<?php /* |-------------------------------------------------------------------------- | 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('/',"BbsEntryController@index"); Route::post('/create',"BbsEntryController@create");
回答1件
あなたの回答
tips
プレビュー