您现在的位置是:首页 > 文章详情 网站首页文章详情
laravel-admin中的修改数据来源
- 1838
- 0
- 2020-04-24 10:11:05
- laravel框架
简介下面是使用laravel-admin的时候,感觉一个不错的例子
列表页面的统计数据的制作
protected function gridOfExam()
{
$grid = new Grid(new ExamProj...
下面是使用laravel-admin的时候,感觉一个不错的例子 列表页面的统计数据的制作
protected function gridOfExam()
{
$grid = new Grid(new ExamProject);
$grid->id('编号');
$grid->sign('项目标识');
$grid->column('分享前统计')->display(function(){
return $this->shareLog()->where('share_type', 1)->count();
});
$grid->column('分享后统计')->display(function(){
return $this->shareLog()->where('share_type', 2)->count();
});
$grid->title('项目标题');
// 关闭操作按钮
$grid->disableActions();
return $grid;
}