@php $show_columns = $tables[$t]['show_columns']??[]; @endphp
@for($i=0; $i < 10; $i++)
@if(!$show_columns || in_array($i,$show_columns))
{{Label::labelToLocal($tables[$t]['data'][0]['c'.$i]??null)}}
|
@endif
@endfor
@foreach($tables[$t]['data']??[] as $line => $data)
@if($line != '0')
@for($i=0; $i < 10; $i++)
@if(!$show_columns || in_array($i,$show_columns))
{{Label::labelToLocal($data['c'.$i]??null) }}
|
@endif
@endfor
@endif
@endforeach