public function getStory($storyId)
 {
     $story = Stories::find($storyId);
     $excerptExtract = $story->feed->excerpt;
     $dom = new \Htmldom(htmlspecialchars_decode(urldecode($story->url)));
     $body = $dom->find($excerptExtract, 0);
     return response()->json(array('body' => $body->innertext));
 }