@foreach ($pcats as $pcat)
@if ($pcat->productInformation()->count() > 0)
@foreach ($pcat->productInformation as $productInformation)
@php
$product = Product::query()->find($productInformation->product_id);
$pI = ProductInformation::query()
->where('product_id', $product->id)
->where('language_id', $lang->id)
->first();
@endphp
@endforeach
@endif
@endforeach