You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default values don't come up, and neither does the current tenant. To remedy this, I manually inject ($form->fill()) the default data and the primary key of the tenant.
protectedfunctionheaderActions(): array
{
return [
Actions\CreateAction::make()
->mountUsing(function (Form$form, array$arguments) {}) # works well if comment this
->slideOver(),
];
}
publicfunctiongetFormSchema(): array
{
return [
TextInput::make('test')
->default('hello world') # this not appear
];
}
The text was updated successfully, but these errors were encountered:
Hi 👋
I'm not sure if this is a package issue.
The default values don't come up, and neither does the current tenant. To remedy this, I manually inject (
$form->fill()
) the default data and the primary key of the tenant.The text was updated successfully, but these errors were encountered: