Nutrition Facts
Serving size
{{ $food->servingSizeFormatted }}
{{ $food->servingUnitFormatted ?? $food->name }}
({{ $food->serving_weight }}g)
Amount per serving
Calories
{{ $food->calories }}
Total Fat
{{ $food->fat }}g
Cholesterol
{{ $food->cholesterol }}mg
Sodium
{{ $food->sodium }}mg
Total Carbohydrate
{{ $food->carbohydrates }}g
Protein
{{ $food->protein }}g
Tags
@foreach ($food->tags as $tag)
{{ $tag->name }}
@endforeach
@endif
@if($food->description)
Description
{{ $food->description }}
@endif @if(!$food->ingredientAmountRelationships->isEmpty())Recipes
-
@foreach ($food->ingredientAmountRelationships as $ia)
- {{ $ia->parent->name }} @endforeach
Source
@if(filter_var($food->source, FILTER_VALIDATE_URL)) {{ $food->source }} @else {{ $food->source }} @endif
@endif