Example #1
0
 /**
  * Display a listing of the Rate.
  * GET|HEAD /rates
  *
  * @return Response
  */
 public function index()
 {
     $rates = $this->rateRepository->all();
     return $this->sendResponse($rates->toArray(), "Rates retrieved successfully");
 }