diff options
author | Frankie B <git@diskfloppy.me> | 2023-08-14 23:45:31 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2023-08-14 23:45:31 +0100 |
commit | b8b36c50d09b1b1ea59b02601a9f7c5f4bca894b (patch) | |
tree | c41a3f421a2c364c40e24177928718d91f94d626 /resources/views/pages/music.blade.php | |
parent | e7d58f3185b798df4e020f0c2b7ab36d1d1656dc (diff) |
we ball
Diffstat (limited to 'resources/views/pages/music.blade.php')
-rw-r--r-- | resources/views/pages/music.blade.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/resources/views/pages/music.blade.php b/resources/views/pages/music.blade.php index cba45c2..e24f88c 100644 --- a/resources/views/pages/music.blade.php +++ b/resources/views/pages/music.blade.php @@ -8,7 +8,7 @@ $api_root = app('config')->get('app')['api_root']; $current_track = json_decode(file_get_contents($api_root . '/lastfm/current')); - $toptracks = json_decode(file_get_contents($api_root . '/lastfm/top')); + $top_tracks = json_decode(file_get_contents($api_root . '/lastfm/top')); $count = 0; @endphp <table class="infotable"> @@ -32,24 +32,24 @@ <h2>Top {{ $cfg['toptracks'] }} Tracks (Last 7 days)</h2> </td> </tr> - <tr"> - <td style="text-align: right"><b>#</b></td> - <td><b>Track</b></td> - <td><b>Artist</b></td> - <td><b>Plays</b></td> + <tr + "> + <td style="text-align: right"><b>#</b></td> + <td><b>Track</b></td> + <td><b>Artist</b></td> + <td><b>Plays</b></td> </tr> - @foreach ($toptracks as $track) + @foreach ($top_tracks as $track) @php $count++ @endphp - @if ($count >= $cfg['toptracks']) + @if ($count >= $cfg['toptracks']+1) @break @endif <tr> - <td style="text-align: right">{{ $count+1 }}</td> + <td style="text-align: right">{{ $count }}</td> <td>{{ $track->name }}</td> <td>{{ $track->artist }}</td> <td>{{ $track->plays }}</td> </tr> @endforeach </table> - <hr> @stop |