我有一个 Eloquent 集合(已执行查询),我需要对这个数组中的两个项目做一些事情,所以我需要使用only
orpluck
方法,但它们不返回我需要的东西......
$orders = Order::with('parts')->paginate(50);
$orders[0]->parts->lists('name'); // Returns names
$orders[0]->parts->lists('custom_name'); // Returns custom names
$orders[0]->parts->only(['name', 'custom_name']); // Returns nothing
$orders[0]->parts->pluck(['name', 'custom_name']); // Returns no values