https://github.com/rxcod9/joy-voyager-multi-tenant
Joy Voyager Multi Tenant shows integration of multi tenancy with Voyager.
https://github.com/rxcod9/joy-voyager-multi-tenant
laravel multi-tenancy multi-tenant multitenancy multitenant voyager
Last synced: 6 months ago
JSON representation
Joy Voyager Multi Tenant shows integration of multi tenancy with Voyager.
- Host: GitHub
- URL: https://github.com/rxcod9/joy-voyager-multi-tenant
- Owner: rxcod9
- Created: 2022-12-09T08:30:12.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-11-19T00:31:04.000Z (7 months ago)
- Last Synced: 2025-11-22T00:03:18.761Z (7 months ago)
- Topics: laravel, multi-tenancy, multi-tenant, multitenancy, multitenant, voyager
- Language: JavaScript
- Homepage: https://joy-voyager-multi-tenant.kodmonk.com
- Size: 6.39 MB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
[](https://github.com/rxcod9/joy-voyager-multi-tenant/releases)

[](https://packagist.org/packages/joy/voyager-multi-tenant)
# **Joy Voyager Multi Tenant**
By 🐼 [Ramakant Gangwar](https://github.com/rxcod9)
Laravel Admin & BREAD System with Multi tenant support
## Working Example
You can try demo here
Central Admin [https://joy-voyager-multi-tenant.kodmonk.com](https://joy-voyager-multi-tenant.kodmonk.com)
Domain 1 Tenant 1 Admin [https://domain-1-tenant-1.kodmonk.com](https://domain-1-tenant-1.kodmonk.com)
Domain 2 Tenant 1 Admin [https://domain-2-tenant-1.kodmonk.com](https://domain-2-tenant-1.kodmonk.com)
Domain 1 Tenant 2 Admin [https://domain-1-tenant-2.kodmonk.com](https://domain-1-tenant-2.kodmonk.com)
Domain 2 Tenant 2 Admin [https://domain-2-tenant-2.kodmonk.com](https://domain-2-tenant-2.kodmonk.com)
## Installation Steps
### 1. Clone repo/Install Using Composer
You can clone/install the `Joy Voyager Multi Tenant` with the following commands:
```bash
git clone git@github.com:rxcod9/joy-voyager-multi-tenant.git
cd joy-voyager-multi-tenant
# OR Install using composer
composer create-project joy/voyager-multi-tenant
cd voyager-multi-tenant
```
### 2. Add the DB Credentials & APP_URL
Next make sure to create a new database and add your database credentials to your .env file:
```
DB_HOST=localhost
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
```
You will also want to update your website URL inside of the `APP_URL` variable inside the .env file:
```
APP_URL=http://localhost
APP_CENTRAL_HOST=localhost
```
### 3. Run The Installer
To install simply run
```bash
./vendor/bin/sail up -d
chmod +x sail-rebuild.sh
. ./sail-rebuild.sh
```
And we're all good to go!
And, visit
[http://localhost/admin](http://localhost/admin)
[http://domain-1-tenant-1.localhost/admin](http://domain-1-tenant-1.localhost/admin)
[http://domain-2-tenant-1.localhost/admin](http://domain-2-tenant-1.localhost/admin)
[http://domain-1-tenant-2.localhost/admin](http://domain-1-tenant-2.localhost/admin)
[http://domain-2-tenant-2.localhost/admin](http://domain-2-tenant-2.localhost/admin).