team_list_layout.php 1.2 KB
<table>
    <tr>
        <td class='team_header'><?= $group->name ?></td>
    </tr>
    <tr>
        <?php foreach($group->team as $team):?>
        <td class="personal_photo"><img src="<?= $team->img ?>"></td>
        <?php endforeach; ?>
    </tr>
    <tr>
        <?php foreach($group->team as $team):?>
            <td class="personal_name"><?= $team->name ?></td>
        <?php endforeach; ?>
    </tr>
    <tr>
        <?php foreach($group->team as $team):?>
            <?php if( $team->email):?>
                <td class='team_contacts'><a href=""><img src="/images/envelope.png"><?= $team->email ?></a></td>
            <?php endif;?>
        <?php endforeach; ?>
    </tr>
    <tr>
        <?php foreach($group->team as $team):?>
            <?php if( $team->phone):?>
            <td  class='team_contacts'><a href=""><img src="/images/telephone_ico.png"><?= $team->phone ?></a></td>
            <?php endif;?>
        <?php endforeach; ?>
    </tr>
    <tr>
        <?php foreach($group->team as $team):?>
        <?php if( $team->skype):?>
        <td class='team_contacts'><a href=""><img src="/images/skype.png"><?= $team->skype ?></a></td>
            <?php endif;?>
        <?php endforeach; ?>
    </tr>

</table>