Example #1
0
 /**
  * Display a listing of the Rate.
  *
  * @return Response
  */
 public function index()
 {
     $rates = $this->rateRepository->paginate(10);
     return view('rates.index')->with('rates', $rates);
 }