master
parent
61588592b4
commit
e199ec4609
|
@ -47,23 +47,22 @@
|
||||||
"@context": "https://schema.org",
|
"@context": "https://schema.org",
|
||||||
"@type": "Organization",
|
"@type": "Organization",
|
||||||
"image": "https://www.example.com/example_image.jpg",
|
"image": "https://www.example.com/example_image.jpg",
|
||||||
"url": "https://www.example.com",
|
"url": "{{url('/')}}",
|
||||||
"sameAs": ["https://example.net/profile/example1234", "https://example.org/example1234"],
|
"sameAs": ["https://example.net/profile/example1234", "https://example.org/example1234"],
|
||||||
"logo": "https://www.example.com/images/logo.png",
|
"logo": "https://www.example.com/images/logo.png",
|
||||||
"name": "Example Corporation",
|
"name": "{{$_legal_name}}",
|
||||||
"description": "The example corporation is well-known for producing high-quality widgets",
|
"description": "{{config('settings.description')}}",
|
||||||
"email": "contact@example.com",
|
"email": "{{config('settings.contact_email')}}",
|
||||||
"telephone": "+47-99-999-9999",
|
"telephone": "{{$_telefonnummer}}",
|
||||||
"address": {
|
"address": {
|
||||||
"@type": "PostalAddress",
|
"@type": "PostalAddress",
|
||||||
"streetAddress": "Rue Improbable 99",
|
"streetAddress": "{{$_legal_address}}",
|
||||||
"addressLocality": "Paris",
|
"addressLocality": "{{$_legal_city}}",
|
||||||
"addressCountry": "FR",
|
"addressCountry": "DE",
|
||||||
"addressRegion": "Ile-de-France",
|
"addressRegion": "Bayern",
|
||||||
"postalCode": "75001"
|
"postalCode": "{{$_legal_zip_code}}"
|
||||||
},
|
},
|
||||||
"vatID": "FR12345678901",
|
"vatID": "{{$_vat_id}}"
|
||||||
"iso6523Code": "0199:724500PMK2A2M1SQQ228"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
<br>
|
<br>
|
||||||
HRB: {{$_hrb}}
|
HRB: {{$_hrb}}
|
||||||
|
|
||||||
@if($_hrb)
|
@if($_duns)
|
||||||
<br>
|
<br>
|
||||||
D-U-N-S® Nummer: {{$_duns}}
|
D-U-N-S® Nummer: {{$_duns}}
|
||||||
@endif
|
@endif
|
||||||
|
|
Loading…
Reference in New Issue