我试图自定义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'] }}
无效。
有什么建议吗?