{{--@elseif($column['type'] === 'checkbox')
        @include('components.datatable.checkbox', ['value' => $row->checkbox_attribute])
--}}

<x-datatable.table.td.plain>
    <input
        type="checkbox"
        wire:model="selected"
        value="{{-- $row->checkbox_attribute --}}"
        @if (property_exists($this, 'pinnedRecords') && in_array($value, $this->pinnedRecords)) checked @endif
        class="dt-checkboxes form-check-input"
    />
</x-datatable.table.td.plain>