multi-tenant
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
__Description of your feature__ I'm using this package for developing SaaS app, but the app should be run on AWS cloud infrastructure. i would like to configure AWS redis cache,...
Do we have the support for Amazon S3 for this package? I have been trying toe filesystem for this package and documentation is very hard to understand for the things.
We are running into a scaling issue using tenancy:migrate at the moment. The problem is that the tenant connections are not purged correctly. We have now 400+ tenants and our...
__Description__ I try to disable `auto-create-tenant-database` so i could create it later manually (and as a part of my testing), but when I try to seed it, it gave me...
Greetings! I have issues creating new tenant websites due to database login errors on my docker environment (MariaDB 10.3 + PHP 7.3 + Apache 2.4). During the tenant database &...
__Description__ Hi, this is my situation. I'm trying to use MSSQL for which I wrote a custom driver as indicated in this PR: #627 I can correctly create a tenant...
I currently use the tenancy package on Laravel 6.0 with Mysql 8.0. However, the database user is created with sha_2 password. Is there a way to specify the password type...
__Description__ Setting up a tenant APP with fallback domain. `My regular routes: ` ``` Route::group([ 'middleware' => ['web'], 'domain' => config('tenancy.hostname.default'), ], function () { Route::get('teste1', 'TestController@index'); Route::get('teste2', 'TestController@index'); });...
Related to PR #598, would to request a feature to register custom migration path but via runtime. ATM, my work around is via custom registrar class. ```php namespace App\Services; class...
is there any way to make jobs use tenants database ? because jobs by default use system database i am in system database as admin and i wanna to fire...