generated from boboko/starter
16 lines
805 B
PHP
16 lines
805 B
PHP
{{--
|
|||
|
|
@include('emails.partials.address', ['address' => $order->shippingAddress])
|
||
|
|
|
||
|
|
An order address, read-only, same fields as the account order page.
|
||
|
|
--}}
|
||
|
|
<p style="margin:0;font-size:15px;line-height:1.6;">
|
||
|
|
{{ trim($address->first_name.' '.$address->last_name) }}<br>
|
||
|
|
@if ($address->company_name){{ $address->company_name }}<br>@endif
|
||
|
|
@if ($address->tax_identifier)ΑΦΜ: {{ $address->tax_identifier }}<br>@endif
|
||
|
|
{{ $address->line_one }}<br>
|
||
|
|
@if ($address->line_two){{ $address->line_two }}<br>@endif
|
||
|
|
{{ trim($address->postcode.' '.$address->city) }}<br>
|
||
|
|
@if ($address->state){{ Lang::has("core::states.{$address->state}") ? __("core::states.{$address->state}") : $address->state }}<br>@endif
|
||
|
|
@if ($address->contact_phone){{ $address->contact_phone }}@endif
|
||
|
|
</p>
|