PHP code example of dlimars / laravel-tenant-subdomain
1. Go to this page and download the library: Download dlimars/laravel-tenant-subdomain library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dlimars / laravel-tenant-subdomain example snippets
'providers' => [
// outros providers
Dlimars\Tenant\Providers\TenantServiceProvider::class,
],
'aliases' => [
// outros aliases
'Tenant' => Dlimars\Tenant\Facades\Tenant::class,
]
// Tenant::getDomain() retorna algo como 'domain.com'
Route::group(['domain' => Tenant::getDomain()], function () {
Route::get('domain-teste/{id}', ['as' => 'domain-teste', function($id){
return route('domain-teste', ['123']);
}]);
});
// isso impede que rotas do dominio possam ser acessadas através do subdominio