我有一个收集"网站"哪种数据结构就像
show create table
同样我有10行数据。
现在我正在使用laravel eloquent,我需要获取所有数据,网站是57beda3d279871c80e8b4567,标题为空或null。
我应该更新我的标题属性查询
circle = lineGroup.selectAll("circle")
.data(circlePoints);
// kill old circles
circle.exit()
.transition()
.attr("r", 0)
.remove();
// new circles
circle.enter().append("circle");
circle.attr("cx", function(d, i) {
return d.x;
})
.attr("cy", function(d, i) {
return d.y;
})
.attr('r','8')
.attr("class","cir")
感谢。
答案 0 :(得分:0)
添加另一个其中条件:
$this->website
->where('website', $website)
->where('meta_tags.title', '=','')
->whereNull('meta_tags.title')
->get();
Laravel文档:https://laravel.com/docs/5.2/queries