Ejemplo n.º 1
0
 /**
  * Display a listing of the Discount.
  *
  * @return Response
  */
 public function index()
 {
     $discounts = $this->discountRepository->paginate(10);
     return view('discounts.index')->with('discounts', $discounts);
 }