1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 21:34:03 +00:00

Improve CreatePendingTenants success message

This commit is contained in:
lukinovec 2022-11-28 15:15:34 +01:00
parent 4b51323518
commit 1efbbcd02f

View file

@ -30,8 +30,8 @@ class CreatePendingTenants extends Command
$createdCount++; $createdCount++;
} }
$this->info($createdCount . ' ' . str('tenant')->plural($createdCount) . ' created.'); $this->info($createdCount . ' pending ' . str('tenant')->plural($createdCount) . ' created.');
$this->info($maxPendingTenantCount . ' ' . str('tenant')->plural($maxPendingTenantCount) . ' ready to be used.'); $this->info($maxPendingTenantCount . ' pending ' . str('tenant')->plural($maxPendingTenantCount) . ' ready to be used.');
return 0; return 0;
} }