I am using the following structure for my foreach how would I use an if statement within the same format?
<?php foreach($property as $section):?>
if(!empty($section))
{
echo <p>data here </p>;
}else{
html
}
<?php endforeach;?>

