Merge pull request #1765 from mconway/develop

Update PiggyBankRequest.php
This commit is contained in:
James Cole 2018-10-04 20:08:57 +02:00 committed by GitHub
commit 07382d5c6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,8 +58,8 @@ class PiggyBankRequest extends Request
'account_id' => $this->integer('account_id'), 'account_id' => $this->integer('account_id'),
'targetamount' => $this->string('target_amount'), 'targetamount' => $this->string('target_amount'),
'current_amount' => $current, 'current_amount' => $current,
'start_date' => $this->date('start_date'), 'startdate' => $this->date('start_date'),
'target_date' => $this->date('target_date'), 'targetdate' => $this->date('target_date'),
'notes' => $this->string('notes'), 'notes' => $this->string('notes'),
]; ];
} }