1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- namespace App\Admin\Controllers;
- use App\Admin\Repositories\Test;
- use Dcat\Admin\Form;
- use Dcat\Admin\Grid;
- use Dcat\Admin\Show;
- use Dcat\Admin\Http\Controllers\AdminController;
- use Carbon\Carbon;
- class TestController extends AdminController
- {
- /**
- * Make a grid builder.
- *
- * @return Grid
- */
- protected function grid()
- {
- return Grid::make(new Test(), function (Grid $grid) {
- $grid->column('id')->sortable();
- $grid->column('name');
- $grid->column('created_at');
- $grid->column('updated_at')->sortable();
- $grid->filter(function (Grid\Filter $filter) {
- $filter->equal('id');
- });
- });
- }
- /**
- * Make a show builder.
- *
- * @param mixed $id
- *
- * @return Show
- */
- protected function detail($id)
- {
- return Show::make($id, new Test(), function (Show $show) {
- $show->field('id');
- $show->field('name');
- $show->field('created_at');
- $show->field('updated_at');
- });
- }
- /**
- * Make a form builder.
- *
- * @return Form
- */
- protected function form()
- {
- return Form::make(new Test(), function (Form $form) {
- $form->display('id');
- $form->multipleImage('name')->saving(function ($paths) {
- return json_encode($paths);
- })->move('images/product/'.date("Ymd").'/')
- ->uniqueName()
- ->autoUpload()
- ->accept('jpg,png,gif,jpeg,webp');
- $form->display('created_at');
- $form->display('updated_at');
- });
- }
- }
|