Update Place model, add name method

pull/2459/head
Daniel Supernault 2020-11-27 14:22:05 -07:00
rodzic 576cc82ec5
commit 9d1499eeb9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -40,4 +40,9 @@ class Place extends Model
{
return $this->url();
}
public function getName()
{
return $this->name . ', ' . $this->country;
}
}