我正在尝试创建一个简单的活动Feed,用户可以看到他朋友的更新。
我正在处理三张桌子。 user_status,友谊和用户。
用户表
user_id
name
email
..(a regular users table, nothing special)
友谊表
friendship_id
friend_one (Foreign key from users table)
friend_two (Foreign key from users table)
user_status表
status_id
user_id (foreign key from users table)
status
date
模型
用户模型
public function friends() {
return $this->belongsToMany('App\Models\User', 'friendship', 'friend_one', 'friend_two');
}
public function status() {
return $this->hasMany('\App\Models\UserStatus','status_id');
}
UserStatus模型
public function usersStatus() {
return $this->belongsTo('\App\Models\User','user_id');
}
FeedController.php
class FeedController extends Controller
{
public function index() {
$friends = Auth::user()->friends;
return view('frontend.feed.index')
->with('friends',$friends);
}
}
使用下面的查询,我可以得到用户的朋友。我也可以轻松获取特定用户的状态更新,但我不知道如何仅列出特定用户的状态。
@foreach($friends as $friend)
{{$friend->email}}
@endforeach
下面的一个不起作用。
查看
@foreach($friends as $friend)
@foreach($friend->status as $status)
{{$status->status}}
@endforeach
@endforeach
Invalid argument supplied for foreach() (View: /Applications/MAMP/htdocs/master/resources/views/frontend/feed/index.blade.php)
答案 0 :(得分:1)
我认为问题在于
中的foreign_key引用public function status() {
return $this->hasMany('\App\Models\UserStatus','status_id');
}
更改为:
public function status() {
return $this->hasMany('\App\Models\UserStatus', 'user_id', 'user_id');
}
它应该有用。