@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