@foreach($recipes as $recipe)

{{ ucwords($recipe->title) }}

@php $ingredients = json_decode($recipe->ingredients); @endphp @if( count($ingredients) > 0 ) @foreach( $ingredients as $key => $value ) @endforeach @endif
Food Item Quantity
{{ $value->food_item }} {{ $value->quantity }}
{{ $recipe->serving_size }}

{!!html_entity_decode($recipe->recipe_procedure)!!}

@php $nutritional_value = json_decode($recipe->nutritional_value); @endphp @if( count($nutritional_value) > 0 ) @foreach( $nutritional_value as $key => $value ) @endforeach @endif
{{ $value->nutrition }} {{ $value->nutrition_val }}
@endforeach