client = new Client(); } /** * Return the latest articles from avas * * @return array */ public function get() : array { $crawler = $this->client->request('GET', "https://oneonline.mv/"); $feeds = []; $crawler->filter('.latest-listing a')->each(function($node) use (&$feeds){ $feeds[] = [ "title" => $node->text(), "link" => $node->attr('href') ]; }); return $feeds; } }