如何显示"。"在Yajra Datatable Laravel infyom中

时间:2017-02-08 14:50:02

标签: laravel-5 datatables

我正在使用Laravel Infyom发电机。每件事对我来说都很完美。我的要求是在数据表的标题中显示"。"

private function getColumns()

负责显示标题但是当我使用" Dept.No" 时,它会显示在datatbale" Dept No"中。我想"。"还

1 个答案:

答案 0 :(得分:0)

    protected function getColumns()
    {
        return [
            'id'         => ['title' => 'Código'],
            'nome'       => ['title' => 'Nome do Produto'],
            'grupo'      => ['title' => 'Grupo'],
            'estoque'    => ['title' => 'Estoque'],
            'preco'      => ['title' => 'Preço de Venda'],
            'custo'      => ['title' => 'Preço de Custo'],
            'ativo'      => ['title' => 'Ativo?'],
            'created_at' => ['title' => 'Dt. Cadastro']
        ];
}