@props([
'id' => 'column-visibility',
'label' => 'Kolumny',
'columns' => [],
'buttonClass' => 'btn btn_table_status new-btn-border-1',
'iconClass' => 'fas fa-columns',
'counter' => true,
])
Przeciągnij, aby zmienić kolejność kolumn.
@foreach($columns as $column)
@php
$colKey = $column['key'] ?? '';
$colLabel = $column['label'] ?? $colKey;
$checked = array_key_exists('checked', $column) ? (bool) $column['checked'] : true;
$disabled = array_key_exists('disabled', $column) ? (bool) $column['disabled'] : false;
@endphp
@if($colKey !== '')
@endif
@endforeach