当我试图提交这样的预订表格时:
第一个
在数据库中:
ID : 1
Name : a
Email : a@gmail.com
Other email : NULL
ID : 2
Name : NULL
Email : NULL
Other email : b@gmail.com
如何使ID号为2的name和email的值不为null而是为
ID : 2
Name : a
Email : a@gmail.com
Other email : b@gmail.com
控制器:
$firstName = $booking->first_name;
$lastName = $booking->last_name;
foreach ($request->input('other_emails') as $email){
Booking::create([
'first_name'=>$firstName,
'last_name'=>$lastName,
'other_emails'=>$email
]);
Mail::to($email)->send(new OthersEmail($isi_email1));
}
型号:
protected $fillable = [
'first_name',
'last_name',
'other_emails'
];
1条答案
按热度按时间ivqmmu1c1#
您必须更新数据。