@if ($schemaType == 'Organization')
{{--
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"@id": "{{ url('/') }}#localbusiness",
"name": "Apex Pavers & Pools",
"url": "{{ url('/') }}",
"logo": "{{ asset("images/logos/apex-pavers-badge.png") }}",
"description": "Premier pool construction and paver installation company in Florida with over 18 years of experience creating luxury outdoor living spaces.",
"foundingDate": "2005",
"telephone": "{{ config('company.phone') }}",
"email": {{ config('company.email') }},
"address": {
"@type": "PostalAddress",
"streetAddress": "{{ config('company.address') }}",
"addressLocality": "{{ config('company.city') }}",
"addressRegion": "{{ config('company.state') }}",
"postalCode": "{{ config('company.zip') }}",
"addressCountry": "{{ config('company.country') }}"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "Your Latitude",
"longitude": "Your Longitude"
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens": "08:00",
"closes": "17:00"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Saturday",
"opens": "09:00",
"closes": "15:00"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Sunday",
"opens": "00:00",
"closes": "00:00"
}
],
"priceRange": "$$$",
"areaServed": [
{
"@type": "State",
"name": "Florida"
}
],
"hasOfferCatalog": {
"@type": "OfferCatalog",
"name": "Pool and Paver Services",
"itemListElement": [
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Custom Pool Construction",
"description": "Design and construction of luxury custom swimming pools"
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Paver Installation",
"description": "Professional installation of outdoor pavers and hardscaping"
}
}
]
},
"sameAs": [
"https://www.facebook.com/yourpage",
"https://www.instagram.com/yourpage",
"https://www.linkedin.com/company/yourcompany"
]
}
--}}
@elseif($schemaType == 'LocalBusiness')
@elseif($schemaType == 'WebPage')
@elseif($schemaType == 'WebSite')
@elseif($schemaType == 'BreadcrumbList')
@elseif($schemaType == 'Service')
@elseif($schemaType == 'ImageGallery')
@elseif($schemaType == 'Review')
@elseif($schemaType == 'CreativeWork')
@elseif($schemaData)
@endif