@include('admin.header')

CATALOG

MANAGE - Shipping

@if (isset($shippingData) && count($shippingData) > 0) @foreach ($shippingData as $ship) @endforeach @endif
Date & Time Shipping Type Days Range Per 1000 ML (Inter State) Per 1000 ML (Intra State) Status Action
{{ $ship->created_at }} {{ $ship->name }} {{ $ship->delivery_days_range }} INR {{ $ship->in_state_charge }} INR {{ $ship->out_state_charge }} {{ $ship->status=="active" ? "Active" :"De-Active" }}

Free - Shipping

@if (isset($freeshiping) && count($freeshiping) > 0) @foreach ($freeshiping as $ship) @endforeach @endif
Date & Time Days Range (Inter State) Minimum Order Amount (Inter State) Days Range (Intra State) Minimum Order Amount (Intra State) Status Action
{{ $ship->created_at }} {{ $ship->day_range_inter_state }} INR {{ $ship->min_order_value_interstate }} {{ $ship->day_range_intra_state }} INR {{ $ship->min_order_value_intrastate }} {{ $ship->status=="active" ? "Active" :"De-Active" }}
@include('admin.footer')