PhpHtmlPraser html 查找功能不起作用

PhpHtmlPraser html find function won't work

我正在尝试从 html 站点获取数据。 但我现在 <span data-bind="data-title">Absolut Combat</span> 行存在。 但是我的代码找不到它,你们看到什么不对了吗?

public function index(Request $request) 
{
    $url = 'https://umod.org/plugins';
    $dom = new Dom;
    $html = $dom->loadFromUrl($url);
    $html = $html->find('span[data-bind="data-title"]'); <-- Problem is here
    dd($html);
    return view('server.rustplugins');
}

我只是使用 json 而不是编写 html 抓取器。