@extends('backend.index') @section('content')
{!! $song->title !!} - @foreach($song->artists as $artist){!! $artist->name !!}@if(!$loop->last), @endif @endforeach
@if($song->mp3) MP3 @endif @if($song->hd) HD @endif @if($song->hls) HLS @endif

Preview @if(! $song->approved) (only Moderator) @endif

@csrf
{!! makeTagSelector('tags[]', isset($song) && ! old('tags') ? array_column($song->tags->toArray(), 'tag') : old('tags')) !!}
@if(isset($song->bpm))
@endif
Note: You can configure additional song playable and downloadable parameters for different groups in this section.
@if(cache()->has('usergroup')) @foreach(cache()->get('usergroup') as $group)
{!! makeDropDown([ 0 => 'Group Settings', 1 => 'Playable', 2 => 'Playable And Downloadable', 3 => 'Play And Download Denied' ], 'group_extra[' . $group->id . ']', isset($options) && isset($options[$group->id]) ? $options[$group->id] : 0) !!}
@endforeach @endif