backpack-for-laravel自定义列表刀片视图,保留列

时间:2018-01-10 00:18:39

标签: php laravel backpack-for-laravel

我试图自定义list.blade,但到目前为止没有任何成功。 正如我在文件中看到的那样,foreach循环执行所有列:

@foreach ($crud->columns as $column)
   <th>{{ $column['label'] }}</th>
@endforeach

我想要达到的目标是:

 @foreach ($crud->columns as $column)
   <th>{{ $column['id'] }}</th>
   <th>{{ $column['name'] }}</th>
   <th>{{ $column['price'] }}</th>
   ..........etc. 
 @endforeach

当然这{{ $column['id'] }}无效。

有什么建议吗?

0 个答案:

没有答案