@extends('layouts.app') @section('title', __('messages.recipes')) @section('content')
| {{ __('messages.product') }} | {{ __('messages.current_stock') }} | {{ __('messages.cost') }} | {{ __('messages.ingredients_count') }} | {{ __('messages.actions') }} |
|---|---|---|---|---|
|
|
|
|
Reset | |
|
@if($recipe->product)
{{ $recipe->product->name_ar ?: ($recipe->product->name_en ?: $recipe->product->name) }}
@else
Product Not Found (ID: {{ $recipe->product_id }})
@endif
@if($recipe->name_ar || $recipe->name_en)
{{ $recipe->name_ar ?: $recipe->name_en }}
@endif
|
{{ number_format($recipe->product->stock_quantity ?? 0, 2) }} | ${{ number_format($recipe->cost, 2) }} | {{ $recipe->ingredients->count() }} | |
| @if(request('search')) {{ __('messages.no_results_found') ?? 'No recipes found matching your search.' }} @else {{ __('messages.no_recipes_yet') ?? 'No recipes added yet.' }} @endif | ||||