| Sr No. | Work Order No. | Vendor Name | Category | Product | Product Qty | Supplied Product Id |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $stockRequestProductId->stock?->work_order_no }} | {{ $stockRequestProductId->stock?->vendor?->company_name }} | {{ $stockRequestProductId->category?->name }} | {{ $stockRequestProductId->product?->name }} | {{ $stockRequestProductId->remaining_quantity }} |
@php
$data = explode(
',',
str_replace(' ', '', $stockRequestProductId->product_unique_id),
);
$count = 1;
@endphp
@foreach ($data as $d)
{{ $d }}
@if ($count % 7 == 0)
@endif @php $count++ @endphp @endforeach |