Skip to content

Commit

Permalink
fix minimum total issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvbhattt committed Aug 26, 2023
1 parent f11437c commit 0dc8941
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion app/Http/Requests/EstimatesRequest.php
Expand Up @@ -59,7 +59,6 @@ public function rules()
'total' => [
'integer',
'numeric',
'min:50',
'max:99999999',
'required',
],
Expand Down
1 change: 0 additions & 1 deletion app/Http/Requests/InvoicesRequest.php
Expand Up @@ -59,7 +59,6 @@ public function rules()
'total' => [
'integer',
'numeric',
'min:50',
'max:99999999',
'required',
],
Expand Down
1 change: 0 additions & 1 deletion app/Http/Requests/RecurringInvoiceRequest.php
Expand Up @@ -57,7 +57,6 @@ public function rules()
'total' => [
'integer',
'numeric',
'min:50',
'max:99999999',
'required',
],
Expand Down

0 comments on commit 0dc8941

Please sign in to comment.