@extends('backEnd.layouts.master') @section('title', 'Shipping') @push('styles') @endpush @section('content')
এখানে set করা shipping rate **Website Checkout**, **Create Order**, এবং **Product Page shipping table** — সব জায়গায় একইভাবে apply হবে। Product-এ Free Shipping ON থাকলে cart/order-এ shipping ৳0 হবে।
@include('backEnd.shipping.partials.table', compact('rates'))
@csrf
Enter delivery time information (e.g., 24 Hours, 48 Hours, 3-5 Days)
Shipping Mode (Tenant-specific)

Choose how shipping is calculated for your store. This setting is isolated per tenant—other tenants are not affected.

shipping_mode ?? 'district_wise') === 'simple' ? 'checked' : '' }}>
shipping_mode ?? 'district_wise') !== 'simple' ? 'checked' : '' }}>
Rates below apply only when Simple Shipping mode is selected.
Shipping fee for orders inside Dhaka
Shipping fee for orders outside Dhaka
When District-wise mode is selected, the "Shipping" list above is used. Add rows with applicable districts; the charge for the customer's selected district will be applied automatically at checkout.
Save Settings
Shipping Message
show_shipping_info_table ?? true) ? 'checked' : '' }}> Enable this to display shipping information table (Area, Delivery Charge, Times) on product detail pages
This message will be displayed on the checkout page
Save Settings
@endsection @push('scripts') @endpush