Hello,
I'm playing with the new each() API method.
$warning = $divesites->each(function($item) {
$warning = "";
if (!$item->marker->address) {
$warning .= "<div class='alert alert-warning'>coordinates for {title} not set</div>";
} else {
$warning .= "";
}
return $warning;...