diff options
author | RoscoeDeWah <roscoe@wah.moe> | 2025-01-16 13:42:14 +0000 |
---|---|---|
committer | RoscoeDeWah <roscoe@wah.moe> | 2025-01-16 13:42:14 +0000 |
commit | da992ff1b780bf687ba2093d36c2def943296ec5 (patch) | |
tree | 28d4c656da316becfaf8ba81b7541d03abb188ae /resources/views/components/lastfm-top.blade.php | |
parent | a349858a7d55e66b51b56063af5306d3a5652bb9 (diff) |
Remove unused stuff
Diffstat (limited to 'resources/views/components/lastfm-top.blade.php')
-rw-r--r-- | resources/views/components/lastfm-top.blade.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/resources/views/components/lastfm-top.blade.php b/resources/views/components/lastfm-top.blade.php new file mode 100644 index 0000000..0f65e39 --- /dev/null +++ b/resources/views/components/lastfm-top.blade.php @@ -0,0 +1,16 @@ +<table class="music-top10"> + <caption> + <h2 style="margin-bottom: 5px">Top 10 Tracks (Last 30 days):</h2> + </caption> + <tr> + <th><b>#</b></th> + <th><b>Track</b></th> + <th><b>Artist</b></th> + <th><b>Plays</b></th> + </tr> + @php($count = 0) + @foreach ($tracks as $track) + @php($count++) + <x-lastfm-track :track="$track" :count="$count"/> + @endforeach +</table> |