@php($background_Change = \App\Models\BusinessSetting::where(['key' => 'backgroundChange'])->first())
@php($background_Change = isset($background_Change->value) ? json_decode($background_Change->value, true) : null)
@php($site_direction = \App\Models\BusinessSetting::where('key', 'site_direction')->first())
@php($site_direction = $site_direction->value ?? 'ltr')
@php($logo = \App\Models\BusinessSetting::where(['key' => 'icon'])->first()->value ?? '')
@yield('title')
@stack('css_or_js')
{{-- {{ dd($background_Change) }} --}}
@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)
@yield('content')
{!! Toastr::message() !!}
@stack('script_2')