@php
parse_str($data, $module);
$topList = DB::connection('mysql_site_' . session('serverID'))->table('top')->where('site_id','=',$siteID)->orderBy('ord','asc')->limit($module['quantity'])->get();
$i=1;
@endphp
@if($topList->count() == 0)
Nenhuma música cadastrada
@else
@foreach($topList as $top)
{{ $i }}º {{ $top->name }}
{{ $top->artist }}
@php $i++; @endphp
@endforeach
@endif