@if(count($data->getCustomFileds) == 0) No record found @else @php $count=1;@endphp @foreach($data->getCustomFileds as $customfield) @if(count($customfield->options) > 0) @endif @endforeach
S.No Field Name Field Type Type Value
{{$count++}} {{$customfield->field_name ?? ""}} @if($customfield->field_type == 1) Text @elseif($customfield->field_type == 2) Date @elseif($customfield->field_type == 3) Drop Down @endif @php $optioncount=1;@endphp @foreach($customfield->options as $optiondata) @endforeach
S.No Option Value Option Name
{{$optioncount++}} {{ $optiondata->option_value }} {{ $optiondata->option_name }}
@endif