Laravel Multi-Tenancy Explained

Implementing Multi-Tenancy

Multi-tenancy in web development means one application can be used by many customers, and each customer’s data and settings are kept separate. It’s like giving each customer their own private version of the application, even though they all use the same basic system. This is often seen in businesses that offer Software as a Service (SaaS), where multiple customers share the same software but have their own individual data and settings.

Advantages of Introducing Multi-Tenancy in Laravel Projects:
  1. Cost Savings: Implementing multi-tenancy in a Laravel project helps bring together numerous tenants into a single application instance, thereby lowering infrastructure and maintenance expenses.
  2. Scalability: The adoption of multi-tenancy facilitates smooth scalability, enabling the accommodation of new tenants without requiring distinct deployments.
  3. Tailored Experience: Each tenant gains the flexibility to have unique configurations, themes, and settings, fostering a personalized user experience.
  4. Data Segregation: The segregation of tenant data guarantees privacy and security by maintaining distinct data repositories for each tenant.
  5. Efficient Updates: Updates and improvements to the application can be seamlessly deployed to all tenants simultaneously, ensuring efficient and synchronized updates.

Understanding the Different Approaches to Multi-Tenancy:

Choosing the appropriate approach depends on factors such as data isolation requirements, scalability needs, and customization options for your Laravel project.

  1. Shared Database Approach: In the shared database approach, all tenants share the same database. A tenant identifier is used to differentiate the data of each tenant within the database. Each table related to tenant-specific data includes a column or field that holds the tenant identifier. This approach is relatively simple to implement, but it requires careful attention to data isolation and security to ensure that tenants cannot access each other’s data.
  2. Separate Database Approach: In the separate database approach, each tenant has its own dedicated database. This provides complete data isolation between tenants, ensuring that each tenant’s data is stored separately. This approach offers the highest level of data security and isolation. However, it requires additional setup and management of multiple databases.
  3. Separate Schema Approach: The separate schema approach allows multiple tenants to share the same database, but each tenant has its own database schema. Schemas provide a logical separation of data within a single database. Each tenant’s data resides in a separate schema, which helps maintain data isolation and allows for efficient management of tenant-specific data. This approach requires support for schema-based tenancy in the database management system.
  4. Sub-Domain Approach: In the sub-domain approach, each tenant is assigned a unique sub-domain of the main application domain. For example, tenant1.example.com and tenant2.example.com. Requests to different sub-domains are routed to the corresponding tenant’s resources, allowing for easy identification and separation of tenant-specific functionality. This approach often requires server configuration and DNS setup to direct sub-domains to the correct application instance.
  5. Sub-Folder Approach: The sub-folder approach involves assigning each tenant a unique sub-folder within the application. For example, example.com/tenant1 and example.com/tenant2. Each sub-folder contains the necessary resources and configurations specific to the corresponding tenant. This approach allows for easy organization and separation of tenant-specific data and functionality. However, it requires careful routing and resource management within the application.

The choice of the multi-tenancy approach depends on factors such as data isolation requirements, scalability needs, customization options, and the complexity of implementation. Each approach has its own advantages and considerations, and the selection should be based on the specific requirements of your Laravel project and the needs of your tenants.

Configuring the database connections for multi-tenancy

When implementing multi-tenancy in Laravel, one of the key aspects is configuring the database connectionsto support tenant-specific data storage. In Laravel, implementing multi-tenancy involves configuring the database connections to support tenant-specific databases or schemas.

Here are the steps to implement multi-tenancy in Laravel:

Configure the Database Connections:

  • Open the config/database.php file in your Laravel project.
  • Define the default database connection settings under the connections array.
  • Add additional database connections for each tenant you want to support. Assign unique connection names for each tenant.

Set Up Tenant-Specific Databases:

  • For the separate database approach, create a new database for each tenant. Ensure that each tenant’s database has a unique name.
  • In the .env file, define the database connection details for each tenant. Use the connection names you defined in the config/database.php file.
  • You can dynamically switch the database connection based on the current tenant by setting the DB_CONNECTION value at runtime.

Set Up Tenant-Specific Schemas:

  • For the separate schema approach, create a separate schema within the database for each tenant. Each schema will hold the tenant’s data.
  • In the .env file, define the database connection details for each tenant, including the schema name.
  • You can dynamically switch the database connection and schema based on the current tenant at runtime.

By configuring the database connections and handling tenant identification in your Laravel application, you can achieve multi-tenancy and ensure that each tenant’s data is isolated and accessed through the appropriate database or schema. Keep in mind the security and data isolation considerations when implementing multi-tenancy, and test thoroughly to ensure the correct functionality for each tenant.

Tenant Identification:

Tenant Identification is a crucial step in implementing multi-tenancy in Laravel. It involves identifying the current tenant based on the incoming request or subdomain and storing/retrieving tenant-specific information. Here are the steps involved:

Request-Based Identification:

  • Identify the tenant based on the request URL or request headers.
  • Extract the necessary information from the request, such as a subdomain or query parameter, to determine the tenant.
  • Use middleware or route filters to perform the tenant identification logic and set the current tenant context for the request.
  • Store the tenant information in the current request’s session or a request-specific cache for easy retrieval during the request lifecycle.

Subdomain-Based Identification:

  • Map each subdomain to a specific tenant in your system.
  • Configure your web server or DNS to route subdomains to your Laravel application.
  • Extract the subdomain from the request and match it to the corresponding tenant.
  • Set the current tenant context for the request using middleware or route filters.
  • Store the tenant information in the current request’s session or a request-specific cache for easy retrieval.

Authentication-Based Identification:

  • Identify the tenant based on the authenticated user’s credentials.
  • Associate each user with a specific tenant in your system.
  • During the authentication process, retrieve the user’s associated tenant information.
  • Set the current tenant context for the request based on the authenticated user’s tenant.
  • Store the tenant information in the current request’s session or a request-specific cache for easy retrieval.

To store and retrieve tenant information, you can use various methods, depending on your application’s requirements and architecture:

Database Storage:

  • Create a tenants table in your database to store tenant-specific information, such as tenant ID, subdomain, database connection details, or any other relevant data.
  • When identifying the tenant, query the tenants table to retrieve the necessary information for the current tenant.
  • Cache the tenant information to improve performance and reduce database queries.

Configuration Files:

  • Store the tenant-specific information in configuration files, such as a separate tenants.php file.
  • Define an array of tenants with their corresponding details, such as tenant ID, subdomain, or database connection information.
  • When identifying the tenant, retrieve the necessary information from the configuration file based on the tenant identifier.

External Storage:

  • Store the tenant information in an external storage system, such as Redis or a key-value store.
  • Assign a unique key or identifier to each tenant and store the tenant details using the key-value storage.
  • Retrieve the tenant information based on the identifier during the request to set the current tenant context.

By implementing tenant identification and storing/retrieving tenant information, you can ensure that each request is associated with the correct tenant, allowing your multi-tenancy system to function accurately and securely.

To handle tenant-related operations and switch database connections or schemas based on the current tenant, you can create custom middleware in Laravel. This middleware will be responsible for setting the appropriate database connection or schema based on the identified tenant.

Here are the steps to create tenant middleware:

To make the creation of new Separate databases dynamically as new tenants register, you can follow these general steps:

Tenant Registration: Implement a registration process where new tenants can sign up for your application. Collect the necessary information, such as name, email, and other tenant-specific details.

Database Creation:When a new tenant registers, you can programmatically create a new database for them using the database management system (e.g., MySQL, PostgreSQL). Laravel provides various ways to interact with the database management system, such as executing raw SQL queries or using database management libraries.

In Laravel, you can use the DB facade to execute raw SQL queries. For example, you can use the CREATE DATABASE statement to create a new database. Here’s an example:

// Create a new database
DB::statement('CREATE DATABASE new_tenant_database');

Note: Ensure that your application has the necessary permissions to create databases on the database server.

Database Connection Configuration: After creating the new database, you need to dynamically configure a new database connection in Laravel to connect to the tenant’s specific database. You can achieve this by modifying the config/database.php file at runtime.

Here’s an example of how you can dynamically add a new database connection in Laravel:

// Add a new database connection dynamically
config([
    'database.connections.new_tenant_connection' => [
        'driver' => 'mysql',
        'host' => 'localhost',
        'port' => '3306',
        'database' => 'new_tenant_database',
        'username' => 'tenant_username',
        'password' => 'tenant_password',
        // Other configuration options
    ]
]);

This code dynamically adds a new connection configuration named new_tenant_connection to the config/database.php file.

Tenant-Specific Operations: Once the database connection is configured, you can perform tenant-specific operations using the newly created connection. For example, you can migrate the tenant’s database schema, seed initial data, and execute queries specific to that tenant.

Switching Database Connections: To switch the database connection during the request lifecycle, you can leverage Laravel’s middleware. Create a middleware that identifies the current tenant based on the request, retrieves the corresponding database connection details, and sets the connection dynamically.

Here’s an example of how you can switch the database connection dynamically using middleware:

// Custom middleware to switch the database connection
public function handle($request, Closure $next)
{
    // Identify the current tenant based on the request
    $tenant = determineCurrentTenant($request);

    // Retrieve the database connection details for the tenant
    $connectionDetails = getTenantDatabaseConnection($tenant);

    // Switch the database connection dynamically
    config([
        'database.default' => 'new_tenant_connection',
        'database.connections.new_tenant_connection' => $connectionDetails
    ]);

    return $next($request);
}

This middleware sets the default database connection to the new tenant’s connection and updates the connection details.

you can dynamically create new databases for each tenant during registration and configure the corresponding database connections in Laravel. This allows you to seamlessly manage tenant-specific data and operations within your multi-tenant application.


To make the creation of new schemas dynamic as new tenants register in a separate schema approach for multi-tenancy, you can follow these general steps:

Tenant Registration: Implement a registration process where new tenants can sign up for your application. Collect the necessary information, such as name, email, and other tenant-specific details.

Schema Creation: When a new tenant registers, you can programmatically create a new schema for them within your database. Laravel provides the DB facade to execute raw SQL queries, allowing you to create new schemas. Here’s an example:

Switching Schemas: After creating the new schema, you need to dynamically configure Laravel to use the tenant’s specific schema for database operations. You can achieve this by modifying the database connection configuration at runtime.

Laravel provides the DB::connection() method to switch between different database connections. You can use this method to dynamically set the schema property of the connection configuration. Here’s an example:

// Switch to the new tenant's schema
DB::connection('tenant_connection')->setSchema('new_tenant_schema');

This code switches the connection to the tenant_connection and sets the schema property to the newly created tenant’s schema.

Tenant-Specific Operations: Once the schema is set, you can perform tenant-specific operations using the specific schema. For example, you can migrate the tenant’s database schema, seed initial data, and execute queries specific to that tenant.

Middleware for Dynamic Schema Switching: To switch the schema dynamically during the request lifecycle, you can leverage Laravel’s middleware. Create a middleware that identifies the current tenant based on the request, retrieves the corresponding schema, and sets the schema dynamically.

Here’s an example of how you can switch the schema dynamically using middleware:

// Custom middleware to switch the schema
public function handle($request, Closure $next)
{
    // Identify the current tenant based on the request
    $tenant = determineCurrentTenant($request);

    // Retrieve the schema for the tenant
    $schema = getTenantSchema($tenant);

    // Switch the schema dynamically
    DB::connection('tenant_connection')->setSchema($schema);

    return $next($request);
}

This middleware sets the schema dynamically based on the current tenant, allowing you to handle tenant-specific operations within the context of the selected schema.

separate schema approach in multi-tenancy can present challenges when using Laravel’s Eloquent ORM, as Eloquent relies on model classes that are typically associated with specific tables.

Generating model files dynamically for each tenant can lead to a large number of model files on the server and may not be an optimal approach, especially if the number of tenants and schemas increases significantly. In such cases, an alternative approach is to use a base model class with dynamic table names, as mentioned in the second approach. Instead of creating separate model files for each tenant, you can have a single base model class that handles the dynamic table name based on the current tenant.

Here’s an example of how you can implement this approach:

Create a base model class, let’s call it TenantModel, which extends Laravel’s Eloquent model class:

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class TenantModel extends Model
{
    protected $connection = 'shared_db';
    
    public function __construct(array $attributes = [])
    {
        parent::__construct($attributes);
        $this->setTable($this->getTenantTable());
    }
    
    protected function getTenantTable()
    {
        // Logic to determine the current tenant and generate the table name
        $tenant = determineCurrentTenant();
        return 'tenant_' . $tenant->id . '_table';
    }
}

Create your tenant-specific models by extending the TenantModel instead of Laravel’s default Model class:

namespace App\Models;

class TenantUser extends TenantModel
{
    // Add any additional model-specific code or relationships here
}

By following these steps, you can create tenant-specific models and migrations, ensuring proper data segregation at the tenant level in your multi-tenant Laravel application.


In the Sub-Domain approach, each tenant is associated with a unique subdomain. The subdomain can be used to identify the tenant and provide a personalized experience. In this approach, you have the flexibility to choose between using a separate database or separate schema for each tenant.

To handle tenants with the subdomain approach and manage the URL configuration in your Laravel application, you can follow these steps:

Configuring the Sub-Domain Routing:

  • In Laravel, you can configure sub-domain routing to handle requests from different subdomains.
  • Open your routes/web.php file and define routes specific to subdomains using the Route::domain() method.
  • The Route::domain() method allows you to specify a subdomain pattern and associate it with a group of routes or a controller.
  • For example, you can define a route group for a specific subdomain like this:
  • By defining subdomain-specific routes, you can handle requests from different subdomains and direct them to the appropriate controllers or route handlers.
Route::domain('subdomain.example.com')->group(function () {
    // Routes specific to the 'subdomain' subdomain
});

Setting Up Dynamic Subdomains:

  • To handle dynamic subdomains, you need to configure your web server (e.g., Apache or Nginx) to redirect all subdomains to your Laravel application.
  • In your web server’s configuration, you can set up a wildcard DNS record or a catch-all virtual host that redirects all subdomains to your Laravel application’s URL.
  • For example, you can configure your web server to redirect any subdomain request to example.com to www.example.com or directly to your Laravel application’s URL.
  • By setting up dynamic subdomains at the web server level, all subdomain requests will be directed to your Laravel application, allowing you to handle them dynamically.
  • Typically, you will need to interact with your domain registrar’s API or DNS management tools to add a DNS record for the new subdomain programmatically.
  • This can be done using tools like the Digital Ocean API, AWS Route 53 API, or other DNS management libraries.
  • In your Laravel application, you can define a wildcard subdomain route to capture all incoming subdomain requests.
Route::domain('{subdomain}.example.com')->group(function () {
    // Handle requests for all subdomains dynamically
});
  • The {subdomain} placeholder captures the dynamic subdomain value, allowing you to extract and use it to identify the corresponding tenant.

Tenant Identification:

  • Implement logic to extract the subdomain from the incoming request and identify the corresponding tenant.
  • You can retrieve the subdomain using the request()->subdomain() or similar methods.
  • Use this subdomain to fetch the tenant details from the database or storage.

Separate Database or Separate Schema:

  • Based on your chosen approach (separate database or separate schema), configure the database connection or switch the schema accordingly.
  • If using separate databases, dynamically update the database configuration with the tenant-specific details.
  • If using separate schemas within a shared database, switch the schema for the tenant using the DB::connection()->setSchema($schema) method.

Handling App URL Configuration:

  • Since your APP_URL in the .env file represents the base URL of your application, you can dynamically generate the full URL for each tenant by appending the subdomain.
  • Use the subdomain to generate URLs within your views, email templates, or any other components where the URL needs to be generated dynamically.

Strategies for testing multi-tenancy in Laravel projects

  1. Unit Testing: Write unit tests to cover the functionality of individual components, such as tenant-specific models, controllers, and services. Mock the database connections or use an in-memory database for isolation.
  2. Integration Testing: Conduct integration tests to verify the interaction between different components in a multi-tenant environment. Test scenarios that involve switching tenants, accessing tenant-specific data, and handling tenant-specific behaviors.
  3. End-to-End Testing: Perform end-to-end tests to simulate real-world user interactions and test the entire multi-tenant application flow. This can include scenarios like registering new tenants, switching between tenants, and verifying the segregation of data.
  4. Use Test Databases or Mocks: Set up separate test databases for each tenant or use database mocking techniques to simulate multi-tenancy during testing. This helps ensure data isolation and avoids conflicts between tenant data.

Deploying and Scaling Multi-Tenant Applications:

  1. Scalability Planning: Consider the scalability requirements for your multi-tenant application. Determine the expected number of tenants and the anticipated growth rate to plan for scaling your infrastructure, such as adding more database servers or utilizing cloud-based services.
  2. Load Balancing: Use load balancing techniques to distribute incoming requests across multiple servers or instances. This helps ensure optimal performance and availability for tenants.
  3. Database Optimization: Optimize database performance by employing techniques like indexing, caching, and query optimization. Consider using database clustering or sharding approaches to handle increased database load.
  4. Monitoring and Alerting: Implement robust monitoring and alerting systems to track the health and performance of your multi-tenant application. Monitor key metrics like response times, database utilization, and resource consumption to identify and resolve any bottlenecks or issues.
  5. Automated Deployment: Utilize automated deployment processes, such as continuous integration and continuous deployment (CI/CD), to streamline the deployment of updates and new features across all tenants. This helps ensure consistency and reduces the risk of errors during deployment.
  6. Security Considerations: Implement appropriate security measures to protect tenant data and ensure data privacy and isolation. Consider encryption, role-based access controls, and regular security audits to mitigate risks.

By incorporating thorough testing practices and implementing robust deployment and scaling strategies, you can ensure the reliability, performance, and scalability of your multi-tenant Laravel application.

Scroll to Top