Laravel 9 기존 모델 업데이트
4026 단어 phpjavascriptlaraveltutorial
https://codeanddeploy.com/blog/laravel/laravel-9-update-an-existing-model
이 게시물에서는 Update an Existing Model에서 Laravel 9를 사용하여 구현하는 방법의 예를 보여 드리겠습니다. Laravel 모델 업데이트는 Laravel을 사용하여 애플리케이션을 만들 때 배워야 할 가장 많은 기능 중 하나입니다. 이 게시물에는 이를 수행하는 방법에 대한 다양한 방법과 예가 있습니다. 귀하의 필요에 적합한 것을 선택하십시오.
예 #1:
$employee = Employee::find(1);
$employee->name = "Juan Dela Cruz";
$employee->save();
예 #2:
save()
메서드를 사용할 필요가 없는 여러 값이 있는 배열을 사용하여 모델을 업데이트할 수도 있습니다.$employee = Employee::find(1);
$employee->update(['name' => 'Juan Dela Cruz', 'address' => 'My address']);
예 #3:
where
함수를 직접 사용하여 조건부 메서드로 레코드를 업데이트할 수도 있습니다.Employee::where('salary', '>', '10000')
->update([
'address' => 'Juan Dela Cruz',
'address' => 'My address'
]);
예 #4:
레코드를 업데이트할 때
updated_at
열을 변경할 필요가 없는 경우 모델에서 제외하도록 touch
옵션을 false
로 사용할 수 있습니다.$employee = Employee::find(1);
$employee->update([
'name' => 'Juan Dela Cruz',
'address' => 'My address'
], ['touch' => false]);
이 튜토리얼이 도움이 되었으면 합니다. 이 코드를 다운로드하려면 여기https://codeanddeploy.com/blog/laravel/laravel-9-update-an-existing-model를 방문하십시오.
행복한 코딩 :)
Reference
이 문제에 관하여(Laravel 9 기존 모델 업데이트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codeanddeploy/laravel-9-update-an-existing-model-2cfa텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)