235 lines
No EOL
9.1 KiB
PHP
235 lines
No EOL
9.1 KiB
PHP
@extends('web.layouts.layout')
|
|
|
|
@section('content')
|
|
|
|
<section class="page-header page-header-xlg parallax parallax-3"
|
|
style="background-image:url('/assets/images/vision-min.jpg')">
|
|
<div class="overlay dark-1"><!-- dark overlay [1 to 9 opacity] --></div>
|
|
|
|
<div class="container">
|
|
</div>
|
|
</section>
|
|
<!-- /PAGE HEADER -->
|
|
|
|
<style>
|
|
div.shop-item {
|
|
margin-bottom:30px;
|
|
border: 1px solid #ddd;
|
|
}
|
|
div.shop-item > .thumbnail, .thumbnail {
|
|
border: none;
|
|
}
|
|
div.shop-item-summary {
|
|
padding: 8px;
|
|
}
|
|
div.shop-item-summary h2 a {
|
|
color: #9aa983;
|
|
font-size: 1.2em;
|
|
margin: 0 0 10px 0;
|
|
}
|
|
div.shop-item-buttons {
|
|
padding: 0 8px 10px 8px;
|
|
}
|
|
div.shop-item-buttons .btn-xs{
|
|
padding: 4px;
|
|
}
|
|
.cartContent a.remove_item {
|
|
background: transparent;
|
|
}
|
|
.cartContent .product_name {
|
|
font-size: 1.15em;
|
|
}
|
|
.cartContent .product_name > small {
|
|
line-height: 20px;
|
|
}
|
|
|
|
.cartContent .head .product_name {
|
|
min-height: auto;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
.cartContent .yard .product_name {
|
|
padding-bottom: 0;
|
|
min-height: 60px;
|
|
width: 60%;
|
|
}
|
|
.cartContent .yard .remove_item {
|
|
clear: right;
|
|
}
|
|
.cartContent .yard .total_price {
|
|
width: auto;
|
|
padding-top: 30px;
|
|
clear: right;
|
|
}
|
|
.cartContent .yard .item .qty {
|
|
float: left;
|
|
text-align: left;
|
|
}
|
|
.cartContent .yard .item.head {
|
|
display: none;
|
|
}
|
|
|
|
}
|
|
@media only screen and (min-width: 768px) {
|
|
|
|
.cartContent .yard .total_price {
|
|
padding-top: 10px;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 992px) {
|
|
.cartContent .yard .total_price {
|
|
padding-top: 30px;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 1200px) {
|
|
.cartContent .yard .total_price {
|
|
padding-top: 10px;
|
|
}
|
|
}
|
|
|
|
</style>
|
|
<!-- -->
|
|
{{ Yard::instance('shopping')->setShipping(5.9) }}
|
|
<section>
|
|
<div class="container">
|
|
|
|
<h1>Warenkorb</h1>
|
|
|
|
<!-- EMPTY CART -->
|
|
<!-- <div class="panel panel-default">
|
|
<div class="panel-body">
|
|
<strong>Shopping cart is empty!</strong><br />
|
|
You have no items in your shopping cart.<br />
|
|
Click <a href="index.html">here</a> to continue shopping. <br />
|
|
<span class="label label-warning">this is just an empty cart example</span>
|
|
</div>
|
|
</div>-->
|
|
<!-- /EMPTY CART -->
|
|
|
|
|
|
|
|
<!-- CART -->
|
|
<div class="row">
|
|
|
|
<!-- LEFT -->
|
|
<div class="col-lg-9 col-sm-7">
|
|
|
|
<h3>Du hast {{ Yard::instance('shopping')->count() }} Artikel in Deinem Warenkorb</h3>
|
|
|
|
@if(Yard::instance('shopping')->content()->count())
|
|
<!-- CART -->
|
|
{!! Form::open(['url' => route('card_update'), 'class' => 'cartContent clearfix', 'id'=>'']) !!}
|
|
|
|
<!-- cart content -->
|
|
<div id="cartContent">
|
|
<div class="box-border-shadow">
|
|
<!-- cart header -->
|
|
<div class="item head clearfix">
|
|
<span class="cart_img"></span>
|
|
<span class="product_name size-15 bold">Produkt</span>
|
|
<span class="remove_item size-15 bold"></span>
|
|
<span class="total_price size-15 bold">Preis</span>
|
|
<span class="qty size-15 bold">Anzahl</span>
|
|
</div>
|
|
|
|
|
|
@foreach(Yard::instance('shopping')->content() as $row)
|
|
|
|
<div class="item yard">
|
|
<div class="cart_img pull-left width-100 padding-10 text-left">
|
|
@if($row->options->has('image'))
|
|
<img src="{{ route('product_image', [$row->options->image]) }}" width="80" alt="">
|
|
@else
|
|
<img src="{{ asset('/assets/images/1x1.png') }}" width="80" alt="">
|
|
@endif
|
|
</div>
|
|
<a href="{{ url('/produkte/alle-produkte/'.$row->options->slug) }}" class="product_name">
|
|
<span>{{ $row->name }}</span>
|
|
<small>Lieferzeit: 1-3 Werktage</small>
|
|
</a>
|
|
<a href="{{ route('card_remove', [$row->rowId]) }}" class="remove_item"><i class="fa fa-times"></i></a>
|
|
|
|
<div class="total_price"><span>{{ $row->subtotal() }} </span> €</div>
|
|
<div class="qty"><input type="number" value="{{ $row->qty }}" name="quantity[{{$row->rowId}}]" maxlength="3" max="999" min="1" /> × {{ $row->price() }} € </div>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
|
|
@endforeach
|
|
</div>
|
|
<a href="{{route('card_delete')}}" class="btn btn-default margin-top-20 margin-right-10 pull-left"><i class="glyphicon glyphicon-remove"></i> Warenkorb löschen</a>
|
|
<button type="submit" class="btn btn-primary margin-top-20 pull-right"><i class="glyphicon glyphicon-refresh"></i> Warenkorb aktualisieren</button>
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
</div>
|
|
|
|
{!! Form::close() !!}
|
|
<!-- /CART -->
|
|
@endif
|
|
|
|
</div>
|
|
|
|
|
|
<!-- RIGHT -->
|
|
<div class="col-lg-3 col-sm-5">
|
|
|
|
@if(Yard::instance('shopping')->content()->count())
|
|
<h3>Warenkorb Summe</h3>
|
|
|
|
|
|
<div class="toggle-transparent toggle-bordered-full clearfix">
|
|
<div class="toggle active">
|
|
<div class="toggle-content">
|
|
|
|
<div class="clearfix mb-2">
|
|
<span class="pull-right">{{ Yard::instance('shopping')->total() }} €</span>
|
|
<strong class="pull-left">Zwischensumme:</strong>
|
|
</div>
|
|
|
|
<div class="clearfix mb-2">
|
|
<span class="pull-right small">{{ Yard::instance('shopping')->shipping() }} € </span>
|
|
<span class="pull-left small">Versandkosten:</span>
|
|
</div>
|
|
|
|
<hr class="mt-4 mb-4">
|
|
|
|
<div class="clearfix mb-2">
|
|
<span class="pull-right small">{{ Yard::instance('shopping')->subtotalWithShipping() }} €</span>
|
|
<span class="pull-left small">Summe ohne MwSt:</span>
|
|
</div>
|
|
|
|
<div class="clearfix mb-2">
|
|
<span class="pull-right small">{{ Yard::instance('shopping')->taxWithShipping() }} €</span>
|
|
<span class="pull-left small"> zzgl. {{ Yard::getTaxRate() }} % MwSt.:</span>
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<span class="clearfix ">
|
|
<span class="pull-right size-20"><strong>{{ Yard::instance('shopping')->totalWithShipping() }} €</strong></span>
|
|
<strong class="pull-left">Gesamtsumme:</strong>
|
|
</span>
|
|
|
|
|
|
<a href="{{ route('card_checkout') }}" class="btn btn-primary btn-lg btn-block size-15 mt-4"><i class="fa fa-mail-forward"></i> zur Kasse</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
<br><br>
|
|
<hr>
|
|
<p><em class="small" style="color: #828282">Alle Preise inkl. gesetzl. Mehrwertsteuer zzgl. Versandkosten, wenn nicht anders beschrieben</em></p>
|
|
<!-- /CART -->
|
|
|
|
</div>
|
|
</section>
|
|
|
|
@endsection |