@extends('admin.master') @section('content') @include('admin.inventory._styles')
Created {{ $purchase->created_at?->format('d M Y, h:i A') }}
| Product | SKU | Unit Cost | Quantity | Subtotal | Stock Before | Stock After |
|---|---|---|---|---|---|---|
|
@if($item->imageUrl())
{{ $item->product_name }}
|
{{ $item->sku ?: '—' }} | {{ number_format((float) $item->unit_cost, 2) }} Tk | {{ number_format($item->quantity) }} | {{ number_format((float) $item->line_total, 2) }} Tk | {{ $item->stock_before ?? '—' }} | {{ $item->stock_after ?? '—' }} |
| Grand Total | {{ number_format((float) $purchase->grand_total, 2) }} Tk | |||||