Benjamin Völkl 2023-08-10 18:14:05 +02:00
parent 4f1e7956f7
commit 825eef940c
3 changed files with 30 additions and 8 deletions

View File

@ -78,6 +78,7 @@
<br>

<br>
{!! $content->kurzbeschreibung !!}

<br>

@ -147,7 +148,7 @@
</div>
</div>

<div class="row mt-5 ">
<div class="row mt-5">
<div class="col-12 col-md-6">
<button id="btn-add-to-bag" data-id="{{$content->id}}" class="btn btn-outline-success mb-5" style="padding-top: 6px; padding-bottom: 6px; padding-right: 20px; padding-left: 20px;">
<svg style="fill: currentColor; width: 19px; margin-right: 8px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M352 128C352 57.42 294.579 0 224 0 153.42 0 96 57.42 96 128H0v304c0 44.183 35.817 80 80 80h288c44.183 0 80-35.817 80-80V128h-96zM224 48c44.112 0 80 35.888 80 80H144c0-44.112 35.888-80 80-80zm176 384c0 17.645-14.355 32-32 32H80c-17.645 0-32-14.355-32-32V176h48v40c0 13.255 10.745 24 24 24s24-10.745 24-24v-40h160v40c0 13.255 10.745 24 24 24s24-10.745 24-24v-40h48v256z"/></svg>
@ -167,9 +168,17 @@
</div>
</div>
</div>


<div class="row">
<div class="col-12 fs-5 mb-5">
<h2 class="mb-2 mt-4">Produktbeschreibung</h2>
{!! $content->beschreibung !!}

</div>
</div>
</div>

</div>
@stop
@section('scripts')
<script src="{{storage('js/product.js')}}"></script>

View File

@ -7,7 +7,7 @@

<div class="card text-bg-dark">
<img src="{{$cover}}" class="img-fluid shadow-lg" alt="" >
<div class="card-img-overlay" >
<div class="card-img-overlay d-none d-lg-block" >
<div class="container p-3 mt-5 rounded" style="width: 55vw;
background: rgba(252, 252, 252, 0.38);
border-radius: 16px;
@ -21,6 +21,16 @@ border: 1px solid rgba(252, 252, 252, 0.54);">
</div>
</div>

<div class="container d-lg-none">
<div class="row">
<div class="col-12">
<h1 class="card-title my-3">{{config('settings.name')}}</h1>
<p class="card-text my-2 text-muted fs-5">{{config('settings.description')}}</p>
</div>
</div>

</div>

<section id="article-section" >
<div class="container">
<div class="row">
@ -64,7 +74,10 @@ border: 1px solid rgba(252, 252, 252, 0.54);">
</div>
@endforeach
<div class="col-12 text-center mt-4">
<a href="{{url('/aktuelles')}}" class="text-muted text-decoration-none">Ältere Nachrichten</a>
<a href="{{url('/aktuelles')}}" class="text-muted text-decoration-none">
<svg style="fill: currentColor; width: 14px; margin-right: 4px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M32 132V48c0-8.8-7.2-16-16-16S0 39.2 0 48V176c0 8.8 7.2 16 16 16H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H53.6C89.5 84.3 166.7 32 256 32c123.7 0 224 100.3 224 224s-100.3 224-224 224c-73.3 0-138.3-35.2-179.2-89.6c-5.3-7.1-15.3-8.5-22.4-3.2s-8.5 15.3-3.2 22.4C97.9 471.8 172.2 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C159.6 0 75.7 53.3 32 132zm224-4c-8.8 0-16 7.2-16 16V256c0 4.2 1.7 8.3 4.7 11.3l80 80c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L272 249.4V144c0-8.8-7.2-16-16-16z"/></svg>
Ältere Nachrichten
</a>
</div>

</div>
@ -131,7 +144,7 @@ border: 1px solid rgba(252, 252, 252, 0.54);">
<p class="mt-4">


Telefon: <a href="tel://+499654770" class="text-decoration-none">09654/770</a>
Telefon: <a href="tel://{{$_telefonnummer}}" class="text-decoration-none">{{$_telefonnummer}}</a>


</p>
@ -156,7 +169,7 @@ border: 1px solid rgba(252, 252, 252, 0.54);">


<p class="mt-4">
<a href="mailto:info@kurbad-pleystein.de" class="text-decoration-none">info@kurbad-pleystein.de</a>
<a href="mailto:{{$_legal_zip_code}}" class="text-decoration-none">{{$_legal_zip_code}}</a>
</p>
<br>
<br>

View File

@ -36,9 +36,9 @@
Geschäftsführer: {{$_ceo}}
<br>
<br>
Tel.: <a href="tel:+499654770">09654/770</a>
Tel.: <a href="tel:{{$_telefonnummer}}">{{$_telefonnummer}}</a>
<br>
E-Mail: <a href="mailto:info@kurbad-pleystein.de">info@kurbad-pleystein.de</a>
E-Mail: <a href="mailto:{{$_legal_zip_code}}">{{$_legal_zip_code}}</a>

<br>
<br>