close #611 Fixed: Create tax rate not null type.

This commit is contained in:
cuneytsenturk
2018-11-09 12:14:06 +03:00
parent 636afc4565
commit d30fe4da9b
5 changed files with 14 additions and 4 deletions

View File

@ -26,6 +26,8 @@ class Tax extends Request
return [
'name' => 'required|string',
'rate' => 'required|min:0|max:100',
'type' => 'required|string',
'enabled' => 'integer|boolean',
];
}
}