已编辑:伙计们,您可以查看建议的重复项吗?在问这个问题之前,我已经做了一些研究,而我已经找到了这个链接,这不是我要寻找的答案。
name
时返回
Student::find()->subject;
列
我尝试了以下代码,但没有用,并给我返回错误
App \ Student :: subject必须返回一个关系实例。
class Student extends Model
{
protected $table = 'subjects';
protected $fillables = ['id', 'name', 'gender', 'birthdate', etc.];
public function subject()
{
return $this->hasMany('App\Subject')->pluck('name');
}
}
答案 0 :(得分:1)
您可以在关系上使用任何查询构建器功能。
使用select
仅选择名称列
public function subject()
{
return $this->hasMany('App\Subject')->select('name');
}