/**
  * Display a listing of the LocationProduct.
  * GET|HEAD /locationProducts
  *
  * @return Response
  */
 public function index()
 {
     $locationProducts = $this->locationProductRepository->all();
     return $this->sendResponse($locationProducts->toArray(), "LocationProducts retrieved successfully");
 }