From 8e638d1cfff812e5dafca73d768aa61ea4b9d587 Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 17 Aug 2020 17:20:59 +0200 Subject: [PATCH] Fix issue with budget limit creation --- app/Http/Controllers/Budget/BudgetLimitController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/Budget/BudgetLimitController.php b/app/Http/Controllers/Budget/BudgetLimitController.php index 5726fab0d5..907ef5b189 100644 --- a/app/Http/Controllers/Budget/BudgetLimitController.php +++ b/app/Http/Controllers/Budget/BudgetLimitController.php @@ -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'), ] );