我有一个表,其中包含一个表的列值和另一个表的列值,名称为property_users
这是property_users
列名称
id
,user_id
,property_id
user_id
和property_id
会根据users table
和properties table
的ID分别自动填充
如何根据表中登录用户的property_id
从property_users
表中获取user_id
答案 0 :(得分:0)
为表格PropertyUser
制作模型property_users
(必须扩展Illuminate\Database\Eloquent\Model
类)并通过
$properties = PropertyUser::where('user_id', '=', Auth::user()->id)->get();
那就是