subdomain issue on laravel project -- 2
Budget: ₹600 – ₹1,500 INR
We have a website on laravel. In routes we have created a route with subdomain as
Route::group(array('domain' => 'company.xyz.com'), function() {
Route::get('company/profile/{slug}', [CompanyController::class, 'companyProfile'])->name('companyProfile');
});
while this is works on locahost (XAMP) it is not working on server.
Route::group(array('domain' => 'company.xyz.com'), function() {
Route::get('company/profile/{slug}', [CompanyController::class, 'companyProfile'])->name('companyProfile');
});
while this is works on locahost (XAMP) it is not working on server.