- Added `ConnectedAppData` DTO for structured data representation. - Implemented Livewire components for ConnectedApp list (`index`) and edit (`edit`). - Integrated `ConnectedAppService` with CRUD operations. - Updated routing to include ConnectedApp management paths. - Enhanced UI with reusable components and dynamic dropdowns for protocols, providers, and statuses.
12 lines
448 B
Markdown
12 lines
448 B
Markdown
All the forms used in the application are stored here.
|
|
|
|
Each form should validate the data before sending it to the server.
|
|
This is done by using the `validate` method.
|
|
|
|
Validations that require the db, should not be live (realtime),
|
|
they should be done on the only once, preferably after the form is submitted.
|
|
|
|
Forms should not be used to create, update or any database operation.
|
|
|
|
Livewire form docs: https://livewire.laravel.com/docs/4.x/forms
|