@extends('layouts.default') @section('title', 'Notre histoire - Lécuyer') @section('css') @endsection @section('content')

{{ $title }}


OFFICE DE GESTION ET DE
TRANSACTION IMMOBILIÈRE

@foreach($timeline as $i => $entry) @if($i % 2 === 0) {{-- Odd entries (0-indexed even): text left, image right --}}

{{ $entry['year'] }}

{!! $entry['description'] !!}

@else {{-- Even entries (0-indexed odd): image left, text right --}}

{{ $entry['year'] }}

{!! $entry['description'] !!}

@endif @endforeach
@include('elements.learn-more') @endsection