@extends('layouts.vending') @section('title', 'Produktkatalog') @section('content')

Produktkatalog

Verwalten Sie Ihre Produkte mit LMIV-Daten

Neues Produkt
@if($products->count() > 0)
@foreach($products as $product) @endforeach
Produkt Preis LMIV-Daten Erstellt Aktionen
@if($product->image) {{ $product->name }} @else
Kein Bild
@endif
{{ $product->name }}
@if($product->description)
{{ Str::limit($product->description, 50) }}
@endif
{{ number_format($product->price, 2) }}€
@if($product->ingredients) Zutaten @endif @if($product->allergens) Allergene @endif @if($product->energy_kcal) Nährwerte @endif
{{ $product->created_at->format('d.m.Y') }}
Anzeigen Bearbeiten
@csrf @method('DELETE')
{{ $products->links() }}
@else

Keine Produkte

Beginnen Sie mit der Erstellung Ihres ersten Produkts.

@endif
@endsection