@if($showTitle??false)
{{$module->titleFiled}}
@endif @foreach($mmGraphics as $graphics) @php if ($language === 'en') { $images = $graphics->carouselEnglish; $data = [ 'title'=>$graphics->nameEnglish, 'text'=>$graphics->introductionEnglish, 'image' => [] ]; } else { $images = $graphics->carouselChinese; $data = [ 'title'=>$graphics->nameChinese, 'text'=>$graphics->introductionChinese, 'image' => [] ]; } if (isset($images[0]['name'])) { $data['image'][] = config('locations.translationsModuleManagement.asset').$images[0]['name']; } if (isset($images[1]['name'])) { $data['image'][] = config('locations.translationsModuleManagement.asset').$images[1]['name']; } @endphp @include('translation::layouts.components.product.support.details.comparison_row', ['data'=>$data]) @endforeach