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
Implement "FormObjects" as central SOA for a form. FormRequestObjects (Rules), HTML and JS are automatically generated to provide a wide set of pre-defined features.
FormObjects are Injected into (both get and post) Controller methods:
In get-method they can be handed over to the view, which can call a generate() on it to generate the actual HTML. JS code is generated automatically with Catch-all function at the end of master template.
In post-methods they function just like FormRequestObjects for validation and provide additional helpers for the controller (e.g. returnSuccess() and returnError() , validation-helpers, etc.).
Artisan Command to generate form-object with boilerplate (e.g. form:create ContactForm).
The text was updated successfully, but these errors were encountered:
Implement "FormObjects" as central SOA for a form. FormRequestObjects (Rules), HTML and JS are automatically generated to provide a wide set of pre-defined features.
FormObjects are Injected into (both get and post) Controller methods:
In get-method they can be handed over to the view, which can call a generate() on it to generate the actual HTML. JS code is generated automatically with Catch-all function at the end of master template.
In post-methods they function just like FormRequestObjects for validation and provide additional helpers for the controller (e.g. returnSuccess() and returnError() , validation-helpers, etc.).
Artisan Command to generate form-object with boilerplate (e.g. form:create ContactForm).
The text was updated successfully, but these errors were encountered: