This package allows for multi tenancy websites on one installation of Laravel.
The goals for this and its related packages are:
- Unobtrusive multi tenancy for Laravel.
- Provide proper insight into tenants and webserver.
- Powerful, but flexible for developers, use it the way you want.
Referring to wikipedia;
Multitenancy refers to a software architecture in which a single instance of a software runs on a server and serves multiple tenants.
In its most abstract sense you can use this package to manage multiple websites with only one application installation.
- Multiple websites running on one code base.
- Multiple hostnames configured per website.
Each website has its own folder on disk, allowing:
- seperation of routes, templates, translations etc
- custom files (media, themes and packages)
Also each website has its own database, this ensures that in no way one website can access data from another website. The distinction also gives proper division of responsibilities to the system (global) and tenant (local) databases.
For more information visit the documentation.
One website running on the multi tenant installation of hyn.me is dummy.hyn.me, you can review the code on github.com/hyn/dummy-tenant-website.
- For priority bug reports, please contact me directly on gitter.im/luceos.
- The package chat can be found at gitter.im/hyn/multi-tenant.
- A support forum will be made available in the future.
Please visit the FAQ in the documentation.