OwlCyberSecurity - MANAGER
Edit File: 99d3a3d8c03f010e6c37b810317b98a0.php
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag; ?> <?php foreach($attributes->onlyProps([ 'column', 'isClickDisabled' => false, 'record', 'recordAction' => null, 'recordKey' => null, 'recordUrl' => null, 'shouldOpenRecordUrlInNewTab' => false, ]) as $__key => $__value) { $$__key = $$__key ?? $__value; } ?> <?php $attributes = $attributes->exceptProps([ 'column', 'isClickDisabled' => false, 'record', 'recordAction' => null, 'recordKey' => null, 'recordUrl' => null, 'shouldOpenRecordUrlInNewTab' => false, ]); ?> <?php foreach (array_filter(([ 'column', 'isClickDisabled' => false, 'record', 'recordAction' => null, 'recordKey' => null, 'recordUrl' => null, 'shouldOpenRecordUrlInNewTab' => false, ]), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) { $$__key = $$__key ?? $__value; } ?> <?php $__defined_vars = get_defined_vars(); ?> <?php foreach ($attributes as $__key => $__value) { if (array_key_exists($__key, $__defined_vars)) unset($$__key); } ?> <?php unset($__defined_vars); ?> <?php use Filament\Support\Enums\Alignment; $action = $column->getAction(); $alignment = $column->getAlignment() ?? Alignment::Start; $name = $column->getName(); $shouldOpenUrlInNewTab = $column->shouldOpenUrlInNewTab(); $tooltip = $column->getTooltip(); $url = $column->getUrl(); if (! $alignment instanceof Alignment) { $alignment = filled($alignment) ? (Alignment::tryFrom($alignment) ?? $alignment) : null; } $columnClasses = \Illuminate\Support\Arr::toCssClasses([ 'flex w-full disabled:pointer-events-none', match ($alignment) { Alignment::Start => 'justify-start text-start', Alignment::Center => 'justify-center text-center', Alignment::End => 'justify-end text-end', Alignment::Left => 'justify-start text-left', Alignment::Right => 'justify-end text-right', Alignment::Justify, Alignment::Between => 'justify-between text-justify', default => $alignment, }, ]); $slot = $column->viewData(['recordKey' => $recordKey]); ?> <div <?php if(filled($tooltip)): ?> x-data="{}" x-tooltip="{ content: <?php echo \Illuminate\Support\Js::from($tooltip)->toHtml() ?>, theme: $store.theme, }" <?php endif; ?> <?php echo e($attributes->class(['fi-ta-col-wrp'])); ?> > <!--[if BLOCK]><![endif]--><?php if(($url || ($recordUrl && $action === null)) && (! $isClickDisabled)): ?> <a <?php echo e(\Filament\Support\generate_href_html($url ?: $recordUrl, $url ? $shouldOpenUrlInNewTab : $shouldOpenRecordUrlInNewTab)); ?> class="<?php echo e($columnClasses); ?>" > <?php echo e($slot); ?> </a> <?php elseif(($action || $recordAction) && (! $isClickDisabled)): ?> <?php if ($action instanceof \Filament\Tables\Actions\Action) { $wireClickAction = "mountTableAction('{$action->getName()}', '{$recordKey}')"; } elseif ($action) { $wireClickAction = "callTableColumnAction('{$name}', '{$recordKey}')"; } else { if ($this->getTable()->getAction($recordAction)) { $wireClickAction = "mountTableAction('{$recordAction}', '{$recordKey}')"; } else { $wireClickAction = "{$recordAction}('{$recordKey}')"; } } ?> <button type="button" wire:click="<?php echo e($wireClickAction); ?>" wire:loading.attr="disabled" wire:target="<?php echo e($wireClickAction); ?>" class="<?php echo e($columnClasses); ?>" > <?php echo e($slot); ?> </button> <?php else: ?> <div class="<?php echo e($columnClasses); ?>"> <?php echo e($slot); ?> </div> <?php endif; ?><!--[if ENDBLOCK]><![endif]--> </div> <?php /**PATH /var/www/back/vendor/filament/tables/src/../resources/views/components/columns/column.blade.php ENDPATH**/ ?>