@php $singleWidgetData = []; if (!empty($singleWidgetDataShow)) { $singleWidgetData = $singleWidgetDataShow->getTranslation('widget_content'); $steps = $singleWidgetData['working_process'] ?? []; } @endphp
@if (!empty($singleWidgetData['title']))

{{ $singleWidgetData['title'] }}

@endif
@foreach ($steps as $index => $step) @php $styleClass = $index > 0 ? 'style-' . ($index + 1) : ''; $svg = $index % 2 === 0 ? 'svg-01' : 'svg-02'; @endphp

{{ sprintf('%02d', $index + 1) }}

{{ translate($step['step_title'] ?? '') }}

{{ translate($step['step_description'] ?? '') }}

@if ($index % 2 === 0) @else @endif
@endforeach