前提・実現したいこと
Laravelでuser同士のマッチング機能を追加しようとしています。
リレーション関係で悩んでいます
やりたいことは、申請した後のページでapply_idとapprove_idのユーザーのnameを取得したいです
◎usersテーブル
カラム | 属性 | 内容 |
---|---|---|
id | integer/primary | ユーザーID |
name | string | ユーザーの名前 |
◎offersテーブル
カラム | 属性 | 内容 |
---|---|---|
id | integer/primary | offerID |
apply__id | integer/FK | 申請をしたuser_id |
approve_id | integer/FK | 承認したuser_id |
発生している問題・エラーメッセージ
Property [name] does not exist on this collection instance. (View: /var/www/html/laravel/resources/views/meeting/offer.blade.php)
該当のソースコード
Controller
1<?php 2 3namespace App\Http\Controllers; 4 5use App\User; 6use App\Job; 7use App\Offer; 8use App\Message; 9use Illuminate\Support\Facades\Auth; 10use Illuminate\Http\Request; 11 12class MeetingController extends Controller 13{ 14 public function offer($id) 15 { 16 $offer = Offer::find($id); 17 return view('meeting.offer', [ 18 'offer' => $offer, 19 ]); 20 }
view
1<div class="l-container--content"> 2 <div class="l-container--wrapper"> 3 <div class="p-member--layout"> 4 <h3 class="p-member--other">{{ $offer->user->name}}zoom申請</h3> 5 <div class="p-member--border"> 6 <div class="p-confirm--opponent"> 7 <p>申請したユーザー</p> 8 </div>
Model
1<?php 2 3namespace App; 4 5use Illuminate\Database\Eloquent\Model; 6 7class Offer extends Model 8{ 9 protected $fillable = [ 10 'apply_id', 'approve_id', 'status' 11 ]; 12 13 public function approve() 14 { 15 return $this->belongsToMany(User::class, 'offers', 'id','approve_id'); 16 } 17 18 public function messages() 19 { 20 return $this->hasMany(Message::class); 21 } 22 23 24} 25 26
試したこと
まず
$offer = Offer::find($id);
でofferの情報をとってきて、approve_idのnameを取得したいのですが、
$offer->approve->nameで名前を取得しようとしましたが、うまく取得できません
approve_idが紐づいているuser_idをうまく取得するにはどうすればいいかお願いします。
テーブル設計の問題でしょうか?またリレーションの問題でしょうか?
補足情報(FW/ツールのバージョンなど)
Laravel 7.3
php 7.4
Mysql 5.7
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/25 03:04
2020/12/25 03:34
2020/12/27 13:40
2020/12/28 04:36
2020/12/29 13:50