$row->toArray()[3]]); if ($row->toArray()[3] != '提货码') // 跳過第一行 { Promocode::create([ 'code' => $row->toArray()[3], // 使用 "提货码" 列 'discount' => 100, // 假設折扣為固定值 100 'type' => 'percent', // 默認為百分比 'usage_limit' => 1, // 默認每個代碼只能使用一次 'valid_from' => date('Y-m-d'), // 當前日期 'valid_to' => date('Y-m-d', strtotime('1 day')), // 默認有效期至第二天 'is_active' => 1, // 默認啟用 ]); } } } }