1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- namespace App\Admin\Controllers;
- use App\Admin\Repositories\CashOut;
- use Dcat\Admin\Form;
- use Dcat\Admin\Grid;
- use Dcat\Admin\Show;
- use Dcat\Admin\Http\Controllers\AdminController;
- class CashOutController extends AdminController
- {
- /**
- * Make a grid builder.
- *
- * @return Grid
- */
- protected function grid()
- {
- return Grid::make(new CashOut(), function (Grid $grid) {
- $grid->column('id')->sortable();
- $grid->column('member_id');
- $grid->column('price');
- $grid->column('status');
- $grid->column('comment');
- $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 CashOut(), function (Show $show) {
- $show->field('id');
- $show->field('member_id');
- $show->field('price');
- $show->field('status');
- $show->field('comment');
- $show->field('created_at');
- $show->field('updated_at');
- });
- }
- /**
- * Make a form builder.
- *
- * @return Form
- */
- protected function form()
- {
- return Form::make(new CashOut(), function (Form $form) {
- $form->display('id');
- $form->text('member_id');
- $form->text('price');
- $form->text('status');
- $form->text('comment');
-
- $form->display('created_at');
- $form->display('updated_at');
- });
- }
- }
|