@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') @section('content')

Warenkorb

Du hast {{ Yard::instance('shopping')->count() }} Artikel in Deinem Warenkorb

@if(Yard::instance('shopping')->content()->count()) {!! Form::open(['url' => url(Util::getPostRoute().'card/update'), 'class' => 'cartContent clearfix', 'id'=>'']) !!}
@foreach(Yard::instance('shopping')->content() as $row) @php($product = \App\Models\Product::find($row->id)) @endforeach
Produkt Preis Anzahl Summe #
@if($row->options->has('image')) @else @endif {{ $row->name }}
Inhalt: {{ $product->contents }}
Art.-Nr.: {{ $product->number }}
Lieferzeit: 1-3 Werktage
{{ $row->price() }}
{{$product->getBasePriceFormattedFull()}}
{{ $row->subtotal() }} €
{{--
Produkt Preis Anzahl
@foreach(Yard::instance('shopping')->content() as $row) @php($product = \App\Models\Product::find($row->id))
@if($row->options->has('image')) @else @endif
{{ $row->name }}
{{$product->getBasePriceFormattedFull()}}
Lieferzeit: 1-3 Werktage
{{ $row->subtotal() }}
× {{ $row->price() }} €
@endforeach
--}} Warenkorb löschen
{!! Form::close() !!} @endif
@if(Yard::instance('shopping')->content()->count())

Warenkorb Summe

{{ Yard::instance('shopping')->total() }} € Zwischensumme:

Versandland:
{{ Yard::instance('shopping')->shipping() }} € Versandkosten:

{{ Yard::instance('shopping')->subtotalWithShipping() }} € Summe ohne MwSt:
{{ Yard::instance('shopping')->taxWithShipping() }} € zzgl. {{ Yard::getTaxRate() }} % MwSt:

{{ Yard::instance('shopping')->totalWithShipping() }} € Gesamtsumme: zur Kasse

Sie werden auf unseren checkout Server weitergeletet, die Verbindung ist mit SSL verschlüsselt.

@endif



Alle Preise inkl. gesetzl. Mehrwertsteuer zzgl. Versandkosten, wenn nicht anders beschrieben

@endsection