{{-- Alert Message --}} @if (session()->has('message')) @endif {{-- Loading Overlay --}}
Loading...
{{-- Product Table --}}
@if (!empty($products)) @foreach ($products as $key => $product) @php $productData = $product['product'] ?? $product; $batches = $product['batches'] ?? []; @endphp {{-- Product Name --}} {{-- Product Code --}} {{-- Batch Select --}} {{-- Stock (dari batch, default ambil batch pertama jika ada) --}} {{-- Quantity Input --}} {{-- Type Select --}} {{-- Hidden Product ID --}} {{-- Action Button --}} @endforeach @else @endif
# Product Name Code Batch Stock Quantity Type Action
{{ $key + 1 }}{{ $productData['product_name'] }}{{ $productData['product_code'] }} @php $firstBatch = $batches[0] ?? null; @endphp {{ $firstBatch['qty'] ?? '0' }} {{ $productData['product_unit'] }}
Please search & select products!