tenancy-docs/docs/source/v2/misc-tips.blade.md
Samuel Štancl c69505a09a Features
2019-11-10 15:42:13 +01:00

845 B

title description extends section
Miscellaneous Tips Miscellaneous Tips.. _layouts.documentation content

Miscellaneous Tips

Custom ID scheme

If you don't want to use UUIDs and want to use something more human-readable (even domain concatenated with uuid, for example), you can create a custom class for this:

use Stancl\Tenancy\Contracts\UniqueIdentifierGenerator;

class MyUniqueIDGenerator implements UniqueIdentifierGenerator
{
    public static function handle(string $domain, array $data): string
    {
        return $domain . \Ramsey\Uuid\Uuid::uuid4()->toString();
    }
}

and then set the tenancy.unique_id_generator config to the full path to your class.

Note that you may have to make the id column on the tenants table larger, as it's set to the exact length of uuids by default.