{{ $recipe->name }} @if(!empty($bg_image)) {{ $bg_image }} @endisset

{{ $recipe->name }}

@if($recipe->time_total > 0)

Prep time

{{ $recipe->time_prep }} minutes

Active time

{{ $recipe->time_active }} minutes

Total time

{{ $recipe->time_total }} minutes

@endif @if($recipe->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)
  1. {{ $step->step }}
  2. @endforeach