hasMany('App\OrderAgent', 'agent_id', 'id'); } public function productClientAgent() { return $this->hasMany('App\ProductClientAgent', 'agent_id', 'id'); } public function type() { return $this->belongsTo('App\AgentType', 'type_id', 'id'); } public function withdraw() { return $this->hasMany('App\AgentWithdraw', 'agent_id', 'id'); } }