/** * Display a listing of the resource. * * @return Response */ public function index() { $productos = Producto::latest()->get(); return view('producto.index', compact('productos')); }