= fd57ac57e1 Feat: refactor app role duration to validity date
- Replaced `duration` (integer, days) with `validUpto` (datetime) in role-app assignments.
- Updated `AssignAppsToRoleData`, `AppRole` model, and Livewire forms to adopt the new `validUpto` field.
- Adjusted database migrations and UI components to reflect the change in validity representation.
- Enhanced validity date inputs with support for "Unlimited" roles using toggles.
2026-05-21 06:38:05 +00:00
..

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