@extends('index') @section('content')
@if($song->pending)
{{ __('web.PROCESSING_AUDIO') }}
@endif
{!! $song->title !!}
@if($song->mp3 && config('settings.waveform'))
waveform) data-uri="{{ $song->getFirstMediaUrl('audio') }}" @endif>
@endif
@if(config('settings.song_comments') && $song->allow_comments)

{{ __('web.COMMENTS') }}

@include('comments.index', ['object' => (Object) ['id' => $song->id, 'type' => 'App\Models\Song', 'title' => $song->title]])
@else

Comments are turned off.

@endif
{!! Advert::get('sidebar') !!}

{{ __('web.ARTIST_TOP_SONGS') }}

    @if(isset($related)) @include('commons.song', ['songs' => $related->songs, 'element' => 'snapshot']) @endif
@endsection