Laravel 관련 모델-관련 추가 및 관련 업데이트 방법
Laravel 문서 의 설명 에 따라 관련 모델 을 설정 합 니 다참조 주소
//
class Patient extends Model
{
/**
*
* @return \Illuminate\Database\Eloquent\Relations\HasOne
*/
public function patientdata ()
{
return $this->hasOne(PatientData::class);
}
//
class PatientData extends Model
{
public function patient()
{
return $this->belongsTo(Patient::class);
}
관련 업데이트 코드
/**
*
* @param array $data
*
* @return bool
*/
public function savePatient($data=[])
{
DB::beginTransaction();
if($patient = $this->create($data)){
if ($res = $patient->patientdata()->create([" "])){
DB::commit();
} else{
DB::rollBack();
}
return true;
}
return false;
}
관련 업데이트 코드
public function updatePatient($data=[])
{
DB::beginTransaction();
//
$patient = $this->find($data['id']);
if($patient->update($data)){
if ($res = $patient->patientdata()->where('patient_id',$data['id'])->update([" "])){
DB::commit();
} else{
DB::rollBack();
}
return true;
}
return false;
}
이상 의 이 Laravel 관련 모델-관련 추가 및 관련 업데이트 방법 은 바로 편집장 님 이 여러분 에 게 공유 한 모든 내용 입 니 다.여러분 께 참고 가 되 고 많은 응원 부 탁 드 리 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
단순 Laravel+Vue.js에서 VueUI를 사용하여 로그인 및 등록Laravel에는 웹 팩과 같은 Laravel-Mix가 있는데, 이를 이용해서 Laravel에 Vue.js를 실현할 수 있다. 이번에는 몇 가지 명령을 통해 간단하게 VueUI로 로그인하여 로그인을 할 수 있습니다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.