repository = $repository; } /** * Return the mount overview page. * * @return \Illuminate\View\View */ public function index() { return view('admin.mounts.index', [ 'locations' => $this->repository->getAllWithDetails(), ]); } }