@extends('pages.product.layout') @section('body')
image
{{ $product->name }}
{{ $product->category->name }}
{{ number_format($product->price, 2, '.', ' ') }}
Prix CFA
{{ number_format($product->available_quantity, 2, '.', ' ') }}
Disponible
Modifier
ID plat
#{{ $product->id }}
Désignation
{{ $product->name }}
Catégorie de plat
{{ $product->category->name }}
Prix CFA
{{ number_format($product->price, 2, '.', ' ') }}
Disponible en stock
{{ number_format($product->available_quantity, 2, '.', ' ') }}
Informations
{{ $product->description }}

Les ingredients

@forelse($product->ingredients as $ingredient) @empty @endforelse
Ingredient quantité Description Actions
{{ $ingredient->name }} {{ $ingredient->pivot->quantity }} {{ $ingredient->pivot->unit_measurement_id }} {{ $ingredient->pivot->description }} Actions
Aucune recette trouvée pour ce plat

Productions

@forelse($product->productions as $production) @empty @endforelse
Production quantité Produit par Actions
{{ $production->production_date }} {{ $production->pivot->quantity }}
{{ $production->staff->first_name }} {{ $production->staff->last_name }}
{{ $production->staff->category->name }}
Actions
Aucune production trouvée pour ce plat

Commandes

@forelse($product->orders as $order) @empty @endforelse
Commande quantité Commandé par Actions
{{ $order->order_number }} {{ $order->order_date }} {{ $order->pivot->quantity }}
#{{ $order->client->id }} | {{ $order->client?->first_name }} {{ $order->client?->last_name }}
Actions
Aucune commande trouvée pour ce plat
@endsection