Your experience on this site will be improved by allowing cookies.

Laravel subdomain
Megtekintés: 53
Laravel WebServer

Laravel subdomain kezelés Route::domain('blog.' . env('APP_URL'))->group(function () { Route::get('posts', function () { return 'Second subdomain landing page'; }); Route::get('post/{id}', function ($id) { return 'Post ' . $id . ' in second subdomain'; }); }); http://www.axertion.com/tutorials/2012/03/how-to-setup-local-subdomains-using-wampserver/ https://www.freecodecamp.org/news/laravel-subdomians/


Hozzászólások