@extends('admin.layouts.app') @push('style-push') @endpush @section('main_content') @php $notes = [ 'PRODUCT_CENTRIC' => translate("The shipping cost is determined by summing the individual shipping costs of each product."), 'FLAT' => translate("The shipping cost remains fixed regardless of the number of products a customer purchases."), 'LOCATION_BASED' => translate("Shipping cost is a fixed rate based on the customer's area. For multiple products from one seller, the cost is determined by the shipping area. Configure area-wise costs in Shipping Cities "), 'CARRIER_SPECIFIC' => translate("Shipping cost is determined by the chosen carrier. Carriers can offer free shipping or set costs based on weight or price ranges. Configure these in Shipping Carriers ") ]; $shippingConfiguration = json_decode(site_settings('shipping_configuration')); @endphp

{{ translate($title) }}

{{ translate('Shipping Configuration') }}
@csrf
{{ translate('Notes') }}
{{translate('Select a shipping option to see detailed information.')}}
@endsection @push('script-include') @endpush