adds help texts

This commit is contained in:
2026-02-16 16:00:16 +01:00
parent 514f1cb483
commit 78c51d55b5
9 changed files with 95 additions and 46 deletions

View File

@@ -72,12 +72,14 @@ public function fields(NovaRequest $request): array
->sortable()
->filterable()
->copyable()
->help('The name of this assessment category, such as Audit, Tax, or Legal.')
->rules('required', 'max:255'),
Number::make('Sort Order')
->sortable()
->filterable()
->copyable()
->help('Controls the display order of categories. Lower numbers appear first.')
->rules('required', 'integer'),
HasMany::make('Question Groups', 'questionGroups', QuestionGroupResource::class),