예제 #1
0
Route::get('search/{any}', 'HomeController@simpleSearch');
//search
// Route::get('howitworks', 'HowitworksController@show');
// 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
|--------------------------------------------------------------------------
|