@if($song->pending)
{{ __('web.PROCESSING_AUDIO') }}
@endif
{!! $song->title !!}
@if(!$song->visibility)
{{ __('web.PRIVATE') }}@endif
@if($song->description || $song->copyright)
@if($song->copyright)
© {{ $song->copyright }}
@endif
{{ $song->description }}
@endif
-
@if($song->collectors) {{ $song->collectors }} @else - @endif
{{ __('web.FANS') }}
-
@if($song->plays) {{ $song->plays }} @else - @endif
{{ __('web.PLAYS') }}
@if($song->released_at)
-
{{ \Carbon\Carbon::parse($song->released_at)->format('M j, Y') }}
{{ __('web.RELEASED') }}
@endif
-
@if($song->genres && count($song->genres))
@foreach($song->genres as $index => $genre)
{!! $genre->name !!}
@endforeach
@else
@if(isset($song->artists) && count($song->artists))
@foreach($song->artists->first()->genres as $index => $genre)
{!! $genre->name !!}
@endforeach
@endif
@endif
@if($song->mp3 && config('settings.waveform'))
waveform) data-uri="{{ $song->getFirstMediaUrl('audio') }}" @endif>
@endif
{!! Advert::get('sidebar') !!}
@if(isset($related))
@include('commons.song', ['songs' => $related->songs, 'element' => 'snapshot'])
@endif
@endsection
{{ __('web.COMMENTS') }}
Comments are turned off.
@endif