Add pilots list page; fix gravatar display and pilot profile #82

This commit is contained in:
Nabeel Shahzad
2018-01-19 17:07:31 -05:00
parent f58b01f3ea
commit 3a02a77eba
13 changed files with 204 additions and 102 deletions

View File

@@ -11,6 +11,9 @@ Route::group([
Route::get('r/{id}', 'PirepController@show')->name('pirep.show.public');
Route::get('p/{id}', 'ProfileController@show')->name('profile.show.public');
Route::get('users', 'UserController@index')->name('users.show');
Route::get('pilots', 'UserController@index')->name('users.show');
Route::get('livemap', 'AcarsController@index')->name('livemap.public');
});