belongsTo(User::class)->withTrashed(); } public function on_behalves(){ return $this->belongsTo(OnBehalf::class)->withTrashed(); } public function marital_status(){ return $this->belongsTo(MaritalStatus::class)->withTrashed(); } public function package() { return $this->belongsTo(Package::class,'current_package_id')->withTrashed(); } public function mothereTongue() { return $this->belongsTo(MemberLanguage::class,'mothere_tongue')->withTrashed(); } }