public function assignprocessing() {
$newassignment= new DoctorAppointment();
$newassignment->doctor_id=Session::get('doctorid');
$newassignment->patient_id=Session::get('users.id');
$newassignment->appointment_id=Session::get('appoint');
$newassignment->save();
if ($newassignment->save()) {
return View::make('hospital.appointments');
}
}
我正在使用我在另一个查询中检索到的值,而不是重新编写它们,我使用Session::set
来保存值,然后使用' Session :: get'要在上面的查询中检索它们,我得到错误参数不匹配