@props(['demographyconfigId','result','rowid','moduleid','mandatory']) @php $Field=DB::table('DemographyConfig')->where('DemographyConfigId',$demographyconfigId)->get()->first(); $DisplayName=$Field->LabelValue; $ColumnName=$Field->ColumnName; $LabelValue=explode(",",$result->$ColumnName); $DropDownNameId=$Field->DropDownNameId; $DropdownResults=DB::table('DropDownLists')->where('DropDownNameId',$DropDownNameId)->whereIn('DropDownListId',$LabelValue)->get(['DropDownListName']); if($mandatory==1) { $ReruiredField="required"; $DisplayredStar="*"; } else { $ReruiredField=""; $DisplayredStar=""; } @endphp