This is my routing file:
Route::group( array('domain' => DOMAIN_NAME), function () { Route::get('/', array('uses' => 'coin@index'))->middleware('throttle:6'); Route::get('/generate', array('uses' => 'generate@index'))->middleware('throttle:6'); } );
Main site works but generate not, and every other address than / not works.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community