@props(['service']) @if(!empty($service['process'])) @php $steps = array_values($service['process']); $phaseLabels = [ __('messages.service_detail.process_phase_strategy'), __('messages.service_detail.process_phase_build'), __('messages.service_detail.process_phase_launch'), __('messages.service_detail.process_phase_grow'), ]; @endphp
    @foreach($steps as $i => $step) @php $phase = trim((string) ($step['phase'] ?? '')); if ($phase === '') { $phase = $phaseLabels[$i] ?? ''; } @endphp
  1. @if($phase !== '') {{ $phase }} @endif

    {{ $step['title'] }}

    {{ $step['description'] }}

    @if(! empty($step['outcome']))

    {{ $step['outcome'] }}

    @endif
  2. @endforeach
@endif