@extends('storefront.layout') @section('title', 'Rate Calculator - '.config('app.name', 'FreshMart')) @section('body_class', 'sf-no-bottom-nav') @section('content') @include('services.parcel._flow-style') @php $categories = ['Documents', 'Grocery', 'Electronics', 'Clothes', 'Medicines', 'Gifts', 'Small Packages', 'Others']; $bands = [ '0-2' => ['label' => '0-2 kg', 'weight' => 1], '2-5' => ['label' => '2-5 kg', 'weight' => 3], '5-10' => ['label' => '5-10 kg', 'weight' => 7], '10-20' => ['label' => '10-20 kg', 'weight' => 15], ]; $selectedCategory = request('package_type', 'Documents'); $selectedBand = request('weight_band', '0-2'); $currency = \App\Support\StorefrontPresenter::currencySymbol(); @endphp
Search pickup and drop suggestions to calculate real admin fare by distance.
Select pickup and drop suggestions to fetch the real admin fare.