1

是否可以减少 laravel 背包 crud 中某些列的列宽,添加列中是否有任何属性允许这样做?

在显示的图像上,我想将 1s 换成 glyphicon-ok,但我找不到办法

图片

public function setup(){

    $this->crud->setModel("App\ReporteParamEstacion");
    $this->crud->setRoute("admin/reporte_paramestacion");
    // $this->crud->setRouteName("crud.reportes.listado_importacion");
    $this->crud->setEntityNameStrings('parametro estacion', 'parametro estaciones');
    $this->crud->enableExportButtons();
    $this->crud->removeAllButtons();

     $this->crud->addColumn([
     'name' => 'nombre',
     'label' =>'Estacion',
     'type' => 'text'
    ]);

    $this->crud->addColumn([
     'name' => 'nombre_comuna',
     'label' =>'Comuna',
     'type' => 'text'
    ]);

    $this->crud->addColumn([
     'name' => 'MP10',
     'label' =>'MP10',
     'type' => 'text'


    ]);

    $this->crud->addColumn([
     'name' => 'MP25',
     'label' =>'MP25',
     'type' => 'text'

    ]);

    $this->crud->addColumn([
     'name' => 'SO2',
     'label' =>'SO2',
     'type' => 'text'
    ]);

    $this->crud->addColumn([
     'name' => 'NO2',
     'label' =>'NO2',
     'type' => 'text'
    ]); 

     $this->crud->addColumn([
     'name' => 'CO',
     'label' =>'CO',
     'type' => 'text'

    ]);  

    $this->crud->addColumn([
     'name' => 'O3',
     'label' =>'O3',
     'type' => 'text'
    ]);

    $this->crud->addColumn([
     'name' => 'BC',
     'label' =>'BC',
     'type' => 'text'
    ]);   

     $this->crud->addColumn([
     'name' => 'NOX',
     'label' =>'NOX',
     'type' => 'text'
    ]);  
 }

提前致谢

4

1 回答 1

0

将类型设置为“检查”,如下所示:

[ 'name' => 'mp10', // The db column name 'label' => "MP10", // Table column heading 'type' => 'check' ]

于 2017-06-07T11:35:35.133 回答