@extends('layouts.app') @section('title', 'View Purchase - EDUC Pharmacy') @section('content')
| Product | Quantity | Unit Cost | Discount % | Tax % | Line Total |
|---|---|---|---|---|---|
|
{{ $item->product?->name ?? '-' }} SKU: {{ $item->product?->sku ?? '-' }} |
{{ $item->quantity }} | MWK {{ number_format($item->unit_cost, 2) }} | {{ $item->discount_percent ?? 0 }}% | {{ $item->tax_percent ?? 0 }}% | MWK {{ number_format($item->line_total, 2) }} |
No items in this purchase.
@endif