@extends('layouts.app') @section('title', 'Ingredients') @section('actions') New Ingredient @endsection @section('content')
@foreach($supplierNames as $sn)
@forelse($ingredients as $ing) @empty @endforelse
NameCategoryTotal Available QuantityStatus
{{ $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.
{{ $ingredients->links() }}
@endsection