<h2><?php 
echo $film->getTitre();
?>
</h2>
        <table>
            <tr>
                <th>Date de sortie</th>
                <td><?php 
echo $film->getDateSortie();
?>
</td>
            </tr>
            <tr>
                <th>Réalisé par</th>
                <td><?php 
echo $film->getRealisateur();
?>
</td>
            </tr>
            <tr>
                <th>Avec</th>
<!--                <td>
                    <?php 
$premierActeur = true;
?>
                    <?php 
foreach ($film->getActeurs() as $act) {
    ?>
                      <?php 
    if (!$premierActeur) {
        ?>