@extends('layouts.app') @section('title', 'Food Cost by Item') @section('content')
Only items with a recipe defined show here. Add a recipe from Menu → Edit Item.
| Item | Selling Price | Recipe Cost | Food 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