bookRepo = $bookRepo; parent::__construct(); } /** * Display the homepage. * * @return Response */ public function index() { $activity = Activity::latest(); $recentlyViewed = Views::getUserRecentlyViewed(10, 0); return view('home', ['activity' => $activity, 'recents' => $recentlyViewed]); } }