Can now successfully act on reminders.

This commit is contained in:
James Cole
2015-03-08 20:20:58 +01:00
parent d9028ed9b7
commit 5218443678
7 changed files with 30 additions and 6 deletions

View File

@@ -35,6 +35,7 @@ class JournalFormRequest extends Request
'what' => 'required|in:withdrawal,deposit,transfer|exists:transaction_types,type',
'amount' => 'numeric|required|min:0.01',
'date' => 'required|date',
'reminder_id' => 'numeric|exists:reminders,id',
'amount_currency_id' => 'required|exists:transaction_currencies,id',
];