前提・実現したいこと
タイトルの通り掲示板ごとのメッセージを取得したいです。
フリマサイトを作成しており、商品を買ったユーザーのidが下記にあるbulletin_boardsテーブルのbuy_userカラムに挿入され、商品を売ったユーザーのidがsale_userカラムに追加される仕組みになっています。
bulletin_boardsテーブル
+------------+-----------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------+-----------------+------+-----+---------+----------------+ | id | bigint unsigned | NO | PRI | NULL | auto_increment | | sale_user | bigint unsigned | NO | | NULL | | | buy_user | bigint unsigned | NO | | NULL | | | product_id | bigint unsigned | NO | MUL | NULL | | | created_at | timestamp | YES | | NULL | | | updated_at | timestamp | YES | | NULL | | | deleted_at | timestamp | YES | | NULL | | +------------+-----------------+------+-----+---------+----------------+
messagesテーブル
+-------------------+-----------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-------------------+-----------------+------+-----+---------+----------------+ | id | bigint unsigned | NO | PRI | NULL | auto_increment | | bulletin_board_id | bigint unsigned | NO | MUL | NULL | | | to_user | bigint unsigned | NO | | NULL | | | from_user | bigint unsigned | NO | | NULL | | | message | varchar(255) | NO | | NULL | | | send_date | datetime | NO | | NULL | | | created_at | timestamp | YES | | NULL | | | updated_at | timestamp | YES | | NULL | | | deleted_at | timestamp | YES | | NULL | | +-------------------+-----------------+------+-----+---------+----------------+
発生している問題・エラーメッセージ
複数の掲示板ごとのメッセージを取得することができません。
該当のソースコード
php
1<?php 2 3namespace App\Http\Controllers; 4 5use App\Models\User; 6use App\Models\Message; 7use Illuminate\Http\Request; 8use App\Models\BulletinBoard; 9use Illuminate\Support\Facades\Auth; 10 11class MyPageController extends Controller 12{ 13 /** 14 * Display a listing of the resource. 15 * 16 * @return \Illuminate\Http\Response 17 */ 18 public function index(Request $request) 19 { 20 $products = User::find(Auth::id())->products()->get(); 21 22 $bulletinBoards = BulletinBoard::where('sale_user', Auth::id())->orWhere('buy_user', Auth::id())->get(); 23 24 foreach ($bulletinBoards as $bulletinBoard) { 25 $messages = Message::where('bulletin_board_id', $bulletinBoard->id)->orderBy('created_at', 'desc')->get(); 26 } 27 28 return view('myPage.index', compact( 29 'messages', 30 'products', 31 )); 32 } 33}
試したこと
$bulletinBoards = BulletinBoard::where('sale_user', Auth::id())->orWhere('buy_user', Auth::id())->get();
ログインしているユーザーがやり取りしている掲示板のデータを取得するために上記のコードを記述しました。
取得した掲示板ごとのメッセージを取得するために下記のコードを記述しました。
foreach ($bulletinBoards as $bulletinBoard) { $messages = Message::where('bulletin_board_id', $bulletinBoard->id)->orderBy('created_at', 'desc')->get(); }
ループ内で$messagesをLog::debug($messages)で確認すると、ログインしているユーザーがやりとりしている掲示板のデータに紐づくメッセージを全て取得できたのですが、ループの外でview側へ$messagesをreturnするとループの最後の掲示板メッセージしかreturnされません。(foreachから出るとポインタは最後の要素のみを指し示すためだと思います)
なので、foreach内で$messagesをreturnしようと下記のコードを試すと、最初の掲示板メッセージしか取得できませんでした(最初のループでreturnしているためだと思います)
foreach ($bulletinBoards as $bulletinBoard) { $messages = Message::where('bulletin_board_id', $bulletinBoard->id)->orderBy('created_at', 'desc')->get(); return view('myPage.index', compact( 'messages', 'products', ));
補足情報(FW/ツールのバージョンなど)
laravel6.8
dockder
mac
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/08 11:49