diff --git a/app/Producto.php b/app/Producto.php
index 23694c9..f3fb6b4 100644
--- a/app/Producto.php
+++ b/app/Producto.php
@@ -42,6 +42,10 @@ class Producto extends Model
     return Producto::pluck('id', 'fila',)->all();
   }
 
+  public static function productosIDFila() {
+      return Producto::pluck('fila', 'id',)->all();
+  }
+
   public static function productosIDNombre() {
     return Producto::pluck('nombre', 'id',)->all();
   }