@extends('layouts.app') @section('title', $song['title']) @section('content')
@if( isset( $back ) ) $back, 'playlist' => $playlist ?? ''])}}'> {{$back->name}} @endif @if( $playlist ?? FALSE) $playlist->name])}}'> Back to {{$playlist->name}} @else Go home @endif @if( isset( $next ) ) @endif

{{$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)
$sug, 'from' => $song, 'playlist' => $playlist ?? ''])}}'>{{$sug->name}} @if ($key && $sug->key) $sug, 'from' => $song, 'key' => $key, 'playlist' => $playlist ?? ''])}}'> transposed to {{$key}} @endif
@endforeach @if ($addToPlaylist ?? null)
@csrf
@endif @endsection