<div class="row m-0"> organizeyourlife52 (!empty($countryCols)) @foreach ($countryCols as $key => $col) <?php $classBorder = (count($countryCols) == $key+1) ? ' cat-list-border' : ''; ?> <ul class="cat-list col-xl-3 col-lg-3 col-md-4 col-sm-6 col-xs-6 {{ $classBorder }}"> @foreach ($col as $k => $country) <li> <img src="{{ url('images/blank.gif') . getPictureVersion() }}" class="flag flag-{{ ($country->get('icode')=='uk') ? 'gb' : $country->get('icode') }}" style="margin-bottom: 4px; margin-right: 5px;" > <a href="{{ dmUrl($country, '/', true, true) }}" title="{!! $country->get('name') !!}" class="tooltipHere" data-toggle="tooltip" data-original-title="{!! $country->get('name') !!}" >{{ \\Illuminate\\Support\\Str::limit($country->get('name'), 30) }}</a> </li> @endforeach </ul> @endforeach @else <div class="col-12 text-center mb30 text-danger"> <strong>{{ t('countries_not_found') }}</strong> </div> @endif </div>