Added maxlength="10"

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe
2023-04-12 08:26:36 -07:00
parent 04f83d34ff
commit 74babfa081
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -49,9 +49,9 @@ class License extends Depreciable
'category_id' => 'required|exists:categories,id',
'company_id' => 'integer|nullable',
'purchase_cost'=> 'numeric|nullable|gte:0',
'purchase_date' => 'date_format:Y-m-d|nullable',
'expiration_date' => 'date_format:Y-m-d|nullable',
'termination_date' => 'date_format:Y-m-d|nullable',
'purchase_date' => 'date_format:Y-m-d|nullable|max:10',
'expiration_date' => 'date_format:Y-m-d|nullable|max:10',
'termination_date' => 'date_format:Y-m-d|nullable|max:10',
];
/**