#21 PIREP submit form first pass

This commit is contained in:
Nabeel Shahzad
2017-08-16 18:18:47 -05:00
parent 09502153ed
commit f739cd0a67
5 changed files with 172 additions and 7 deletions

View File

@@ -8,8 +8,8 @@ Route::get('/', 'HomeController@index');
Route::group([
'namespace' => 'Frontend', 'prefix' => '', 'as' => 'frontend.'
], function() {
Route::get('/pireps/{id}', 'PirepController@show');
Route::get('/profile/{id}', 'ProfileController@show');
Route::get('/r/{id}', 'PirepController@show');
Route::get('/p/{id}', 'ProfileController@show');
});
/**