updateorcreate collection array laravel laravel-4 eloquent

collection - Laravel 4 Eloquent ORM selecciona where-array como parámetro



laravel foreach array (2)

Fluido:

DB::table(''PRODUCTS'')->whereIn(''parent_id'', $parent_ids)->get();

Elocuente:

Product::whereIn(''parent_id'', $parent_ids)->get();

¿Hay solución para esto en Eloquent ORM?

Tengo una matriz con idetificadores de padres:

Array ( [0] => 87, [1] => 65, ... )

Y quiero seleccionar la tabla PRODUCTOS donde parent_id column = any id in array


Su matriz debe ser así:

$array = array(87, 65, "etc"); Product::whereIn(''parent_id'', $array)->get();

o

Product::whereIn(''parent_id'', array(87, 65, "etc"))->get();