name 存取): * - name: 租戶名稱 (如: 小小冰室) * - email: 聯絡信箱 * - is_active: 是否啟用 */ class Tenant extends BaseTenant implements TenantWithDatabase { use HasDatabase, HasDomains; /** * 定義獨立欄位 (非 data JSON) * 只有 id 是獨立欄位,其他自訂屬性都存在 data JSON 中 */ public static function getCustomColumns(): array { return [ 'id', ]; } }