Skip to content

Commit

Permalink
Fix #1670
Browse files Browse the repository at this point in the history
  • Loading branch information
JC5 committed Sep 9, 2018
1 parent d4b82a3 commit 38d58f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Api/V1/Requests/PiggyBankRequest.php
Expand Up @@ -77,7 +77,7 @@ public function rules(): array
'target_amount' => 'required|numeric|more:0',
'current_amount' => 'numeric|more:0|lte:target_amount',
'start_date' => 'date|nullable',
'target_date' => 'date|nullable',
'target_date' => 'date|nullable|after:start_date',
'notes' => 'max:65000',
];

Expand Down

0 comments on commit 38d58f0

Please sign in to comment.