{{ __('Shipping') }}
{{ __('Please enter your shipping details to ensure your product arrives on time. Make sure to update your delivery address and any special notes that may help expedite the shipping process.') }}
{{ __('Shipping details') }}
@forelse(auth()->user()->addresses ?? [] as $address)
{{ $address->first_name . ' ' . $address->second_name }}
{{ $address->city?->getTranslation('city',app()->getLocale()) . ' ' . $address->region . ' ' . $address->street . ' ' . $address->distinct }}
{{ $address->country_code}} {{ $address->mobile }}
{{ __('Add New Address') }}
@endforelse
{{ __('Specify shipping companies for each product.') }}
{{ __('Store Title') }}: {{ $store->getTranslation('title', app()->getLocale()) }}
@foreach ($store->products as $product) @php $cart = $product->carts()->where('user_id', auth()->id())->first(); @endphp @if ($cart){{ $product->getTranslation('description', app()->getLocale()) }}
{{ number_format($product->product_net_price, 2) }}
@if(app()->getLocale() == 'en')
{{ __('No selection yet') }}
@else
{{ __('No selection yet') }}
@endif
{{ __('Choose payment method') }}
{{ __('Order summary') }}
@php $subtotal = auth()->user()->carts()->sum('total'); $vat = $subtotal * 0.15; @endphp{{ __('Total products') }}
{{ number_format($subtotal, 2) }}  }})
{{ __('Discount') }}
0  }})
{{ __('Shipping Cost') }}
0  }})
{{ __('VAT') }} (15%)
{{ number_format($vat, 2) }}  }})
{{ __('Total') }}
{{ number_format($subtotal + $vat, 2) }}  }})
{{ __('Prices include tax') }}*