@props(['valueColumn','unqRecordId','userRoles','operatorValue','value'])
@php
$multiple="";
if( ($operatorValue=="13" || $operatorValue=="14") )
{
$multiple="multiple";
}
$selectedValues=[];
if(is_array($value))
$selectedValues=$value;
@endphp
@foreach($userRoles as $key=>$value)
@php
$selected="";
@endphp
@if( in_array($key,$selectedValues) )
@php
$selected="selected";
@endphp
@endif
@endforeach