->beforeFormFilled(
function ($livewire) {
$livewire->mountedTableActionsData[0]['action_type'] = 'test';
}
)
->form([
Forms\Components\TextInput::make('whatever')
->default(
fn (Get $get) => $get('action_type')
),
])
->beforeFormFilled(
function ($livewire) {
$livewire->mountedTableActionsData[0]['action_type'] = 'test';
}
)
->form([
Forms\Components\TextInput::make('whatever')
->default(
fn (Get $get) => $get('action_type')
),
])