@extends('layouts.adminLayout.admin_design') @section('content')

Produkte

@if(Session::has('flash_message_error'))
{!! session('flash_message_error') !!}
@endif @if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif

Produkte
@foreach($products as $product) @endforeach
Produkt ID Kategorie ID Kategoriename Produktname Produktcode Produktfarbe Preis Bild Aktionen
{{ $product->id }} {{ $product->category_id }} {{ $product->category_id }} {{ $product->product_name }} {{ $product->product_code }} {{ $product->product_color }} {{ $product->price }} @if(!empty($product->image)) @endif Aussicht Bearbeiten Hinzufügen Hinzufügen Löschen
@endsection