{{ __("checkout.your_cart") }}
{!! trans_choice("checkout.num_cart_items", count($cartItems), ['num' => count($cartItems)]) !!}
{{ __("checkout.billing_address") }}
@if ($billingProfiles->isNotEmpty())
@foreach ($billingProfiles as $profile)
@endforeach
@else
{{ $profile->name }}
{{ $profile->street }}, {{ $profile->city }}, {{ $profile->province }}
{!! __("checkout.no_billing_address", ['route' => route('address.create', ['billing'])]) !!}
@endif{{ __("checkout.shipping_address") }}
@if ($shippingProfiles->isNotEmpty())
@foreach ($shippingProfiles as $profile)
@endforeach
@else
{{ $profile->name }}
{{ $profile->street }}, {{ $profile->city }}, {{ $profile->province }}
{!! __("checkout.no_shipping_address", ['route' => route('address.create', ['shipping'])]) !!}
@endif{{ __("checkout.your_order") }}
{{ __("checkout.subtotal") }}
@if($item['img_01'] != null && Storage::exists($item['img_01'])) @endif |
{{ $item['name'] }} x {{ $item['quantity'] }}@if($item['type'] == 'ebook') {{ __("checkout.format_digital") }} @else {{ __("checkout.format_tiparit") }} @endif |
{{ priceView($item['quantity'] * $item['price'], true) }} |
{{ __("checkout.tax") }}
{{ priceView($tax) }}
{{ __("checkout.shipping_cost") }}
@if($shippingCost > 0) {{ priceView($shippingCost) }} @else Gratuit @endif
{{ __("checkout.total") }}
{{ priceView($total + $shippingCost) }}
{{ __("checkout.payment_method") }}
@if(!$containsEbook)
@endif
@if ($errors->any())
Ceva nu a mers bine!
Vă rugăm să corectați următoarele erori.
@endif
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach