Résumé de la commande

@foreach ($cart->lines as $line)

{{ $line->purchasable->getDescription() }}

{{ $line->quantity }} @ {{ $line->subTotal->formatted() }}
@endforeach
Sous-total
{{ $cart->subTotal->formatted() }}
@if ($this->shippingOption)
{{ $this->shippingOption->getDescription() }}
{{ $this->shippingOption->getPrice()->formatted() }}
@endif @foreach ($cart->taxBreakdown as $tax)
{{ $tax['description'] }}
{{ $tax['total']->formatted() }}
@endforeach
Total
{{ $cart->total->formatted() }}
@include('partials.checkout.address', [ 'type' => 'shipping', 'step' => $steps['shipping_address'], ]) @include('partials.checkout.shipping_option', [ 'step' => $steps['shipping_option'], ]) @include('partials.checkout.address', [ 'type' => 'billing', 'step' => $steps['billing_address'], ]) @include('partials.checkout.payment', [ 'step' => $steps['payment'], ])