前提・実現したいこと
現在、Laravelで簡単なCRUD処理アプリ作成中です。
画面を表示させるところで、真っ白になってしまいます。
デベロッパーツールでもエラー表示なく、ただただ真っ白です。
route:listでもエラーなくパスは通ってます。
まずは、http://app.localhost/userで画面表示させたいです。
エラー画面にならないのが不明です。
よろしくお願いいたします。
該当のソースコード
webphp
1Route::resource('/user/', UserController::class); 2Route::get('/', function () { 3 return view('welcome'); 4});
UserControllerphp
1<?php 2 3namespace App\Http\Controllers; 4 5use Illuminate\Http\Request; 6 7class UserController extends Controller 8{ 9 /** 10 * Display a listing of the resource. 11 * 12 * @return \Illuminate\Http\Response 13 */ 14 public function index() 15 { 16 // 17 } 18 19 /** 20 * Show the form for creating a new resource. 21 * 22 * @return \Illuminate\Http\Response 23 */ 24 public function create() 25 { 26 // 27 } 28 29 /** 30 * Store a newly created resource in storage. 31 * 32 * @param \Illuminate\Http\Request $request 33 * @return \Illuminate\Http\Response 34 */ 35 public function store(Request $request) 36 { 37 // 38 } 39 40 /** 41 * Display the specified resource. 42 * 43 * @param int $id 44 * @return \Illuminate\Http\Response 45 */ 46 public function show($id) 47 { 48 // 49 } 50 51 /** 52 * Show the form for editing the specified resource. 53 * 54 * @param int $id 55 * @return \Illuminate\Http\Response 56 */ 57 public function edit($id) 58 { 59 // 60 } 61 62 /** 63 * Update the specified resource in storage. 64 * 65 * @param \Illuminate\Http\Request $request 66 * @param int $id 67 * @return \Illuminate\Http\Response 68 */ 69 public function update(Request $request, $id) 70 { 71 // 72 } 73 74 /** 75 * Remove the specified resource from storage. 76 * 77 * @param int $id 78 * @return \Illuminate\Http\Response 79 */ 80 public function destroy($id) 81 { 82 // 83 } 84} 85
indexbladephp
1<h1>test</h1> 2
試したこと
ルートの順番の確認。
エラー画面にならないのが不明です。
補足情報(FW/ツールのバージョンなど)
Laravel 8
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/09/09 05:20