@extends('layouts.landing.app-v2') @section('home','active') @php($business_name=\App\Models\BusinessSetting::where(['key' => 'business_name'])->first()->value ?? 'Stackfood') @section('title', $business_name ) @section('content') @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($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)

{{ translate('messages.about_us') }}

{{ isset($landing_page_text) ? $landing_page_text['about_title'] : '' }}

{!! \Illuminate\Support\Str::limit(\App\CentralLogics\Helpers::get_settings('about_us'), 200) !!}

{{ translate('messages.read_more') }}
about
@php($feature = \App\Models\BusinessSetting::where(['key' => 'feature'])->first()) @php($feature = isset($feature->value) ? json_decode($feature->value, true) : null) @if ($feature && count($feature) > 0)

{{ isset($landing_page_text['feature_section_title']) ? $landing_page_text['feature_section_title'] :translate('messages.our_features') }}

{{ isset($landing_page_text['feature_section_description']) ? $landing_page_text['feature_section_description'] : 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam ex odio, turpis accumsan congue.' }}

@endif
@php($order_platform = \App\Models\BusinessSetting::where(['key' => 'order_platform'])->first()) @php($order_platform = isset($order_platform->value) ? json_decode($order_platform->value, true) : null) @php($delivery_platform = \App\Models\BusinessSetting::where(['key' => 'delivery_platform'])->first()) @php($delivery_platform = isset($delivery_platform->value) ? json_decode($delivery_platform->value, true) : null) @php($restaurant_platform = \App\Models\BusinessSetting::where(['key' => 'restaurant_platform'])->first()) @php($restaurant_platform = isset($restaurant_platform->value) ? json_decode($restaurant_platform->value, true) : null)

{{ isset($landing_page_text['our_platform_title']) ? $landing_page_text['our_platform_title'] : '' }}

{{ isset($landing_page_text['our_platform_article']) ? $landing_page_text['our_platform_article'] : '' }}

@if(isset($order_platform))
@php($order_platform_datas = \App\Models\BusinessSetting::where(['key'=>'platform_order_data'])->first()) @php($order_platform_datas = isset($order_platform_datas->value)?json_decode($order_platform_datas->value, true):[]) @foreach($order_platform_datas as $order_platform_data)

{{$order_platform_data['title']}}

{{$order_platform_data['detail']}}

@endforeach @if($order_platform['url_status'] ==1 ) {{ translate('messages.Download_now') }} @endif
@endif @if( isset($restaurant_platform) )
@php($platform_restaurant_datas = \App\Models\BusinessSetting::where(['key'=>'platform_restaurant_data'])->first()) @php($platform_restaurant_datas = isset($platform_restaurant_datas->value)?json_decode($platform_restaurant_datas->value, true):[]) @foreach($platform_restaurant_datas as $platform_restaurant_data)

{{$platform_restaurant_data['title']}}

{{$platform_restaurant_data['detail']}}

@endforeach @if($restaurant_platform['url_status'] == 1) {{ translate('messages.Download_now') }} @endif
@endif @if( isset($delivery_platform))
@php($platform_delivery_datas = \App\Models\BusinessSetting::where(['key'=>'platform_delivery_data'])->first()) @php($platform_delivery_datas = isset($platform_delivery_datas->value)?json_decode($platform_delivery_datas->value, true):[]) @foreach($platform_delivery_datas as $platform_delivery_data)

{{$platform_delivery_data['title']}}

{{$platform_delivery_data['detail']}}

@endforeach @if($delivery_platform['url_status'] ==1 ) {{ translate('messages.Download_now') }} @endif
@endif
@php($speciality = \App\Models\BusinessSetting::where(['key' => 'speciality'])->first()) @php($speciality = isset($speciality->value) ? json_decode($speciality->value, true) : null) @if (isset($speciality) && count($speciality) > 0)

{{ isset($landing_page_text) ? $landing_page_text['why_choose_us'] : '' }}

{{ isset($landing_page_text) ? $landing_page_text['why_choose_us_title'] : '' }}

@foreach ($speciality as $sp)
Image

{{ $sp['title'] }}

@endforeach
@endif @if ($toggle_dm_registration || $toggle_restaurant_registration)

{{ isset($landing_page_text['join_us_title']) ? $landing_page_text['join_us_title'] : '' }}

{{ isset($landing_page_text['join_us_article']) ? $landing_page_text['join_us_article'] : '' }}

{{ isset($landing_page_text['join_us_sub_title']) ? $landing_page_text['join_us_sub_title'] : '' }}

@if ($toggle_restaurant_registration) {{ translate('messages.be_a_restaubant_owner') }} @endif @if ($toggle_dm_registration) {{ translate('messages.be_a_deliveryman') }} @endif
@endif

{{ isset($landing_page_text) ? $landing_page_text['testimonial_title'] : '' }}

@php($testimonial = \App\Models\BusinessSetting::where(['key' => 'testimonial'])->first()) @php($testimonial = isset($testimonial->value) ? json_decode($testimonial->value, true) : null)
@endsection @push('script_2') @endpush