I'd perhaps change your profile route to
Route::get('/{name}', ['uses' => 'Frontend\ProvidersController@profile']);
I've tested this and appears to work fine
I Have a route that finds a user's profile for example (example.com/northplanet) it works fine but the routes below it are ignored how do a fix this for example this doestn work Route::get('password/forgot', 'Auth\PasswordController@getEmail'); Route::get('/{url}', ['uses' => 'Frontend\ProvidersController@profile']);
Please or to participate in this conversation.