{{-- Open Graph --}} {{-- Twitter Card --}} @php // Structured Data (JSON-LD) - Build arrays then encode to avoid Blade parsing issues. $organizationSchema = [ '@context' => 'https://schema.org', '@type' => 'Organization', 'name' => 'Dona-Marmita', 'url' => url('/'), 'logo' => asset('images/logo.png'), 'sameAs' => array_values(array_filter([ config('app.social_facebook') ?: null, config('app.social_instagram') ?: null, ])), ]; $foodEstablishmentSchema = [ '@context' => 'https://schema.org', '@type' => 'FoodEstablishment', 'name' => 'Dona-Marmita', 'url' => url('/'), 'logo' => asset('images/logo.png'), 'image' => asset('images/logo.png'), 'description' => 'Refeições caseiras e saudáveis entregues em sua casa.', 'servesCuisine' => 'Comida Caseira', 'areaServed' => [ '@type' => 'Country', 'name' => 'Portugal', ], 'priceRange' => '€€', 'hasDeliveryService' => [ '@type' => 'DeliveryService', 'areaServed' => 'Portugal', ], ]; @endphp {{-- Structured Data - Organization --}} {{-- Structured Data - Food Establishment --}}