@extends('storefront.layout') @section('title', 'Parcel Details - '.config('app.name', 'FreshMart')) @section('body_class', 'sf-no-bottom-nav') @section('content') @include('services.parcel._flow-style') @php $draft = $draft ?? []; $parcelStep = 'details'; $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], ]; $selectedBand = old('weight_band', $draft['weight_band'] ?? '0-2'); $selectedCategory = old('package_type', $draft['package_type'] ?? 'Documents'); @endphp
Select what you are sending, weight band and special care instructions.