@extends('admin/layout') @section('title') {{ labels('admin_labels.update_store', 'Update Store') }} @endsection @section('content') @php $store_settings = $data->store_settings; use App\Services\MediaService; use App\Services\SettingService; @endphp
{{ labels('admin_labels.store_details', 'Store Details') }}
{{ labels('admin_labels.store_images', 'Store Images') }}
{{ labels('admin_labels.app_settings', 'App & Web Setting') }}
{{ labels('admin_labels.cards_display_styles', 'Cards Display Styles') }}
{{ labels('admin_labels.categories_display_style', 'Categories Display Style') }}
{{ labels('admin_labels.brands_display_style', 'Brands And Wishlist Display Style') }}
{{ labels('admin_labels.offer_display_style', 'Offer Display Style') }}
{{ labels('admin_labels.delivery_charge_setting', 'Delivery Charge Setting') }}
@method('PUT') @csrf
{{ labels('admin_labels.store_details', 'Store Details') }}
@foreach ($languages as $lang) @if ($lang->code !== 'en')
@endif @endforeach
primary_color) ? $data->primary_color : '' }}>
secondary_color) ? $data->secondary_color : '' }}>
hover_color) ? $data->hover_color : '' }}>
active_color) ? $data->active_color : '' }}>
background_color) ? $data->background_color : '' }}>
{{ labels('admin_labels.store_images', 'Store Images') }}
@if ($data->image && !empty($data->image))
Not Found
@else
@endif
@if ($data->banner_image && !empty($data->banner_image))
Not Found
@else
@endif
{{ labels('admin_labels.web_home_page_theme', 'Web Home Page Theme') }}
{{-- @dd($store_settings); --}}
Theme 1 Theme 2 Theme 3 Theme 4 Theme 5 Theme 6
{{ labels('admin_labels.app_images', 'App Images') }}
@if ($data->banner_image_for_most_selling_product && !empty($data->banner_image_for_most_selling_product))
Not Found
@else
@endif
@if ($data->stack_image && !empty($data->stack_image))
Not Found
@else
@endif
@if ($data->login_image && !empty($data->login_image))
Not Found
@else
@endif
@if ($data->half_store_logo && !empty($data->half_store_logo))
Not Found
@else
@endif
{{ labels('admin_labels.cards_display_style', 'Cards Display Style') }}
Store Style 1 Store Style 2 Store Style 3
Product Card Style 1 Product Card Style 2 Product Card Style 3
{{ labels('admin_labels.cards_display_style', 'Cards Display Style For Web') }}
{{ labels('admin_labels.categories_display_style', 'Categories Display Style') }}
@foreach ($languages as $lang) @if ($lang->code !== 'en')
@endif @endforeach
Category Style 1 Category Style 2
Category Card Style 1 Category Card Style 2 Category Card Style 3
{{ labels('admin_labels.cards_display_style', 'Cards Display Style For Web') }}
{{ labels('admin_labels.products_details_style', 'Products Details Style For Web') }}
Theme 1 Theme 2
{{ labels('admin_labels.brands_display_style', 'Brands Display Style') }}
Brands Style 1 Brands Style 2
{{ labels('admin_labels.brands_display_style', 'Brands & Wishlist Display Style For Web') }}
{{ labels('admin_labels.offer_display_style', 'Offer Display Style') }}
Offer Slider Style 1 Offer Slider Style 2 Offer Slider Style 3 Offer Slider Style 4 Offer Style 1
{{ labels('admin_labels.delivery_charge_and_product_deliverability_setting', 'Delivery Charge & Product Deliverability Setting') }}
{{ labels('admin_labels.product_deliverability_setting', 'Product Deliverability Setting') }}

@php $shipping_settings = app(SettingService::class)->getSettings('shipping_method', true); $shipping_settings = json_decode($shipping_settings, true); @endphp @if (isset($shipping_settings['shiprocket_shipping_method']) && $shipping_settings['shiprocket_shipping_method'] == 1) (Disabled because standard shipping is on from shipping method) @endif
{{ labels('admin_labels.delivery_charge_setting', 'Delivery Charge Setting') }}
@php $product_wise_delivery_charge = isset( $settings['product_wise_delivery_charge'], ) ? $settings['product_wise_delivery_charge'] : ''; $d_none = $data->delivery_charge_type == 'product_wise_delivery_charge' || $data->delivery_charge_type == 'zipcode_wise_delivery_charge' || $data->delivery_charge_type == 'city_wise_delivery_charge' ? 'd-none' : ''; @endphp

{{ labels('admin_labels.go_back', 'Go Back') }}

@endsection