How to add tooltip to CheckboxList component
Hi, is there a method to add tooltip to a CheckboxList component?
->tooltip(function (Tables\Columns\CheckboxColumn $column): ?string {
$state = $column->getState();
if ($state) {
return 'In stock';
}
return 'Out of stock';
})