Laravel - 查找登录用户的用户ID并从另一个表中获取值

时间:2018-05-16 15:04:00

标签: php laravel laravel-5

我有一个表,其中包含一个表的列值和另一个表的列值,名称为property_users 这是property_users列名称 iduser_idproperty_id

user_idproperty_id会根据users tableproperties table的ID分别自动填充 如何根据表中登录用户的property_idproperty_users表中获取user_id

1 个答案:

答案 0 :(得分:0)

为表格PropertyUser制作模型property_users(必须扩展Illuminate\Database\Eloquent\Model类)并通过

获取属性
$properties = PropertyUser::where('user_id', '=', Auth::user()->id)->get();

那就是