18 lines
374 B
PHP
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"];
|
|
|
|
}
|
|
} |