mivita/resources/views/web/templates/versandkosten.blade.php

21 lines
No EOL
798 B
PHP

@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout')
@section('content')
<section>
<div class="container">
<div class="white-box">
<h3 class="box-title m-b-0">Versandarten & Versandkosten</h3>
<hr>
@if(Yard::instance('shopping')->getShippingFree())
<div class="row mt-4 mb-0">
<div class="col-md-12 text-center">
<p class="alert alert-success">** Versandkostenfrei ab {{ formatNumber(Yard::instance('shopping')->getShippingFree()) }} &euro;. Ausgenommen sind große, sperrige Artikel oder Artikel die eine spezielle Verpackung benötigen.</p>
</div>
</div>
@endif
</div>
</div>
</section>
@endsection