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