${store.name}

${store.address}
${store.city}

${store.phone ? `${store.phone}` : `Téléphone non disponible` }

Horaires d’ouverture

${Alpine.store('locator').days.map(day => { const value = (store[day.key] || '').trim(); const segments = value.includes(',') ? value.split(',').map(s => s.trim()) : [value]; const closed = segments[0].toLowerCase().includes("fermé"); return `
${day.label} ${segments.filter(Boolean).join('
') || 'Fermé'}
`; }).join('')}
Itinéraire