Пример #1
0
 public function featuredTours(TourRepository $tourRepository)
 {
     $tours = $tourRepository->getFeaturedTours();
     return view('tours.featured', compact('tours'));
 }
Пример #2
0
 public function index(TourRepository $tourRepository)
 {
     $tours = $tourRepository->getFeaturedTours(5);
     return view('home', compact('tours'));
 }