Level 33
Hello @talentedaamer
try this
Route::domain('{account}.myapp.com')->group(function () {
Route::get('user/{id}', function ($account, $id) {
//
});
});
see the route documentation
https://laravel.com/docs/5.7/routing#route-group-sub-domain-routing
1 like