@extends('layouts.app') @section('title', 'Recipe') @section('content')

Recipe: {{ $product->name }}

Selling Price{{ number_format($product->price, 2) }}
Recipe Cost{{ number_format($product->recipeCost(), 2) }}
Food Cost % {{ $product->foodCostPercent() !== null ? $product->foodCostPercent().'%' : '-' }}
@foreach ($product->recipeItems as $item) @endforeach
IngredientQuantity UsedCost
{{ $item->ingredient->name }} {{ $item->quantity }} {{ $item->ingredient->unit }} {{ number_format($item->cost(), 2) }}
@csrf @method('DELETE')
@csrf
@endsection