@extends('layouts.app') @section('title', 'Food Cost by Item') @section('content')

Food Cost by Menu Item

Ingredients

Only items with a recipe defined show here. Add a recipe from Menu → Edit Item.

@foreach ($products as $p) @php $pct = $p->foodCostPercent(); @endphp @endforeach
ItemSelling PriceRecipe CostFood Cost %
{{ $p->name }} {{ number_format($p->price, 2) }} {{ number_format($p->recipeCost(), 2) }} {{ $pct !== null ? $pct.'%' : '-' }}

Highlighted rows are above 35% food cost — a common threshold worth reviewing pricing or portioning on.

@endsection