@extends('layouts.app')
@section('title', 'Nos Magasins - Jolis Matelas')
@push('styles')
@endpush
@section('content')
@include('partials.page-hero', [
'title' => 'Nos Magasins',
'subtitle' => 'Trouvez le magasin Jolis Matelas le plus proche de chez vous',
'breadcrumbs' => [
['label' => 'Accueil', 'href' => route('home')],
['label' => 'Magasins']
]
])
@if($stores->isEmpty())
Aucun magasin disponible
Revenez bientôt !
@else
@foreach($stores as $store)
{{ $store->name }}
{{ $store->city ?? '—' }}
@if($store->description)
{{ $store->description }}
@endif
@if($store->street || $store->postal_code || $store->city)
@if($store->street)
{{ $store->street }}
@endif
{{ $store->postal_code ?? '' }}
{{ $store->city ?? '' }}
@endif
@if($store->phone)
@endif
@if($store->email)
@endif
@if($store->opening_hours)
@foreach($store->opening_hours as $day => $hours)
{{ $day }} : {{ $hours }}
@endforeach
@endif
@endforeach
@endif
@endsection