Convert About page to Laravel (#10551)

* Convert About page to laravel

* clean up callback stuff

* More translatable strings
This commit is contained in:
Jellyfrog
2019-08-24 23:52:10 +02:00
committed by Tony Murray
parent 25ee86c9ad
commit 47e4641e04
12 changed files with 469 additions and 260 deletions

View File

@@ -26,6 +26,7 @@ Route::group(['middleware' => ['auth', '2fa'], 'guard' => 'auth'], function () {
Route::get('locations', 'LocationController@index');
Route::resource('preferences', 'UserPreferencesController', ['only' => ['index', 'store']]);
Route::resource('users', 'UserController');
Route::get('about', 'AboutController@index');
// old route redirects
Route::permanentRedirect('poll-log', 'pollers/tab=log/');