@endif
@php
/**
* @var array $column
*/
/**
* @var string $property - name of property of loop object used to index the columns.
* When select checkbox is present, indexing from 0 is not correct, so "iteration" (starting from 1)
* will be used instead.
*/
$property = ($selectRows ?? false) ? 'iteration' : 'index'
@endphp
@foreach($setupColumns as $column)