Making Laravel apps tenant aware using laravel-multitenancy

The laravel-multitenancy package can make any Laravel app tenant aware. The philosophy of this package is that it should only provide the bare essentials to enable multitenancy. The package can determine which tenant should be the current tenant for the request. It also allows you to define what should happen when making a tenant the current one. It works for multitenancy projects that need to use one or multiple databases.
Back to Top