@extends('layouts.app') @section('title', 'Ingredient Usage') @section('actions') Record Usage @endsection @section('content')
| Date | Ingredient | Category | Quantity Used | Notes / Purpose | |
|---|---|---|---|---|---|
| {{ $usage->usage_date->format('d M Y') }} | {{ $usage->ingredient->name ?? '—' }} | {{ $usage->ingredient->category->name ?? '—' }} | {{ \App\Models\Ingredient::trimNum($usage->quantity) }} {{ $usage->unit }} ({{ \App\Models\Ingredient::formatGrams($usage->quantity_in_grams) }}) | {{ $usage->notes ?? '—' }} | |
| No usage records yet. | |||||