有没有办法使用雄辩的模型检索所有非空的记录。
e.g。
我有关系设置
板块模型
public function project()
{
return $this->hasOne('App\Models\Project');
}
项目模型
public function plate()
{
return $this->belongsTo('App\Models\Plate');
}
如何检索所有有价值的记录。
尝试此return $p = \App\Models\Plate::with('project')->get();
将返回所有内容,即使是拥有NULL
的内容。
我想要的只是plates
附加了项目。我试过laravel文档,但找不到任何东西。 many
关系
答案 0 :(得分:17)
您可以使用style
方法仅检索具有项目的印版。
var bgColor = ['background','rgb(102,204,0)'];
var textColor = ['color' , 'rgb(40,40,40)'];
$('.className').css(bgColor[0], bgColor[1]);
$('.className').css(textColor[0], textColor[1]);
tail
上的文档:http://laravel.com/docs/5.1/eloquent-relationships#querying-relations