@forelse ($products as $product) @php $firstStock = $product->stocks->first(); $purchasePrice = $firstStock->productPurchasePrice ?? 0; $salePrice = $firstStock->productSalePrice ?? 0; @endphp
{{ $product->productName }}

{{ $product->category->name ?? '' }}

{{ currency_format($salePrice, currency: business_currency()) }}
@empty @endforelse