OneOnline Support

This commit is contained in:
2020-09-27 23:44:54 +05:00
parent 94fda48b90
commit 179bedead9
5 changed files with 216 additions and 12 deletions

View File

@@ -0,0 +1,37 @@
<?php
namespace App\Services\Feeds;
use Goutte\Client;
class OneOnlineFeed
{
protected $client;
public function __construct()
{
$this->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;
}
}