File: //home/posscale/www/printmanager/storage/framework/views/026dd26a1c4a013c7a2f2fd338c5780f.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'])); ?>
>
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php 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.stop.prevent="<?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; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
</div>
<?php /**PATH /home/posscale/public_html/printmanager/vendor/filament/tables/resources/views/components/columns/column.blade.php ENDPATH**/ ?>