Tenant Storage
Tenant storage is where tenants' ids and domains are stored. You can store things like the tenant's plan, subscription information, and tenant-specific application configuration in tenant storage. You may use these functions on Tenant objects:
get (string|array $key)
put (string|array $key, mixed $value = null) // if $key is array, make sure $value is null
To put something into the tenant storage, you can use put() or set().
$tenant->put($key, $value);
$tenant->set($key, $value); // alias for put()
$tenant->put(['key1' => 'value1', 'key2' => 'value2']);
Note: Don't start any keys with
_tenancyunless instructed to by the docs. It is a reserved namespace used to store internal data by this package.
To get something from the storage, you can use get():
tenant()->get($key);
tenant()->get(['key1', 'key2']);
In this example, we're calling the methods on the current tenant —
tenant().Note:
get(['key1', 'key2'])returns an associative array.
Note that $key has to be a string or an array with string keys. The value(s) can be of any data type. Example with arrays:
>>> tenant()->put('foo', ['a' => 'b', 'c' => 'd']);
=> [ // put() returns the supplied value(s)
"a" => "b",
"c" => "d",
]
>>> tenant()->get('foo');
=> [
"a" => "b",
"c" => "d",
]
To delete keys from the storage, you may use these methods:
$tenant->deleteKey($key)
$tenant->deleteKeys(['foo', 'bar']);