funcion/planilla-pedidos-total #33

Merged
atasistro merged 25 commits from funcion/planilla-pedidos-total into master 2024-10-08 20:07:57 -03:00
Showing only changes of commit 07289b01e9 - Show all commits

View file

@ -42,6 +42,10 @@ class Producto extends Model
return Producto::pluck('id', 'fila',)->all(); return Producto::pluck('id', 'fila',)->all();
} }
public static function productosIDFila() {
return Producto::pluck('fila', 'id',)->all();
}
public static function productosIDNombre() { public static function productosIDNombre() {
return Producto::pluck('nombre', 'id',)->all(); return Producto::pluck('nombre', 'id',)->all();
} }