Example #1
0
 /**
  * Get and save full news item body from screenrant.
  * 
  * @param  News   $news 
  * @return News
  */
 public function getFullNewsItem(News $news)
 {
     $html = $this->scraper->getSingleFromScreenRant($news->full_url);
     $news->body = $html;
     $news->fully_scraped = 1;
     $news->save();
     return $news;
 }