add some test

This commit is contained in:
Romulus21
2024-04-01 19:47:15 +02:00
parent 8fcf3dd680
commit 1065da076d
7 changed files with 102 additions and 14 deletions

View File

@@ -23,7 +23,7 @@ class ToDoRequest extends FormRequest
{
return [
'name' => ['string', 'min:3', 'max:255'],
'description' => ['string', 'max:2000'],
'description' => ['nullable', 'string', 'max:2000'],
'checked' => ['nullable', 'bool'],
];
}