model()->orderByDesc('status'); $grid->column('id')->sortable(); $grid->column('name'); $grid->column('price'); $grid->column('gold'); $grid->column('gift'); $grid->column('status')->switch(); $grid->disableViewButton(); $grid->disableRowSelector(); }); } /** * Make a show builder. * * @return Show */ protected function detail($id) { return Show::make($id, new RechargeCombo(), function (Show $show) { $show->field('id'); $show->field('name'); $show->field('price'); $show->field('gift'); $show->field('created_at'); $show->field('updated_at'); }); } /** * Make a form builder. * * @return Form */ protected function form() { return Form::make(new RechargeCombo(), function (Form $form) { $form->display('id'); $form->text('name')->required(); $form->text('price')->required(); $form->text('gold')->required(); $form->text('gift')->default(0); $form->switch('status')->default(1); $form->disableViewButton(); $form->disableDeleteButton(); $form->disableListButton(); $form->disableEditingCheck(); $form->disableViewCheck(); $form->disableCreatingCheck(); }); } }