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