PHP框架 Laravel Eloquent ORM 批量插入数据 && 批量更新目前没有
foreach ($products as $v=>$a)
{
$count[] = array('product_name' => $a['name'], 'product_weight' => $a['weight'], 'product_id' => $a['pid'], 'product_price' => $a['price'], 'order_id' => $order->id, 'card_phone' => $user->phone);
}
CountOrder::insert($count);
在使用 laravel 的批量插入数据时,
插入的数据的创建时间却都是 0000000;
创建时间 和 更新时间字段 如何正常保存呢 ,难道也要在数组里面写入吗?