belongsTo('App\Models\Country','billing_country_id'); } public function shipping_country() { return $this->belongsTo('App\Models\Country','shipping_country_id'); } public function shopping_orders() { return $this->hasMany('App\Models\ShoppingOrder','shopping_user_id'); } public function shopping_order() { return $this->hasOne('App\Models\ShoppingOrder','shopping_user_id'); } }