. * * @author ruhllatio * @copyright 2015 nZEDb */ namespace Blacklight\utility; use App\Models\Country as CountryModel; /** * Class Country. */ class Country { /** * Get a country code for a country name. * * @return mixed */ public static function countryCode(string $country) { if (\strlen($country) > 2) { $code = CountryModel::whereFullName($country)->orWhere('name', $country)->first(['iso_3166_2']); if ($code !== null && isset($code['iso_3166_2'])) { return $code['iso_3166_2']; } } return ''; } }