@props([ 'column', 'isClickDisabled' => false, 'record', 'recordAction' => null, 'recordKey' => null, 'recordUrl' => null, ]) @php $action = $column->getAction(); $name = $column->getName(); $shouldOpenUrlInNewTab = $column->shouldOpenUrlInNewTab(); $tooltip = $column->getTooltip(); $url = $column->getUrl(); $columnClasses = \Illuminate\Support\Arr::toCssClasses([ 'flex w-full', match ($column->getAlignment()) { 'center' => 'justify-center text-center', 'end' => 'justify-end text-end', 'left' => 'justify-start text-left', 'right' => 'justify-end text-right', 'justify' => 'justify-between text-justify', default => 'justify-start text-start', }, ]); $slot = $column->viewData(['recordKey' => $recordKey]); @endphp