App\Models\Store\Address::shippingRate PHP Method

shippingRate() public method

public shippingRate ( )
    public function shippingRate()
    {
        if ($this->country === null) {
            return 0;
        } else {
            return $this->country->shipping_rate;
        }
    }