i jump into other forms when i click next button #14794
Unanswered
Jericho2525
asked this question in
Help
Replies: 1 comment 1 reply
-
What is the issue? Could you explain please? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
public static function form(Form $form): Form
{
if(request()->route()->getName() == 'filament.admin.resources.applications.create_business'){
return $form
->schema(self::businessForm())->columns(1);
}else{
return $form
->schema(self::individualForm())->columns(1);
}
}
Beta Was this translation helpful? Give feedback.
All reactions