Arreglado metodo que al final sí era usado

This commit is contained in:
Alejandro Tasistro 2024-09-17 21:45:28 -03:00
parent 5c1fa931eb
commit 07289b01e9
1 changed files with 4 additions and 0 deletions

View File

@ -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();
}