@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'=>'']) !!}
Artikel
Einzelpreis
Anzahl
@foreach(Yard::instance('shopping')->content() as $row) @php($product = \App\Models\Product::find($row->id))
{{ $row->name }}
Inhalt: {{ $product->contents }}
Art.-Nr.: {{ $product->number }}
Lieferzeit: 1-3 Werktage
{{ $row->price() }} €
{{$product->getBasePriceFormattedFull()}}
inkl. {{ number_format($row->taxRate, 0)}}% MwSt.
{{ $row->subtotal() }}
@endforeach Warenkorb löschen
{!! Form::close() !!} @endif
@if(Yard::instance('shopping')->content()->count())

Warenkorb Summe

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

Lieferland:
{{ 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