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/top-tracks.blade.php | |
parent | a349858a7d55e66b51b56063af5306d3a5652bb9 (diff) |
Remove unused stuff
Diffstat (limited to 'resources/views/components/top-tracks.blade.php')
-rw-r--r-- | resources/views/components/top-tracks.blade.php | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/resources/views/components/top-tracks.blade.php b/resources/views/components/top-tracks.blade.php deleted file mode 100644 index a8c94f2..0000000 --- a/resources/views/components/top-tracks.blade.php +++ /dev/null @@ -1,16 +0,0 @@ -<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-track :track="$track" :count="$count"/> - @endforeach -</table> |