diff --git a/app/Models/Country.php b/app/Models/Country.php index 3b490892b7..45a840f4c9 100644 --- a/app/Models/Country.php +++ b/app/Models/Country.php @@ -35,4 +35,8 @@ class Country extends StaticModel { return trans('texts.country_'.$this->name); } + public function getID() :string + { + return $this->id; + } }