Merhaba users
tablosunda tüm kullanıcılar var
->where("role","customer")
olanların companies
tablosunda şirket bilgileri var bu bilgileri güncelleme yapmak için hangi işlemi araştırmam lazım User
model de company belongsTo
ilişki var. user_id
ve company_id
eşleşirse update yapmam lazim 2 id yi relation a göre nasıl kontrol ederim.
kullandığım Sorgu :
Controller
$customers = $this->userService->getRoleCustomer();
Repository
$this->model= User::query()->orderBy("id","asc")->where("role","customer")->with("company")->where("status","active")->get();
return $this->model;
DB Transaction da hangi işlemi kullanmam gerek. Ya da farklı yöntem var mı?