@extends('layouts.app') @section('title', 'Recipe Details') @section('content')

Recipe for {{ optional($recipe->product)->name_ar ?? optional($recipe->product)->name_en }}

Back
Product: {{ optional($recipe->product)->name_ar ?? optional($recipe->product)->name_en }}
Cost: ${{ number_format($recipe->cost, 2) }}
Instructions:

{{ $recipe->instructions ?? 'No instructions provided.' }}

Ingredients
@foreach($recipe->ingredients as $ing) @endforeach
Ingredient Quantity Unit Cost/Unit Total Cost
{{ optional($ing->product)->name_ar ?? optional($ing->product)->name_en }} {{ $ing->quantity }} {{ $ing->unit }} ${{ number_format($ing->cost_per_unit, 2) }} ${{ number_format($ing->quantity * $ing->cost_per_unit, 2) }}
@endsection