about summary refs log tree commit diff
path: root/laravel/app/Song.php
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@gmail.com>2019-09-07 17:22:54 +0000
committerZach DeCook <zachdecook@gmail.com>2019-09-07 17:22:54 +0000
commit06d249ea68336b2d62948014958d36511ba0d2c4 (patch)
tree75e8a5c4732fffd0915d30f9fa6181874f21ef4d /laravel/app/Song.php
parent36b20054f2f0a2afe9d358cc1a7a8c8235606d1a (diff)
downloadprosongsa-06d249ea68336b2d62948014958d36511ba0d2c4.tar.gz
* Songs: Add new features
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()
     {