/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $event = Event::getEventOnDate();
     $phrase = Phrase::getRandomPhrase();
     //Get First 5 posts
     $posts = Post::getPredeterminatePosts();
     $pathFile = "";
     if ($event->image) {
         $pathFile = $this->_getFile($event->image);
     }
     return View("index", array("event" => $event, "phrase" => $phrase, "posts" => $posts, "pathFile" => $pathFile));
 }