belongsTo('App\Models\Shipping', 'shipping_id'); } public function country() { return $this->belongsTo('App\Models\Country', 'country_id'); } public function shopping_orders() { return $this->hasMany('App\Models\ShoppingOrder', 'country_id'); } }