2017-02-08 74 views
0

我正在使用Laravel Infyom generator。每件事都爲我完美工作。我的要求是顯示「。」在數據表頭中的如何顯示「。」在Yajra Datatable Laravel infyom

private function getColumns() 

負責顯示的信息,但是當我使用「Dept.No」那麼在datatbale顯示「系否」。我想要 」。」也。

回答

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'] 
     ]; 
} 
相關問題