2024-06-03 15:02:52 +02:00
|
|
|
<h5>Song of the playlist</h5>
|
|
|
|
<section class="list">
|
|
|
|
<?php
|
|
|
|
foreach($songPlaylists as $songPlaylist){
|
|
|
|
echo "<div><article>";
|
|
|
|
echo "<header class='short-text'>";
|
|
|
|
echo "{$songPlaylist->name}";
|
2024-06-03 16:10:43 +02:00
|
|
|
echo "<br>";
|
2024-06-03 15:02:52 +02:00
|
|
|
echo "</header>";
|
|
|
|
echo "</article></div>";
|
|
|
|
}
|
2024-06-03 16:10:43 +02:00
|
|
|
|
2024-06-03 15:02:52 +02:00
|
|
|
?>
|
|
|
|
</section>
|