I'm trying to insert an array at once and i also want to update if exists. But i get this error.
$jobs = array();
//Iterate over the extracted links and display their URLs
foreach ($links as $link){
$data = get_job_info($link);
$jobs[] = [
'title' => $data['title'],
'full_desc' => $data['desc'],
'to_date' => $data['date'],
'ad_type' => 'fb'
];
}
}
DB::table('customer_position')->insert($jobs);
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire