@extends('layouts.landing.app') @php($business_name = \App\CentralLogics\Helpers::get_settings('business_name')) @section('title', translate('messages.landing_page') . ' | ' . $business_name != 'null' ? $business_name : 'Sixam Mart') @section('content') @php($front_end_url = \App\Models\BusinessSetting::where(['key' => 'front_end_url'])->first()) @php($front_end_url = $front_end_url ? $front_end_url->value : null) @php($landing_page_text = \App\Models\BusinessSetting::where(['key' => 'landing_page_text'])->first()) @php($landing_page_text = isset($landing_page_text->value) ? json_decode($landing_page_text->value, true) : null) @php($landing_page_links = \App\Models\BusinessSetting::where(['key' => 'landing_page_links'])->first()) @php($landing_page_links = isset($landing_page_links->value) ? json_decode($landing_page_links->value, true) : null) @php($landing_page_images = \App\Models\BusinessSetting::where(['key' => 'landing_page_images'])->first()) @php($landing_page_images = isset($landing_page_images->value) ? json_decode($landing_page_images->value, true) : null) @php($logo = \App\Models\BusinessSetting::where(['key' => 'logo'])->first())

{{ $landing_data['fixed_module_title'] }}

{{ $landing_data['fixed_module_sub_title'] }}

@php($promotion_banner = $landing_data['promotional_banners']) @if ($promotion_banner && count($promotion_banner) > 0)
@endif

{{ $landing_data['feature_title'] }}

{{ $landing_data['feature_short_description'] }}
@php($feature = $landing_data['features'])