Fix issue with budget limit creation

This commit is contained in:
James Cole 2020-08-17 17:20:59 +02:00
parent 1b17d53d65
commit 8e638d1cff
No known key found for this signature in database
GPG Key ID: B5669F9493CDE38D

View File

@ -156,8 +156,8 @@ class BudgetLimitController extends Controller
[
'budget_id' => $request->get('budget_id'),
'transaction_currency_id' => $request->get('transaction_currency_id'),
'start_date' => $request->get('start'),
'end_date' => $request->get('end'),
'start_date' => $start,
'end_date' => $end,
'amount' => $request->get('amount'),
]
);