Some changes in the charts and range thing.

This commit is contained in:
James Cole
2014-07-08 07:51:25 +02:00
parent c7d3ef6a97
commit 5e8cfb512b
7 changed files with 96 additions and 11 deletions

View File

@@ -6,7 +6,7 @@ Route::group(['before' => 'auth'], function () {
Route::get('/', ['uses' => 'HomeController@index', 'as' => 'index']);
// chart controller
Route::get('/chart/home/{account?}', ['uses' => 'ChartController@home', 'as' => 'chart.home']);
Route::get('/chart/home/account/{account?}', ['uses' => 'ChartController@homeAccount', 'as' => 'chart.home']);
// preferences controller
Route::get('/preferences', ['uses' => 'PreferencesController@index', 'as' => 'preferences']);