i want to make a website that each user have own subdomain in my site. but beside that, i need subdomain for manage my website.
so, what i need is:
mysite.com ---> main web
admin.mysite.com ---> for administrator my web
blog.mysite.com ---> for artikel my web
member.mysite.com ---> for main account
*.mysite.com ---> for users
im using laravel 5.4 so, how i can write on my route?
Route::group(array('domain' => '{subdomain}.mysite.com'), function() {
//
});
thanks before.