// Route::post('/', function(){ return var_dump(Input::all());}); Route::get('home', 'HomeController@getHome'); Route::get('privacy', function () { return View::make('privacy'); }); Route::get('tos', function () { return View::make('tos'); }); Route::get('contactus', function () { return View::make('contactus'); }); Route::post('contactus', function () { return All::sendEmail(Input::all()); }); Route::post('inquire', function () { return All::inquire(Input::all()); }); //Popup makers //------------------------------------------------------------------------- Route::get('/eventts/createpop', function () { return View::make('eventts/createpop'); }); // Route::get('suppliers', 'SuppliersController@getIndex'); /* |-------------------------------------------------------------------------- | Account Routes |-------------------------------------------------------------------------- | */ # Change Email Route::get('change-email', array('as' => 'change-email', 'uses' => 'AuthorizedController@getChangeEmail'));