我有以下两个表:
users
-name
-country_id
countries
-id
-name
我将使用 Eloquent ORM 并运行以下查询:
Select user.name, countries.name FROM users
LEFT JOIN countries ON users.country_id = countries.id
但我遇到了麻烦。我如何告诉 Eloquent 从国家表中获取不同的字段?
我现在拥有的是:
User::all();
但这让我只有 country_id