Delivery Zones

Delivery Zones

Manage delivery areas and their fees

@forelse($zones as $zone)

{{ $zone->name }}

@if($zone->description)

{{ $zone->description }}

@endif
{{ $zone->is_active ? 'Active' : 'Inactive' }}
Delivery Fee {{ currency_symbol() }}{{ number_format($zone->delivery_fee, 2) }}
Min Order {{ currency_symbol() }}{{ number_format($zone->min_order_amount, 2) }}
@if($zone->free_delivery_above)
Free Delivery Above {{ currency_symbol() }}{{ number_format($zone->free_delivery_above, 2) }}
@endif
Est. Time {{ $zone->estimated_time_min }}-{{ $zone->estimated_time_max }} min
@if($zone->radius_km)
Radius {{ $zone->radius_km }} km
@endif @if($zone->areas && count($zone->areas) > 0)
Areas:
@foreach(array_slice($zone->areas, 0, 3) as $area) {{ $area }} @endforeach @if(count($zone->areas) > 3) +{{ count($zone->areas) - 3 }} more @endif
@endif
@empty

No delivery zones yet

Create delivery zones to define delivery areas and fees

@endforelse

{{ currency_symbol() }}
{{ currency_symbol() }}
{{ currency_symbol() }}