@extends('layouts.frontLayout.front_design') @section('content')
@if(Session::has('flash_message_error'))
{!! session('flash_message_error') !!}
@endif
@if(count($productAltImages)>0)
@foreach($productAltImages as $altimg) @endforeach
@endif
{{ csrf_field() }}

{{ $productDetails->product_name }}

Artikel Nr: {{ $productDetails->product_code }}


CHF {{ $productDetails->price }}

Dimension: {{ $productDetails->dimensions}}

An Lager: @if($total_stock>0) In Stock @else Out Of Stock @endif
Lieferfrist: @if($total_stock>0) 5-15 Tage @else 3-4 Wochen @endif
@if($total_stock>0) @else Warnung: Sie können keine größeren Mengen des Produkts bestellen, die nicht auf Lager sind @endif

{{ $productDetails->description }}

@endsection