Sobre el comercio
{{-- Si más adelante agregas campo descripción, muéstralo aquí --}} Bienvenido(a) a {{ $comercio->nombre }}. {{$comercio->descripcion}}
{{-- JSON-LD LocalBusiness --}} @php $fullAddress = trim(($comercio->direccion ?? '').' '.($comercio->ciudad ?? '').' '.($comercio->region ?? '')); $schema = [ '@context' => 'https://schema.org', '@type' => 'LocalBusiness', 'name' => $comercio->nombre, 'image' => $comercio->imagen ?: asset('images/commerce-default.jpg'), 'telephone' => $comercio->telefono ?: null, 'email' => $comercio->email ?: null, 'address' => [ '@type' => 'PostalAddress', 'streetAddress' => $comercio->direccion ?: null, 'addressLocality' => $comercio->ciudad ?: null, 'addressRegion' => $comercio->region ?: 'Chile', 'addressCountry' => 'CL', ], 'url' => route('comercios.show', $comercio->slug ?? $comercio->id), ]; @endphp
{{ $comercio->direccion }}
@endif{{-- Si más adelante agregas campo descripción, muéstralo aquí --}} Bienvenido(a) a {{ $comercio->nombre }}. {{$comercio->descripcion}}