Skip to content

Commit

Permalink
Increasing base total validation limit for IDR currency (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
mchev committed Jun 5, 2024
1 parent 96e2f6c commit bf5a8cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Http/Requests/EstimatesRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function rules(): array
'total' => [
'integer',
'numeric',
'max:99999999',
'max:999999999999',
'required',
],
'tax' => [
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Requests/InvoicesRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function rules(): array
'total' => [
'integer',
'numeric',
'max:99999999',
'max:999999999999',
'required',
],
'tax' => [
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Requests/RecurringInvoiceRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function rules(): array
'total' => [
'integer',
'numeric',
'max:99999999',
'max:999999999999',
'required',
],
'tax' => [
Expand Down

0 comments on commit bf5a8cd

Please sign in to comment.