From 651101912c6740fad4290476d7fa8157d1238d7b Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 16 Nov 2014 20:05:03 +0100 Subject: [PATCH] Route for chart. --- app/routes.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/routes.php b/app/routes.php index 1400d74167..1e1975d34a 100644 --- a/app/routes.php +++ b/app/routes.php @@ -157,6 +157,7 @@ Route::group( Route::get('/chart/recurring/{recurring}', ['uses' => 'GoogleChartController@recurringOverview']); Route::get('/chart/reports/budgets/{year}', ['uses' => 'GoogleChartController@budgetsReportChart']); Route::get('/chart/budget/{budget}/{limitrepetition}', ['uses' => 'GoogleChartController@budgetLimitSpending']); + Route::get('/chart/piggyhistory/{piggybank}',['uses' => 'GoogleChartController@piggyBankHistory']); // google chart for components (categories + budgets combined) Route::get('/chart/component/{component}/spending/{year}', ['uses' => 'GoogleChartController@componentsAndSpending']);