@foreach($all_languages as $key => $lang)
@php
$offer_item_title = get_static_option('home_page_15_'.$lang->slug.'_offer_item_title');
$offer_item_title = !empty($offer_item_title) ? unserialize($offer_item_title,['class' => false]) : ['Fresh Lichi'];
$offer_item_short_description = get_static_option('home_page_15_'.$lang->slug.'_offer_item_short_description');
$offer_item_short_description = !empty($offer_item_short_description) ? unserialize($offer_item_short_description,['class' => false]) : [];
$offer_item_button_text = get_static_option('home_page_15_'.$lang->slug.'_offer_item_button_text');
$offer_item_button_text = !empty($offer_item_button_text) ? unserialize($offer_item_button_text,['class' => false]) : [];
$offer_item_image = get_static_option('home_page_15_offer_item_image');
$offer_item_image = !empty($offer_item_image) ? unserialize($offer_item_image,['class' => false]) : [];
@endphp
@endforeach