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