@extends('layouts.app') @section('title', 'Recipe Details') @section('content')
{{ $recipe->instructions ?? 'No instructions provided.' }}
| 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) }} |