activityService = $activityService; $this->bookRepo = $bookRepo; parent::__construct(); } /** * Display the homepage. * * @return Response */ public function index() { $books = $this->bookRepo->getAll(); $activity = $this->activityService->latest(); return view('home', ['books' => $books, 'activity' => $activity]); } }