filipprober/laravel-tenancy

The skeleton application for the Laravel framework.

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 8

Watchers: 2

Forks: 2

Open Issues: 0

Type:project

pkg:composer/filipprober/laravel-tenancy

v1.0.6 2025-09-24 10:17 UTC

This package is auto-updated.

Last update: 2025-10-06 08:25:29 UTC


README

This package allows you to run multiple websites using the same Laravel application while keeping tenant specific data separated for fully independent multi-domain setups.

Installation

Clone down the repository:

git clone https://github.com/filip-codes/laravel-tenancy.git laravel-tenancy

Install the dependencies:

cd laravel-tenancy
composer install
npm install

Copy the .env.example file to .env:

cp .env.example .env

Generate the application key:

php artisan key:generate

Set up your .env file with your database credentials and run php artisan migrate to create all central tables.

Change your central_domain in the config/tenancy.php file.