[ 'import', 'export', ], ]; public const SPECIAL_PERMISSIONS = [ 'settings' => [ 'view', 'update', ], ]; public function isRootAdmin(): bool { return $this->name === self::ROOT_ADMIN; } public static function getRootAdmin(): self { /** @var self $role */ $role = self::findOrCreate(self::ROOT_ADMIN); return $role; } }