{{ $recipe->name }}

{{ $recipe->name }}

@if(!$recipe->tags->isEmpty())

Tags:

{{ implode(', ', $recipe->tags->pluck('name')->all()) }}
@endif @if($recipe->description)

Description

{{ $recipe->description }}

@endif

Ingredients [toggle nutrients]

    @foreach($recipe->ingredientAmounts as $ia)
  • {{ \App\Support\Number::fractionStringFromFloat($ia->amount) }} @if($ia->unitFormatted){{ $ia->unitFormatted }}@endif @if($ia->ingredient->type === \App\Models\Recipe::class) {{ $ia->ingredient->name }} @else {{ $ia->ingredient->name }}@if($ia->ingredient->detail), {{ $ia->ingredient->detail }}@endif @endif @if($ia->detail){{ $ia->detail }}@endif
    {{ $ia->nutrients_summary }}
  • @endforeach

Steps

@foreach($recipe->steps as $step)

{{ $step->number }}

{{ $step->step }}

@endforeach
@if($recipe->source) @endif