@extends('layout.guest') @section('title') Directory Product Folder @endsection @section('content')
@foreach ($products as $product) @php $name = $product->itemDetails->filter(function ($itemDetail) { return $itemDetail->formDetail->name == 'Product Name' || $itemDetail->formDetail->name == 'Service Name'; })->first()->value ?? '-'; @endphp
@endforeach
@endsection