前提・実現したいこと
エラーを修復したい。
ここに質問の内容を詳しく書いてください。
laravelに画面を表示させたいのですがエラーが出る。
発生している問題・エラーメッセージ
Class 'App\Book' not found
該当のソースコード
webphp
1<?php 2 3use App\Book; 4use Illuminate\Http\Request; 5 6/* 7|-------------------------------------------------------------------------- 8| Web Routes 9|-------------------------------------------------------------------------- 10| 11| Here is where you can register web routes for your application. These 12| routes are loaded by the RouteServiceProvider within a group which 13| contains the "web" middleware group. Now create something great! 14| 15*/ 16 17Route::get('/', function () { 18 $books = Book::all(); 19 return view('books', ['books' => $books]); 20});
Bookphp
1<?php 2 3namespace App; 4 5use Illuminate\Database\Eloquent\Model; 6 7class Book extends Model 8{ 9 // 10}
回答1件
あなたの回答
tips
プレビュー