Method Filament\Forms\Components\CheckboxList::allowHtml does not exist.

It's literally on the docs https://filamentphp.com/docs/3.x/forms/fields/checkbox-list

use Filament\Forms\Components\CheckboxList;

CheckboxList::make('technology')
    ->options([
        'tailwind' => '<span class="text-blue-500">Tailwind</span>',
        'alpine' => '<span class="text-green-500">Alpine</span>',
        'laravel' => '<span class="text-red-500">Laravel</span>',
        'livewire' => '<span class="text-pink-500">Livewire</span>',
    ])
    ->searchable()
    ->allowHtml()
Solution
Ahhh, i did composer update and it worked.
Was this page helpful?