@extends('layouts.admin') @section('content')

Shipping methods

Manage checkout delivery options, tracking templates, thresholds, and default pricing behaviour.
Add method
@foreach($methods as $method)@endforeach
NameZonePriceFree thresholdTracking templateStatusActions
{{ $method->name }} @if($method->is_default)Default@endif{{ $method->shippingZone?->name ?? 'All zones' }}@money($method->price){{ $method->free_shipping_threshold ? '£'.number_format((float) $method->free_shipping_threshold, 2) : 'None' }}{{ $method->tracking_url_template ?: 'Not set' }}{{ $method->is_active ? 'Active' : 'Inactive' }}
Edit
@csrf @method('DELETE')
@endsection