@extends('layouts.app') @section('title', 'Ingredients') @section('actions') New Ingredient @endsection @section('content')
| Name | Category | Total Available Quantity | Status | |
|---|---|---|---|---|
| {{ $ing->name }} | {{ $ing->category->name ?? '—' }} | {{ \App\Models\Ingredient::formatGrams($ing->available_quantity_grams) }} | @if($ing->isOutOfStock())Out of stock @elseif($ing->isLowStock())Low @elseOK@endif | |
| No ingredients found. | ||||