将whereIn与更新Laravel结合使用时获取索引

时间:2016-03-31 10:08:02

标签: php laravel eloquent

    Asset_component::whereIn('id', $request->input('id'))->update(array(
        'asset_status_id' => Asset_status::whereName('Waiting for transfer')->first()->id,
        'technician_id' => $request->input('technician'),
        'lab_id' => Asset_component::find($index)->asset->lab->id,
        'office_id' => Asset_component::find($index)->asset->office->id,
        'require_date' => Carbon::createFromFormat('m/d/Y', $request->input('require_date')),
        'comment' => $request->input('comment'),
        'warehouse_id' => null
    ));

我需要你的帮助来获取$ index,这是更新函数循环的id索引,任何可以检索它的方法?非常感谢你的帮助。

0 个答案:

没有答案