@if(!empty($artistOptions))
@foreach($artistOptions as $artist)
{{ $artist['name'] }} @if(in_array($artist['id'], $selectedArtists)) @endif
@endforeach
@endif @if($selectedArtists)
@foreach($selectedArtists as $artistId => $artistName) {{ $artistName }} @endforeach
@endif
{{-- 搜尋框 --}}
{{-- 語言篩選 --}}
@foreach($languages as $key => $label) @endforeach
{{-- 歌曲列表 Table --}} 編號 歌曲 操作 @forelse($songs as $song) {{ $song->id }}
{{ $song->name }} {{ $song->str_artists_plus() }}
點歌 @empty 沒有符合的歌曲 @endforelse