1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 01:34:03 +00:00
tenancy/source/docs/creating-tenants.md
Samuel Štancl 8141f8524e wip
2019-08-17 15:53:56 +02:00

645 B

title description extends section
Creating Tenants Creating tenants with stancl/tenancy — A Laravel multi-database tenancy package that respects your code.. _layouts.documentation content

Creating Tenants

To create a tenant, you can use

tenant()->create('tenant1.yourapp.com');

Tip: All domains under .localhost are routed to 127.0.0.1 on most operating systems. This is useful for development.

If you want to set some data while creating the tenant, you can pass an array with the data as the second argument:

tenant()->create('tenant2.yourapp.com', [
    'plan' => 'free'
]);