前提・実現したいこと
laravel
でチーム開発していて、現在マイページの一覧表示をしています。そこにテスト用のデータを作り(seedingして)
お気に入り(今回だと観光地)した物のリストを表示したいです。
発生している問題・エラーメッセージ
Undefined variable: want (View: /Applications/XAMPP/xamppfiles/htdocs/Kyoto/resources/views/users/mypage.blade.php) ``` ### 該当のソースコード ```ここに言語を入力 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> </head> <body> <h2>マイページ</h2> <p>名前:{{ $user->name }}</p> <p>メールアドレス:{{ $user->email }}</p> <p>写真:{{ $user->img}}</p> <table border="1"> <tr> <th>⭐️行きたいリスト</th> <th>⭐️行ったリスト</th> </tr> @foreach ($wants as $want) <div class="m-4 p-4 border border-primary"> <tr> <td>{{ $want->user_id }}</td> <td>{{ $want->spot_id }}</td> </tr> @endforeach </table> </body> </html> ``` ### 試したこと want以外の変数も試してみましたがダメでした ### ルーティング ```ここに言語を入力 Route::get('user/{id}', 'MypageController@index')->name('users.mypage'); ``` ### シーディング ```ここに言語を入力 public function run() { $wants=[ ['spot_id'=>'1', 'user_id' => '1'], ['spot_id'=>'2', 'user_id' => '2'], ]; foreach ($wants as $want) { DB::table('spot_want_to')->insert([ 'spot_id' => $want['spot_id'], 'user_id' => $want['user_id'], ]); } } ``` ### コントローラー ```ここに言語を入力 use App\SpotWantTo; /追加 public function index($id) { $want = SpotWantTo::find($id); return view('users.mypage', [ 'want' => $want, ]); ``` ### マイグレーション ```ここに言語を入力 public function up() { Schema::create('spot_want_to', function (Blueprint $table) { $table->increments('id'); $table->unsignedInteger('spot_id'); $table->foreign('spot_id')->references('id')->on('spots'); $table->unsignedInteger('user_id'); $table->foreign('user_id')->references('id')->on('users'); }); } ``` ### 補足情報(FW/ツールのバージョンなど) laravel ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー