You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
538 B
25 lines
538 B
<?php
|
|
|
|
namespace App\Admin\Controllers;
|
|
use App\Admin\Repositories\MiniProgramList;
|
|
use Dcat\Admin\Grid;
|
|
use Dcat\Admin\Http\Controllers\AdminController;
|
|
|
|
/**
|
|
* 小程序列表
|
|
* Class MiniProgramController
|
|
* @package App\Admin\Controllers
|
|
*/
|
|
class MiniProgramListController extends AdminController
|
|
{
|
|
protected $title = '小程序列表';
|
|
|
|
protected function grid(): Grid
|
|
{
|
|
return Grid::make(new MiniProgramList, function (Grid $grid) {
|
|
$grid->disableCreateButton();
|
|
|
|
$grid->column('authorizer_appid', 'APPID');
|
|
});
|
|
}
|
|
}
|