multi-tenant icon indicating copy to clipboard operation
multi-tenant copied to clipboard

Run multiple websites using the same Laravel installation while keeping tenant specific data separated for fully independent multi-domain setups, previously github.com/hyn/multi-tenant

Results 81 multi-tenant issues
Sort by recently updated
recently updated
newest added

We are building a SaaS system where every customer will have access to our system. As soon as the system opens a new account, a subdomain will be created for...

I'm currently working on upgrading my laravel app to run on PHP 8, and I got this error when trying to seed my local DB with some default tenants: ```...

__Description of your feature__ I have a website which is using this tenancy plugins, the portal can accessible both by user and by internal process, the internal process covered with...

__Description__ Retrying failed jobs via "php artisan queue:retry all" results in system database connection being used instead of tenant databse connection. --- __Actual behavior__ Illuminate\Database\QueryException SQLSTATE[42S02]: Base table or view...

__Description__ I am using Pest to make a login test, this involves the creation of a Website at first position as shown in the code below. ```php it('can login', function...

Included for laravel/framework and laravel/laravel to be able to try and test this package on Laravel 11.6.0: |^11.0

Multi tenant route issue my tenant route is: ```php Route::middleware([ 'web', InitializeTenancyByDomain::class, PreventAccessFromCentralDomains::class, ])->group(function () { Route::get('/', function () { return view('tenant.auth.login'); }); Route::middleware('auth')->group(function () { Route::resource('profile',ProfileController::class)->only('index','edit','update'); Route::get('profile/setting',[ProfileController::class,'setting'])->name('profile.setting'); Route::get('profile/change/password',[ProfileController::class,'setting'])->name('profile.change.password'); Route::post('profile/update/password',[ProfileController::class,'setting'])->name('profile.update.password');...

support for laravel 12

Hello, Is there any support for Laravel 11 / 12 in the near future? Thank you!