@csrf
Product

Content for Product.

@php($productCount = 1) @php($productStatus = 0) @if($customerProducts) @if($customerProducts->status) @php($productStatus = 1) @endif @endif @if($productStatus == 0)
No product found
@elseif($productStatus == 1)
@if(isset($customerProducts)) @foreach($customerProducts->products as $customerProduct) @endforeach @endif
Type Brand ID Product Qty Bill No Bill Date
{{$customerProduct->item_type_name}} {{$customerProduct->brand_name}} {{$customerProduct->inv_code}} {{$customerProduct->item_name}}
({{$customerProduct->ser_no}})
{{$customerProduct->qty}} {{$customerProduct->bill_no}} {{$customerProduct->bill_date}}
@endif