|
{{ $key + 1 }}
|
{{ $shippingRule->name }}
|
@php
switch ($shippingRule->type) {
case 'flat_cost':
echo 'Flat Cost';
break;
case 'min_cost':
echo 'Minimum Cost';
break;
}
@endphp
|
{{ formatAmount($shippingRule->min_cost, $settings) }}
|
{{ formatAmount($shippingRule->cost, $settings) }}
|
@if ($shippingRule->status == 1)
@else
@endif
|
|
@empty
@endforelse