@php
$physical = false;
@endphp
@foreach ($admin_products as $key => $cartItem)
@php
$product = \App\Models\Product::find($cartItem);
if ($product->digital == 0) {
$physical = true;
}
@endphp
-
{{ $product->getTranslation('name') }}
@if ($admin_product_variation[$key] != '')
{{ translate('Variation') }}: {{ $admin_product_variation[$key] }}
@endif
@endforeach
@if ($physical)
{{ translate('Choose Delivery Type') }}
@if ($pickup_point_list)
@endif
@if (get_setting('shipping_type') == 'carrier_wise_shipping')
@foreach($carrier_list as $carrier_key => $carrier)
@endforeach
@endif
@endif