{{-- Methodology Phases Section — 4 detailed phase cards with images --}} @php $phaseKeys = ['observation', 'analyse', 'intervention', 'evaluation']; $icons = ['eye', 'line-chart', 'wrench', 'award']; $images = [ 'images/approach/visite.webp', 'images/heros/approach_hero.webp', 'images/approach/plan.webp', 'images/approach/evaluation.webp', ]; @endphp
@foreach($phaseKeys as $index => $key) @php $phase = __("approach.phases.{$key}"); @endphp
{{-- Content --}}
{{ $phase['subject'] }}

{{ $phase['title'] }}

{{ $phase['subtitle'] }}

{{ $phase['description'] }}

@if(!empty($phase['actions']))
    @foreach($phase['actions'] as $action)
  • {{ $action }}
  • @endforeach
@endif
{{-- Image --}}
{{ $phase['image_alt'] }}
@endforeach