Increase max depreciation months

This commit is contained in:
snipe 2017-02-21 15:39:39 -08:00
parent edf36cd850
commit f520eaa6ce

View file

@ -11,7 +11,7 @@ class Depreciation extends SnipeModel
// Declare the rules for the form validation
protected $rules = array(
'name' => 'required|min:3|max:255|unique:depreciations,name',
'months' => 'required|max:240|integer',
'months' => 'required|max:3600|integer',
);
/**