@if (@isset($widgetContent))
{{ $widgetContent->widget?->widget_name }}
@php $widgetContents = $widgetContent->getTranslation('widget_content', $lang); $steps = $widgetContents['working_process'] ?? [['step_title' => '', 'step_description' => '']]; @endphp
@csrf
@foreach ($steps as $i => $step)
@endforeach
@else
{{ $widgetName }}
@php $lang = $lang ?? app()->getLocale(); $widgetContents = []; if (isset($widgetContent) && $widgetContent) { $widgetContents = $widgetContent->getTranslation('widget_content', $lang) ?? []; } $steps = $widgetContents['working_process'] ?? [['step_title' => '', 'step_description' => '']]; @endphp
@csrf
@foreach ($steps as $i => $step)
@endforeach
@endif