{{-- Header --}}

Delivery Methods

Manage shipping options and costs

{{-- Main Container --}}
@foreach($deliveryMethods as $method)

{{ $method->name }}

ID: #{{ $method->id }}

@csrf @method('DELETE')

Shipping Cost

৳{{ number_format($method->cost) }}

Status

@if($method->is_active) Active @else Inactive @endif
@endforeach
{{-- Modals --}}

New Delivery Method

Configure shipping option

@csrf

Edit Delivery Method

Update shipping configuration

@csrf @method('PUT')