Esempio n. 1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $data = Price::orderBy('id', 'asc')->paginate(PAGINATE);
     return View::make('admin.price.index')->with(compact('data'));
 }