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