about summary refs log tree commit diff
path: root/laravel/app/Song.php
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@librem.one>2019-09-11 22:20:17 -0400
committerZach DeCook <zachdecook@librem.one>2019-09-11 22:20:17 -0400
commit0f62a10c2856d946a8d55146557324ab669b3945 (patch)
tree22e9ba6cc47f56074e95510ae1b90c58e0b439a9 /laravel/app/Song.php
parent79bd421bb1f204ab8acfd4c254e1f5582142a294 (diff)
parent06d249ea68336b2d62948014958d36511ba0d2c4 (diff)
downloadprosongsa-0f62a10c2856d946a8d55146557324ab669b3945.tar.gz
Merge branch 'laravel' of gitlab.com:earboxer/prosongsa into laravel
Diffstat (limited to 'laravel/app/Song.php')
-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()
     {