From cec1b147f2d79c81c7ea8105a8af265f65991610 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 26 Dec 2015 08:23:52 +0100 Subject: [PATCH] #135 --- app/Http/Requests/JournalFormRequest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Requests/JournalFormRequest.php b/app/Http/Requests/JournalFormRequest.php index 79dea6d0cb..141bb78f3e 100644 --- a/app/Http/Requests/JournalFormRequest.php +++ b/app/Http/Requests/JournalFormRequest.php @@ -40,7 +40,7 @@ class JournalFormRequest extends Request 'revenue_account' => $this->get('revenue_account'), 'amount' => round($this->get('amount'), 2), 'user' => Auth::user()->id, - 'amount_currency_id_amount' => intval($this->get('amount_currency_id')), + 'amount_currency_id_amount' => intval($this->get('amount_currency_id_amount')), 'date' => new Carbon($this->get('date')), 'budget_id' => intval($this->get('budget_id')), 'category' => $this->get('category'),