Releases: lwwcas/laravel-countries
Releases · lwwcas/laravel-countries
Remove country, not officially allocated to ISO 3166-1 alpha-2
- Remove unused AN country, besides not being officially allocated to ISO 3166-1 alpha-2
- Remove 'CY' duplicate
- Minor fixes
Adding Dutch language to country data and its translations
For an easy upgrade follow these steps
It is recommended to make a backup to proceed with this update.
- Run
php artisan make:seeder DutchTranslatesData
- Paste this code in the seed that was created
$this->call(\Lwwcas\LaravelCountries\Database\Seeders\fix\DutchTranslatesUpdatedSeeder::class);
- Run the seed that was created with the command
php artisan db:seed --class=DutchTranslatesData
- Delete DutchTranslatesData.php file
The changes will create in your database the Dutch language and its translations, in respective tables.
Adding Arabic language to country data and its translations
For an easy upgrade follow these steps
It is recommended to make a backup to proceed with this update.
- Run
php artisan make:seeder ArabicTranslatesData
- Paste this code in the seed that was created
$this->call(\Lwwcas\LaravelCountries\Database\Seeders\fix\ArabicTranslatesUpdatedSeeder::class);
- Run the seed that was created with the command
php artisan db:seed --class=ArabicTranslatesData
- Delete ArabicTranslatesData.php file
The changes will create in your database the Arabic language and its translations, in respective tables.
Support Laravel 10.x
This simple release add Laravel 10 support to the package
Adding the Philippine country data and its translations
For an easy upgrade follow these steps
It is recommended to make a backup to proceed with this update.
- Run
php artisan make:seeder PhilippinesData
- Paste this code in the seed that was created
$this->call(\Lwwcas\LaravelCountries\Database\Seeders\fix\PhilippinesTranslatesUpdatedSeeder::class);
- Run the seed that was created with the command
php artisan db:seed --class=PhilippinesData
- Delete PhilippinesData.php file
The changes will create in your database the Filipina country and its translations, in respective tables.
Support Laravel 9.x
This simple release add Laravel 9 support to the package
Minor fix on readme
3.1.1 Minor fixes
Migrations refactoring
- Update the order that migrations are run
- Update Readme file
Great refactoring
It was developed from the ground up to get close to what I think is impressive.