<td class="{{ $this->cellClasses($row, $column) }}">
    @if($column['hidden'])
        @if($hideable === 'inline')
            <div class=" @unless($column['wrappable']) whitespace-nowrap truncate @endunless overflow-hidden align-top"></div>
        @endif
    
    @elseif($column['type'] === 'label')
        @include('components.datatable.label')
    @else
        {{--<div class=" @unless($column['wrappable']) whitespace-nowrap truncate @endunless @if($column['contentAlign'] === 'right') text-right @elseif($column['contentAlign'] === 'center') text-center @else text-left @endif {{ $this->cellClasses($row, $column) }}">--}}
            {!! $row->{$column['name']} !!}
        {{--</div>--}}
    @endif
</td>