home_page_service = $home_page_service; } /** * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function index() { return view('home::front.index', [ 'page' => $this->home_page_service->getPage(), 'seasonal_offers' => $this->home_page_service->getSeasonalOffers(), 'articles_on_main' => $this->home_page_service->getArticles(), 'product_categories' => $this->home_page_service->getProductCategories(), 'sliders' => $this->home_page_service->getSliders(), ]); } }