about summary refs log tree commit diff
path: root/laravel/app
diff options
context:
space:
mode:
Diffstat (limited to 'laravel/app')
-rw-r--r--laravel/app/Song.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/laravel/app/Song.php b/laravel/app/Song.php
index a71e997..a6e3a54 100644
--- a/laravel/app/Song.php
+++ b/laravel/app/Song.php
@@ -15,7 +15,8 @@ class Song extends Model
     {
         return $this->title
             . ( $this->author ? " ($this->author)" : "" )
-            . ($this->plain_key ? " ($this->plain_key)" : "");
+            . ($this->plain_key ? " ($this->plain_key)" : "")
+            . ($this->verse ? " ($this->verse)" : "");
     }
     public function getPlainKeyAttribute()
     {