@php $physical = false; $col_val = 'col-12'; foreach ($products as $key => $cartItem){ $product = get_single_product($cartItem); if ($product->digital == 0) { $physical = true; $col_val = 'col-md-6'; } } @endphp
@if ($physical)
{{ translate('Choose Delivery Type') }}
@if (get_setting('shipping_type') != 'carrier_wise_shipping')
@else
@endif @if ($pickup_point_list)
@endif
@if ($pickup_point_list)
@endif @if (get_setting('shipping_type') == 'carrier_wise_shipping')
@if($carrier_list->isEmpty())
{{ translate('Shipping is not available to your selected address.') }}
{{ translate('Please choose a different address.') }}
@else @foreach($carrier_list as $carrier_key => $carrier)
@endforeach @endif
@endif
@endif