/**
  * Display a listing of the LocationProduct.
  *
  * @return Response
  */
 public function index()
 {
     $locationProducts = $this->locationProductRepository->paginate(10);
     return view('locationProducts.index')->with('locationProducts', $locationProducts);
 }