15 lines
270 B
PHP
15 lines
270 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Observers;
|
||
|
|
|
||
|
|
use App\Models\Tenants\Tenant;
|
||
|
|
use App\Services\TenantBootstrapper;
|
||
|
|
|
||
|
|
class TenantObserver
|
||
|
|
{
|
||
|
|
public function created(Tenant $tenant): void
|
||
|
|
{
|
||
|
|
app(TenantBootstrapper::class)->bootstrap((int)$tenant->id, 'STANDARD');
|
||
|
|
}
|
||
|
|
}
|