1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- namespace App\Admin\Controllers;
- use App\Admin\Repositories\WxClause;
- use Dcat\Admin\Form;
- use Dcat\Admin\Grid;
- use Dcat\Admin\Show;
- use Dcat\Admin\Http\Controllers\AdminController;
- class WxClauseController extends AdminController
- {
- /**
- * Make a grid builder.
- *
- * @return Grid
- */
- protected function grid()
- {
- return Grid::make(new WxClause(), function (Grid $grid) {
- $grid->column('id')->sortable();
- $grid->column('title');
- $grid->column('url')->display(function (){
- return '<a target="_blank" href="/common/clause?id='. $this->id .'">'. env('APP_URL') .'/common/clause?id='. $this->id . '</a>';
- });
- $grid->column('created_at');
- $grid->column('updated_at')->sortable();
- $grid->filter(function (Grid\Filter $filter) {
- $filter->equal('id');
- });
- $grid->disableBatchDelete();
- // 禁用删除按钮
- $grid->disableDeleteButton();
- $grid->disableViewButton();
- });
- }
- /**
- * Make a show builder.
- *
- * @param mixed $id
- *
- * @return Show
- */
- protected function detail($id)
- {
- return Show::make($id, new WxClause(), function (Show $show) {
- $show->field('id');
- $show->field('title');
- $show->field('content');
- $show->field('created_at');
- $show->field('updated_at');
- });
- }
- /**
- * Make a form builder.
- *
- * @return Form
- */
- protected function form()
- {
- return Form::make(new WxClause(), function (Form $form) {
- $form->display('id');
- $form->text('title')->required();
- if(__system_is_model_enable('laradocs', 'dcat-neditor')){
- $form->neditor('content');
- }else{
- $form->editor('content');
- }
- $form->deleting(function (Form $form){
- global $__MINI_GLOBAL_TENANT_ID__;
- if($__MINI_GLOBAL_TENANT_ID__ > 0){
- return $form->response()->error('权限不足,不可以删除其他分站对象');
- }
- });
- });
- }
- }
|