Settings can now be updated

This commit is contained in:
James Brooks
2014-12-20 17:50:47 +00:00
parent 39441245b3
commit 77913b59db
4 changed files with 43 additions and 16 deletions
+1
View File
@@ -17,4 +17,5 @@ Route::group(['before' => 'auth', 'prefix' => 'dashboard'], function() {
Route::get('notifications', ['as' => 'dashboard.notifications', 'uses' => 'DashboardController@showNotifications']);
Route::get('status-page', ['as' => 'dashboard.status-page', 'uses' => 'DashboardController@showStatusPage']);
Route::get('settings', ['as' => 'dashboard.settings', 'uses' => 'DashboardController@showSettings']);
Route::post('settings', 'DashboardController@postSettings');
});