@php $existingItems = $productInventory->productInventoryItems->map(function($item) { return [ 'product_id' => $item->product_id, 'product_name' => $item->product->name, 'quantity' => $item->quantity, 'amount' => $item->amount, 'buy_price' => $item->buy_price, 'tax' => $item->tax, ]; })->toArray(); @endphp @extends('admin.layouts.layouts') @section('title', 'Edit | Product Inventory') @section('page-css') @endsection @section('content')