Add breadcrumbs to custom page
getBreadcrumbs
from Filament\Resources\Pages\Page
to return an array with url as key and label as valueMulti record form
Enums for datalist attribute values
->datalist(fn() => collect(Status::cases())->mapWithKeys(fn ($case) => [$case->value => $case->label()]))
->datalist(fn() => collect(Status::cases())->mapWithKeys(fn ($case) => [$case->value => $case->label()]))
How to make password text input copyable?
2 step auth with code recovery v4

Filament's Export function creating duplicates.
Builder - disable delete action on some items (default items)
Table recordActions / Action condition
deleteAction
, if $record->is_default
then deleteAction
button is not available. But on V4 it doesn't work properly. Is this a bug issue?
```php
...
->recordActions([...
Issue with table, on load both the filter modal and grouped actions dropdown open

Form actions in custom Login page
Column Spans On Form within Grid

RelationManger `save` isn't working
bg-[color] not applying
I Can't Install filament v4 beta
The "4.0" constraint for "filament/filament" appears too strict and will likely not match what you want. See https://getcomposer.org/constraints ./composer.json has been updated Running composer update filament/filament Loading composer repositories with package information...
composer require filament/filament:~4.0
composer require filament/filament:~4.0
Grid and Columns in v4
->columns(3)
on the Form itself.
Can I change this '+' sign to 'add new' in createOptionForm() of Select

Select multiple - fill
Image Not Displaying in Edit Form

Custom colors
Dynamic Form fields (Something like Google Forms) -> is it possible/practical?