お世話になります。
端末:Mac
環境:Vagrant / Homestead
VagrantでHomestead環境に入り
Laravelチュートリアルサイト
上記を実施したところ、最終的にhttp://localhost:8000/●●にアクセスしたところ
となり、チュートリアル通りの結果を得ることができませんでした。
class ProductController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $products = Product::latest()->paginate(5); return view('products.index',compact('products')) ->with('i', (request()->input('page', 1) - 1) * 5); } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { return view('products.create'); }
原因がわかる方いらっしゃいましたらご助力いただけましたら幸いです。
http://localhost:8000はLaravel表示でる状況です。
何卒よろしくお願いいたします。
追加情報
Illuminate\Database\QueryException SQLSTATE[42S02]: Base table or view not found: 1146 Table 'laravel.products' doesn't exist (SQL: select count(*) as aggregate from `products`) http://localhost:8000/laravel
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/14 07:56
退会済みユーザー
2020/04/14 08:19
退会済みユーザー
2020/04/14 08:19
2020/04/14 08:20