Revert "Issue #3547 fixed"
This commit is contained in:
parent
bb5f331d66
commit
74adb7233a
|
|
@ -12,16 +12,4 @@ class Country extends TranslatableModel implements CountryContract
|
|||
public $translatedAttributes = ['name'];
|
||||
|
||||
protected $with = ['translations'];
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function toArray()
|
||||
{
|
||||
$array = parent::toArray();
|
||||
|
||||
$array['name'] = $this->name;
|
||||
|
||||
return $array;
|
||||
}
|
||||
}
|
||||
|
|
@ -19,7 +19,7 @@
|
|||
<b>{{ $billingAddress->first_name }} {{ $billingAddress->last_name }}</b>
|
||||
</li>
|
||||
<li class="mb-10">
|
||||
{{ $billingAddress->address1 }}, {{ $billingAddress->city }}<br/> {{ $billingAddress->state }}
|
||||
{{ $billingAddress->address1 }},<br/> {{ $billingAddress->state }}
|
||||
</li>
|
||||
<li class="mb-10">
|
||||
{{ core()->country_name($billingAddress->country) }} {{ $billingAddress->postcode }}
|
||||
|
|
@ -50,7 +50,7 @@
|
|||
<b>{{ $shippingAddress->first_name }} {{ $shippingAddress->last_name }}</b>
|
||||
</li>
|
||||
<li class="mb-10">
|
||||
{{ $shippingAddress->address1 }}, {{ $shippingAddress->city }}<br/> {{ $shippingAddress->state }}
|
||||
{{ $shippingAddress->address1 }},<br/> {{ $shippingAddress->state }}
|
||||
</li>
|
||||
<li class="mb-10">
|
||||
{{ core()->country_name($shippingAddress->country) }} {{ $shippingAddress->postcode }}
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
{{ $billingAddress->name }}
|
||||
</li><br />
|
||||
<li>
|
||||
{{ $billingAddress->address1 }}, {{ $billingAddress->city }} <br />{{ $billingAddress->state }}
|
||||
{{ $billingAddress->address1 }}, <br />{{ $billingAddress->state }}
|
||||
</li><br />
|
||||
<li>
|
||||
{{ core()->country_name($billingAddress->country) }} {{ $billingAddress->postcode }}
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
{{ $shippingAddress->name }}
|
||||
</li><br/>
|
||||
<li>
|
||||
{{ $shippingAddress->address1 }}, {{ $shippingAddress->city }}<br/> {{ $shippingAddress->state }}
|
||||
{{ $shippingAddress->address1 }},<br/> {{ $shippingAddress->state }}
|
||||
</li><br/>
|
||||
<li>
|
||||
{{ core()->country_name($shippingAddress->country) }} {{ $shippingAddress->postcode }}
|
||||
|
|
|
|||
Loading…
Reference in New Issue