diff --git a/dist/index.html b/dist/index.html index 4a385b5..4744417 100644 --- a/dist/index.html +++ b/dist/index.html @@ -29,7 +29,7 @@ -
+

Automatic tenancy for your Laravel app

No code changes required.

@@ -75,7 +75,7 @@ dispatch(new SendOrderCreatedMail);
-
+

Easy Installation

Two commands is all you need to get started.

@@ -103,7 +103,7 @@ php artisan tenancy:install

Multi-tenancy is something that can be handled in the background.

Why should your code be polluted with tons of tenancy-related things?

-

Why have your code bound to a specific implementation? Handling things in the +

Handling tenancy in the background gives you the flexibility to change how tenancy works for your project without pain.

@@ -119,13 +119,14 @@ php artisan tenancy:install
+ class="bg-white py-6 px-6 xl:px-12 h-full rounded-15 text-xl flex flex-col justify-between + shadow-card">

Awesome Integration

By switching things in the background, the package doesn’t stand in your way.

You can integrate with just about any package.

-
+
@@ -173,7 +174,7 @@ php artisan tenancy:install

Tenants' databases, caches, filesystems, queues and Redis stores are automatically separated. You can write your app like you're used to and let the package worry about tenant data separation.

-
+
 cache()->remember('total_revenue', function () {
     return Order::with('products')
@@ -186,7 +187,7 @@ cache()->remember('total_revenue', function () {
     
-
+
 'redis' => [
     'prefix_base' => 'tenant',
@@ -211,7 +212,7 @@ cache()->remember('total_revenue', function () {
                 back, as well as
                 seeding tenant databases.

-
+
 $ artisan tenants:seed --tenants=8075a580-1cb8-11e9-8822-49c5d8f8ff23
 Tenant: 8075a580-1cb8-11e9-8822-49c5d8f8ff23 (tenant1.localhost)
@@ -221,7 +222,7 @@ Database seeding completed successfully.
     
-
+
 class PostgreSQLDatabaseManager implements TenantDatabaseManager
 {
@@ -238,7 +239,7 @@ class PostgreSQLDatabaseManager implements TenantDatabaseManager
                 (and contribute ❤️) your own Storage Drivers, Tenancy Bootstrappers, and Feature classes.

-
+

How it works

    @@ -285,8 +286,8 @@ class PostgreSQLDatabaseManager implements TenantDatabaseManager
-
-
+
+

Stay Updated

If you'd like to be notified about new versions and related stuff, you can sign up for e-mail @@ -350,7 +351,7 @@ class PostgreSQLDatabaseManager implements TenantDatabaseManager

stancl/tenancy

-