Notion : https://www.notion.so/hamss/2579c8d34ba080d586b6faaae249f476?source=copy_link
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');
|
|
}
|
|
}
|