1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-15 05:44:04 +00:00

uuid -> id (references in code)

This commit is contained in:
Samuel Štancl 2019-09-15 22:52:31 +02:00
parent a7bb709bd4
commit 79f912384b
17 changed files with 46 additions and 45 deletions

View file

@ -31,7 +31,7 @@ class TenantList extends Command
{
$this->info('Listing all tenants.');
tenancy()->all()->each(function ($tenant) {
$this->line("[Tenant] uuid: {$tenant['uuid']} @ {$tenant['domain']}");
$this->line("[Tenant] id: {$tenant['id']} @ {$tenant['domain']}");
});
}
}