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

Ingredients / Raw Materials

New Item
@if(session('success'))
{{ session('success') }}
@endif
@foreach($ingredients as $ingredient) @endforeach
Code Name (AR) Name (EN) Unit Current Cost Current Stock Actions
#{{ $ingredient->id }} {{ $ingredient->name_ar }} {{ $ingredient->name_en ?? '-' }} {{ $ingredient->unit }} ${{ number_format($ingredient->cost_price ?? 0, 2) }} {{ number_format($ingredient->stock_quantity ?? 0, 2) }}
@csrf @method('DELETE')
@endsection