Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spatie/laravel-multitenancy
Make your Laravel app usable by multiple tenants
https://github.com/spatie/laravel-multitenancy
laravel multitenancy php
Last synced: 3 months ago
JSON representation
Make your Laravel app usable by multiple tenants
- Host: GitHub
- URL: https://github.com/spatie/laravel-multitenancy
- Owner: spatie
- License: mit
- Created: 2020-04-29T18:53:51.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-07-30T11:00:07.000Z (3 months ago)
- Last Synced: 2024-07-30T12:59:08.132Z (3 months ago)
- Topics: laravel, multitenancy, php
- Language: PHP
- Homepage: https://spatie.be/docs/laravel-multitenancy
- Size: 533 KB
- Stars: 1,059
- Watchers: 27
- Forks: 152
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Support: docs/support-us.md
Awesome Lists containing this project
- awesome - spatie/laravel-multitenancy - Make your Laravel app usable by multiple tenants (PHP)
README
# An unopinionated multitenancy package for Laravel apps
[![Latest Version on Packagist](https://img.shields.io/packagist/v/spatie/laravel-multitenancy.svg?style=flat-square)](https://packagist.org/packages/spatie/laravel-multitenancy)
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/spatie/laravel-multitenancy/run-tests.yml?branch=main&label=Tests&style=flat-square)](https://github.com/spatie/laravel-multitenancy/actions?query=workflow%3Arun-tests+branch%3Amain)
[![Total Downloads](https://img.shields.io/packagist/dt/spatie/laravel-multitenancy.svg?style=flat-square)](https://packagist.org/packages/spatie/laravel-multitenancy)This package can make a 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 switching the current tenant to another one. It works for multitenancy projects that need to use one or multiple databases.
Before starting with the package, we highly recommend first watching [this talk by Tom Schlick on multitenancy strategies](https://tomschlick.com/laracon-2017-multi-tenancy-talk/).
The package contains a lot of niceties such as making queued jobs tenant aware, making an artisan command run for each tenant, an easy way to set a connection on a model, and much more.
Are you a visual learner? Then watch [this video](https://spatie.be/videos/laravel-package-training/laravel-multitenancy) that covers how you can use laravel-multitenancy and how it works under the hood.
## Support us
[](https://spatie.be/github-ad-click/laravel-multitenancy)
We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us).
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards).
## Documentation
You can find the entire documentation for this package [on our documentation site](https://docs.spatie.be/laravel-multitenancy).
## Testing
You'll need to create the following 3 local MySql databases to be able to run the test suite:
- `laravel_mt_landlord`
- `laravel_mt_tenant_1`
- `laravel_mt_tenant_2`You can run the package's tests:
``` bash
composer test
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](https://github.com/spatie/.github/blob/main/CONTRIBUTING.md) for details.
## Security
If you've found a bug regarding security please mail [[email protected]](mailto:[email protected]) instead of using the issue tracker.
## Credits
The code of this package is based on the code shown in [the Multitenancy in Laravel series](https://www.youtube.com/watch?v=592EgykFOz4) by Mohamed Said
- [Freek Van der Herten](https://github.com/freekmurze)
- [All Contributors](../../contributors)## Alternatives
- [tenancy/tenancy](https://tenancy.dev)
- [stancl/tenancy](https://tenancyforlaravel.com)
- [gecche/laravel-multidomain](https://github.com/gecche/laravel-multidomain)
- [romegadigital/multitenancy](https://github.com/romegasoftware/multitenancy)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.