@if(count($results) == 0)
{{__('No results found')}}
@else @php( $fieldName = (($singleLanguage ?? false) || (config('app.locale') == 'en')) ? 'name' : 'nameChinese' ) @foreach($results as $key => $value)
{!! (isset($encodeFlag) && $encodeFlag) ? htmlentities($value->{$fieldName}, ENT_QUOTES) : html_entity_decode($value->{$fieldName}) !!}
@endforeach @endif