예제 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $postfeatures = Post::getPostFeatured();
     $postfoods = Post::getPostFood();
     $postlandscapes = Post::getPostLandscape();
     $comments = Comment::getLastComment();
     $tours = Tour::getFeatureTour();
     return view('home.home', compact('postfeatures', 'postfoods', 'postlandscapes', 'comments', 'tours'));
 }