@extends('layouts.vending') @section('title', $product->name . ' - LMIV Informationen') @section('content')
Zurück zur Auswahl
@if($product->image) {{ $product->name }} @else
Kein Produktbild verfügbar
@endif

{{ $product->name }}

@if($product->description)

{{ $product->description }}

@endif @if(isset($tenant) && $tenant->show_prices)
{{ number_format($product->price, 2) }}€
@elseif(!isset($tenant))
{{ number_format($product->price, 2) }}€
@endif @if($product->net_weight)

Nettofüllmenge: {{ $product->net_weight }}

@endif @if($product->manufacturer)

Hersteller: {{ $product->manufacturer }}

@endif @if($product->origin)

Herkunft: {{ $product->origin }}

@endif

Nährwerte pro 100g

@if($product->energy_kj || $product->energy_kcal)

Brennwert

@if($product->energy_kj)

{{ $product->energy_kj }} kJ

@endif @if($product->energy_kcal)

{{ $product->energy_kcal }} kcal

@endif
@endif @if($product->fat)

Fett

{{ $product->fat }}g

@if($product->saturated_fat)

davon gesättigte Fettsäuren: {{ $product->saturated_fat }}g

@endif
@endif @if($product->carbohydrates)

Kohlenhydrate

{{ $product->carbohydrates }}g

@if($product->sugars)

davon Zucker: {{ $product->sugars }}g

@endif
@endif @if($product->protein)

Eiweiß

{{ $product->protein }}g

@endif @if($product->salt)

Salz

{{ $product->salt }}g

@endif
@if($product->ingredients)

Zutaten

{{ $product->ingredients }}

@endif @if($product->allergens)

Allergene

Achtung: {{ $product->allergens }}

@endif
@if($product->best_before)

Mindesthaltbarkeitsdatum

{{ $product->best_before }}

@endif @if($product->storage_conditions)

Aufbewahrungshinweise

{{ $product->storage_conditions }}

@endif @if($product->usage_instructions)

Verwendungshinweise

{{ $product->usage_instructions }}

@endif

Hinweis zur LMIV

Die angezeigten Informationen entsprechen der Lebensmittelinformationsverordnung (LMIV) der EU. Alle Angaben ohne Gewähr. Bei Allergien oder Unverträglichkeiten wenden Sie sich bitte an den Betreiber.

@endsection