@foreach (json_decode($service->sections) as $index => $section)
@php
$hasContent = app()->getLocale() == 'ar' ? !empty($section->service_content_ar) : !empty($section->service_content_en);
@endphp
@if ($index % 2 == 0)
@if ($hasContent)
{!! app()->getLocale() == 'ar' ? $section->service_content_ar : $section->service_content_en !!}
@else
@endif
@else
@if ($hasContent)
{!! app()->getLocale() == 'ar' ? $section->service_content_ar : $section->service_content_en !!}
@else
@endif
@endif
@endforeach