94 lines
2.9 KiB
PHP
94 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Http\Requests\HealthInfoCatalogRequest;
|
|
use Backpack\CRUD\app\Http\Controllers\CrudController;
|
|
use Backpack\CRUD\app\Library\CrudPanel\CrudPanelFacade as CRUD;
|
|
|
|
/**
|
|
* Class HealthInfoCatalogCrudController
|
|
* @package App\Http\Controllers\Admin
|
|
* @property-read \Backpack\CRUD\app\Library\CrudPanel\CrudPanel $crud
|
|
*/
|
|
class HealthInfoCatalogCrudController extends CrudController
|
|
{
|
|
use \Backpack\CRUD\app\Http\Controllers\Operations\ListOperation;
|
|
use \Backpack\CRUD\app\Http\Controllers\Operations\CreateOperation;
|
|
use \Backpack\CRUD\app\Http\Controllers\Operations\UpdateOperation;
|
|
use \Backpack\CRUD\app\Http\Controllers\Operations\DeleteOperation;
|
|
//use \Backpack\CRUD\app\Http\Controllers\Operations\ShowOperation;
|
|
use \Backpack\CRUD\app\Http\Controllers\Operations\ReorderOperation;
|
|
|
|
/**
|
|
* Configure the CrudPanel object. Apply settings to all operations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setup()
|
|
{
|
|
CRUD::setModel(\App\Models\HealthInfoCatalog::class);
|
|
CRUD::setRoute(config('backpack.base.route_prefix') . '/health-info-catalog');
|
|
CRUD::setEntityNameStrings('health info catalog', 'health info catalogs');
|
|
}
|
|
|
|
protected function setupReorderOperation()
|
|
{
|
|
CRUD::set('reorder.label', 'name');
|
|
CRUD::set('reorder.max_level', 1);
|
|
}
|
|
|
|
/**
|
|
* Define what happens when the List operation is loaded.
|
|
*
|
|
* @see https://backpackforlaravel.com/docs/crud-operation-list-entries
|
|
* @return void
|
|
*/
|
|
protected function setupListOperation()
|
|
{
|
|
if (! $this->crud->getRequest()->has('order')){
|
|
$this->crud->orderBy('lft', 'asc')->orderBy('id', 'desc');
|
|
}
|
|
|
|
CRUD::addColumn('#');
|
|
CRUD::column('is_front_show')->label(trans('backend.columnName.is_front_show'))->type('checkbox');
|
|
CRUD::column('name')->label(trans('backend.columnName.name'))->type('textarea_nl2br')->escaped(false)->searchLogic('text');
|
|
|
|
}
|
|
|
|
/**
|
|
* Define what happens when the Create operation is loaded.
|
|
*
|
|
* @see https://backpackforlaravel.com/docs/crud-operation-create
|
|
* @return void
|
|
*/
|
|
protected function setupCreateOperation()
|
|
{
|
|
CRUD::setValidation(HealthInfoCatalogRequest::class);
|
|
CRUD::addFields([
|
|
[
|
|
'name' => 'is_front_show',
|
|
'label' => trans('backend.columnName.is_front_show'),
|
|
'type' => 'boolean',
|
|
'default' => true,
|
|
],
|
|
[
|
|
'name' => 'name',
|
|
'lable' => 'Name',
|
|
'type' => 'text',
|
|
],
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Define what happens when the Update operation is loaded.
|
|
*
|
|
* @see https://backpackforlaravel.com/docs/crud-operation-update
|
|
* @return void
|
|
*/
|
|
protected function setupUpdateOperation()
|
|
{
|
|
$this->setupCreateOperation();
|
|
}
|
|
}
|