diff --git a/app/Place.php b/app/Place.php index 5ea6351cc..c1409838e 100644 --- a/app/Place.php +++ b/app/Place.php @@ -40,4 +40,9 @@ class Place extends Model { return $this->url(); } + + public function getName() + { + return $this->name . ', ' . $this->country; + } }