@extends('layouts.app')
@section('title', $song['title'])
@section('content')
{{$song['title']}} - {{$song->author}}
@if($song->audio)
@endif
@if($song->key)
Key: {{$song->key}}
@endif
@if($song->verse)
Scripture: {{$song->verse}}
@endif
@can('update', $song )
$song,
'playlist' => $playlist ?? '',
'key' => $key,
] ) }}'>edit this song
@endcan
@foreach (['G','D','C','A'] as $possibleKey)
@if($possibleKey != ($_GET['transp'] ?? $song->key))
@endif
@endforeach
{!! $song['escapedText'] !!}
@foreach ($suggestions as $sug)
@endforeach
@if ($addToPlaylist ?? null)
@endif
@endsection