From 5ce24c54b3adf2f4e45e85ef77e8809af2ec1215 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Fri, 23 Aug 2019 22:48:53 +0200 Subject: [PATCH] wip --- source/docs/misc-tips.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/docs/misc-tips.md b/source/docs/misc-tips.md index fc0ce0ee..82b11a6b 100644 --- a/source/docs/misc-tips.md +++ b/source/docs/misc-tips.md @@ -21,6 +21,8 @@ return redirect()->route('dashboard')->tenant($tenant['domain']); 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: ```php +use Stancl\Tenancy\Interfaces\UniqueIdentifierGenerator; + class MyUniqueIDGenerator implements UniqueIdentifierGenerator { public static function handle(string $domain, array $data): string