Load username PrimaryKey in url?

0

Good evening.

I have a simple question, I am trying to list a list of variables from a MYSQL bd using its first and key.

So far so easy, the complicated thing is that my route is like this

projectName.com/primaryKey

But I want it to be like that

primaryKey.projectName.com

There is or know of some way to achieve this

    
asked by Alejo Florez 21.12.2017 в 02:24
source

1 answer

1

For these details, laravel has Sub-Domain Routing which does the routing to subdomains, Ahem

Route::domain('{primaryKey}.myapp.com')->group(function () {
    /**  Defines tus demás rutas**/
});
    
answered by 19.01.2018 / 00:33
source