Analyze recipe costs, margins, and profitability
Total Recipes
{{ $stats['total_recipes'] }}
Avg Food Cost
${{ number_format($stats['avg_food_cost'], 2) }}
Avg Profit Margin
{{ number_format($stats['avg_profit_margin'], 1) }}%
Highest Cost
${{ number_format($stats['highest_cost'], 2) }}
{{ $marginRanges['excellent'] }}
Excellent (70%+)
{{ $marginRanges['good'] }}
Good (50-70%)
{{ $marginRanges['average'] }}
Average (30-50%)
{{ $marginRanges['poor'] }}
Poor (<30%)
| Recipe | Category | Cost/Serving | Selling Price | Profit | Margin | Food Cost % | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $recipe->name }}
@if($recipe->code)
{{ $recipe->code }}
@endif
|
{{ $recipe->category?->name ?? '-' }} | ${{ number_format($recipe->cost_per_serving ?? 0, 2) }} | ${{ number_format($recipe->selling_price ?? 0, 2) }} | ${{ number_format($profit, 2) }} | {{ number_format($margin, 1) }}% | {{ number_format($foodCostPct, 1) }}% | Details |
Create recipes to see costing data.