Files
karudhaas/app/Services/Feeds/SunFeed.php
2020-08-11 04:03:56 +05:00

18 lines
358 B
PHP

<?php
namespace App\Services\Feeds;
use Illuminate\Support\Facades\Http;
class SunFeed
{
/**
* 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"];
}
}