laravel-iso-countries icon indicating copy to clipboard operation
laravel-iso-countries copied to clipboard

Ready-to-use Laravel models and relations for country (ISO 3166), language (ISO 639-1), and currency (ISO 4217) information with multi-language support.

Results 6 laravel-iso-countries issues
Sort by recently updated
recently updated
newest added

Adds support for Laravel 11.0

Hey @io238 Just to say this is the best package I found for the "world" issue. It definitely deserves more stars. Well done!

So I found it was a missing PHP extension `extension=pdo_sqlite` _Originally posted by @gbast0s in https://github.com/io238/laravel-iso-countries/issues/7#issuecomment-1838450042_

From loadNameTranslations() in Build.php ` foreach ($locales as $locale) { $file = match ($model) { Country::class => __DIR__ . "/../../data/translations/countries/$locale/country.php", Language::class => __DIR__ . "/../../data/translations/languages/$locale/language.php", Currency::class => __DIR__ . "/../../data/translations/currencies/$locale/currency.php",...

I noticed the countries table does not include the numeric codes, I prefer storing countries by their numeric codes because they don't change like the 2 or 3 letter ones...

Hello I'm getting this error when trying to cast in my model ` ERROR Xdebug has detected a possible infinite loop, and aborted your script with a stack depth of...