diff --git a/src/Models/Country.php b/src/Models/Country.php index 0a4493d3..3943a3b2 100644 --- a/src/Models/Country.php +++ b/src/Models/Country.php @@ -10,6 +10,7 @@ class Country extends BaseModel const ECUADOR = 'Ecuador'; const MEXICO = 'Mexico'; const PERU = 'Peru'; + const BOLIVIA = 'Bolivia'; /** * @return array @@ -24,6 +25,7 @@ public static function all() self::ECUADOR, self::MEXICO, self::PERU, + self::BOLIVIA ]; } @@ -68,7 +70,8 @@ private static function isoCodes() 'CO' => self::COLOMBIA, 'EC' => self::ECUADOR, 'MX' => self::MEXICO, - 'PE' => self::PERU + 'PE' => self::PERU, + 'BO' => self::BOLIVIA ]; } }