|
@@ -0,0 +1,99 @@
|
|
|
|
+<?php
|
|
|
|
+
|
|
|
|
+namespace App\Admin\Controllers;
|
|
|
|
+
|
|
|
|
+use App\Models\Qualification;
|
|
|
|
+use Encore\Admin\Controllers\AdminController;
|
|
|
|
+use Encore\Admin\Form;
|
|
|
|
+use Encore\Admin\Grid;
|
|
|
|
+use Encore\Admin\Show;
|
|
|
|
+
|
|
|
|
+class QualificationsController extends AdminController
|
|
|
|
+{
|
|
|
|
+ /**
|
|
|
|
+ * Title for current resource.
|
|
|
|
+ *
|
|
|
|
+ * @var string
|
|
|
|
+ */
|
|
|
|
+ protected $title = '职称类别';
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Make a grid builder.
|
|
|
|
+ *
|
|
|
|
+ * @return Grid
|
|
|
|
+ */
|
|
|
|
+ protected function grid()
|
|
|
|
+ {
|
|
|
|
+ $grid = new Grid(new Qualification());
|
|
|
|
+
|
|
|
|
+ $grid->actions(function ($actions) {
|
|
|
|
+ // 去掉编辑
|
|
|
|
+ $actions->disableEdit();
|
|
|
|
+ // 去掉查看
|
|
|
|
+ $actions->disableView();
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ $grid->filter(function ($filter){
|
|
|
|
+ $filter->disableIdFilter();
|
|
|
|
+ $filter->like('name','职称名称');
|
|
|
|
+ $filter->equal('status','状态')->select([
|
|
|
|
+ 0 => '禁用',
|
|
|
|
+ 1 => '启用',
|
|
|
|
+ ]);
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ $grid->column('id', __('Id'));
|
|
|
|
+ $grid->column('name', __('职称名称'));
|
|
|
|
+ $states = [
|
|
|
|
+ 'on' => ['value' => 1, 'text' => '启用', 'color' => 'primary'],
|
|
|
|
+ 'off' => ['value' => 0, 'text' => '禁用', 'color' => 'danger'],
|
|
|
|
+ ];
|
|
|
|
+ $grid->column('status', __('状态'))->switch($states);
|
|
|
|
+ $grid->column('created_at', __('创建时间'));
|
|
|
|
+ $grid->column('updated_at', __('更新时间'));
|
|
|
|
+
|
|
|
|
+ return $grid;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Make a show builder.
|
|
|
|
+ *
|
|
|
|
+ * @param mixed $id
|
|
|
|
+ * @return Show
|
|
|
|
+ */
|
|
|
|
+ protected function detail($id)
|
|
|
|
+ {
|
|
|
|
+ $show = new Show(Qualification::findOrFail($id));
|
|
|
|
+
|
|
|
|
+ $show->field('id', __('Id'));
|
|
|
|
+ $show->field('name', __('Name'));
|
|
|
|
+ $show->field('status', __('Status'));
|
|
|
|
+ $show->field('created_at', __('Created at'));
|
|
|
|
+ $show->field('updated_at', __('Updated at'));
|
|
|
|
+
|
|
|
|
+ return $show;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Make a form builder.
|
|
|
|
+ *
|
|
|
|
+ * @return Form
|
|
|
|
+ */
|
|
|
|
+ protected function form()
|
|
|
|
+ {
|
|
|
|
+ $form = new Form(new Qualification());
|
|
|
|
+
|
|
|
|
+ $form->text('name', __('职称名称'));
|
|
|
|
+ $form->switch('status', __('状态'))->default(1);
|
|
|
|
+ $form->footer(function ($footer) {
|
|
|
|
+ // 去掉`查看`checkbox
|
|
|
|
+ $footer->disableViewCheck();
|
|
|
|
+ // 去掉`继续编辑`checkbox
|
|
|
|
+ $footer->disableEditingCheck();
|
|
|
|
+ // 去掉`继续创建`checkbox
|
|
|
|
+ $footer->disableCreatingCheck();
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ return $form;
|
|
|
|
+ }
|
|
|
|
+}
|