@if($recipe->tags)
                        
                            
                            {{ implode(', ', $recipe->tags->pluck('name')->all()) }}
                        
                    @endif
                    @if($recipe->source)
                        
                            
                            {{ $recipe->source }}
                        
                    @endif
                    
Description
                    {{ $recipe->description }}
                    Ingredients
                    @foreach($recipe->ingredientAmounts as $ia)
                        
                            {{ \App\Support\Number::fractionStringFromFloat($ia->amount) }}
                            @if($ia->unit)
{{ $ia->unit }}
@endif
                            
                            @if($ia->detail)
{{ $ia->detail }}
@endif
                        
 
                    @endforeach
                    
Steps
                    @foreach($recipe->steps as $step)
                        
                            {{ $step->number }}
                            {{ $step->step }}
                         
                    @endforeach