Backend for songs.zachdecook.com
Diffstat (limited to 'laravel/resources/views/song.blade.php')
| -rw-r--r-- | laravel/resources/views/song.blade.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/laravel/resources/views/song.blade.php b/laravel/resources/views/song.blade.php index 6fed78b..9170144 100644 --- a/laravel/resources/views/song.blade.php +++ b/laravel/resources/views/song.blade.php @@ -35,7 +35,11 @@ Scripture: {{$song->verse}}<br/> @endif @can('update', $song ) - <a href='{{ route( 'song.edit', ['song' => $song, 'playlist' => $playlist ?? ''] ) }}'>edit this song</a> + <a href='{{ route( 'song.edit', [ + 'song' => $song, + 'playlist' => $playlist ?? '', + 'key' => $key, + ] ) }}'>edit this song</a> @endcan <form> |