
Trigger hint action on hover
- Published: 25 Mar 2024 Updated: 04 May 2024
toggle the visibility of an action when hover the component

1Grid::make()
2 ->extraAttributes([
3 'class' => 'group',
4 ])
5 ->schema([
6 TextInput::make('name')
7 ->extraInputAttributes([
8 'class' => 'group',
9 ])
10 ->hintAction(
11 Action::make('copy')
12 ->extraAttributes([
13 'class' => 'bord hidden group-hover:block',
14 ]),
15 ),
16]),

Related Tricks:
toggle the visibility of an action when hover the component
make all Field or any components translatable
Sometimes, when we need to test our application locally, we always have to fill forms manually. Let's take the Filament approach and achieve this with more accurate data.
I’ll guide you on how to test your Form Builder using Livewire Volt with a class-based component.
Form Builder lets you build dynamic, versioned forms in Filament and attach them to any model. Responses are stored in JSON with zero boilerplate.