belongsTo(User::class, 'transfer_by', 'id'); } public function transferFrom(){ return $this->belongsTo(User::class, 'transfer_from', 'id'); } public function transferTo(){ return $this->belongsTo(User::class, 'transfer_to', 'id'); } }