Files
karudhaas/app/Services/Feeds/SunFeed.php
2020-10-03 02:44:11 +05:00

18 lines
374 B
PHP

<?php
namespace App\Services\Feeds;
use Illuminate\Support\Facades\Http;
class SunFeed implements Feed
{
/**
* Latest articles published by sun. An Alternative to rss
*
* @return array
*/
public function get() : array
{
return Http::get("https://sun.mv/news?page=1&pagination=true")
->json()["data"];
}
}