@extends('layouts.app') @section('title', 'View Purchase Invoice') @section('content')
| Ingredient / Raw Material | Quantity | Unit Price | Total |
|---|---|---|---|
| {{ optional($item->ingredient)->name_ar ?? optional($item->ingredient)->name_en }} | {{ $item->quantity }} {{ optional($item->ingredient)->unit }} | ${{ number_format($item->unit_price, 2) }} | ${{ number_format($item->total_price, 2) }} |
| Total | ${{ number_format($purchaseInvoice->total_amount, 2) }} | ||