From b2cbadf5d84419f081969ea6ddb021cd4166b8b6 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 25 Jan 2015 10:06:31 +0100 Subject: [PATCH] New chart route. --- app/routes.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/routes.php b/app/routes.php index 765370890b..1f534f5811 100644 --- a/app/routes.php +++ b/app/routes.php @@ -227,6 +227,7 @@ Route::group( // google chart for components (categories + budgets combined) Route::get('/chart/budget/{budget}/spending/{year?}', ['uses' => 'GoogleChartController@budgetsAndSpending']); + Route::get('/chart/budgets/spending/{year?}', ['uses' => 'GoogleChartController@allBudgetsAndSpending']); Route::get('/chart/budget/{budget}/{limitrepetition}', ['uses' => 'GoogleChartController@budgetLimitSpending']); Route::get('/chart/category/{category}/spending/{year}', ['uses' => 'GoogleChartController@categoriesAndSpending']);