Bumped max for country on model

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe
2021-05-07 16:42:26 -07:00
parent 2dcb50d28e
commit a704614397
+1 -1
View File
@@ -23,7 +23,7 @@ class Location extends SnipeModel
protected $rules = array(
'name' => 'required|min:2|max:255|unique_undeleted',
'city' => 'min:2|max:255|nullable',
'country' => 'min:2|max:2|nullable',
'country' => 'min:2|max:255|nullable',
'address' => 'max:80|nullable',
'address2' => 'max:80|nullable',
'zip' => 'min:3|max:10|nullable',