Skip to content

Releases: lwwcas/laravel-countries

Remove country, not officially allocated to ISO 3166-1 alpha-2

13 Apr 21:19
Compare
Choose a tag to compare
  • 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

13 Apr 20:29
Compare
Choose a tag to compare

For an easy upgrade follow these steps

It is recommended to make a backup to proceed with this update.

  1. Run php artisan make:seeder DutchTranslatesData
  2. Paste this code in the seed that was created
    $this->call(\Lwwcas\LaravelCountries\Database\Seeders\fix\DutchTranslatesUpdatedSeeder::class);
  3. Run the seed that was created with the command php artisan db:seed --class=DutchTranslatesData
  4. 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

13 Apr 20:02
Compare
Choose a tag to compare

For an easy upgrade follow these steps

It is recommended to make a backup to proceed with this update.

  1. Run php artisan make:seeder ArabicTranslatesData
  2. Paste this code in the seed that was created
    $this->call(\Lwwcas\LaravelCountries\Database\Seeders\fix\ArabicTranslatesUpdatedSeeder::class);
  3. Run the seed that was created with the command php artisan db:seed --class=ArabicTranslatesData
  4. Delete ArabicTranslatesData.php file

The changes will create in your database the Arabic language and its translations, in respective tables.

Support Laravel 10.x

13 Apr 19:24
Compare
Choose a tag to compare

This simple release add Laravel 10 support to the package

Adding the Philippine country data and its translations

02 Oct 18:09
Compare
Choose a tag to compare

For an easy upgrade follow these steps

It is recommended to make a backup to proceed with this update.

  1. Run php artisan make:seeder PhilippinesData
  2. Paste this code in the seed that was created
    $this->call(\Lwwcas\LaravelCountries\Database\Seeders\fix\PhilippinesTranslatesUpdatedSeeder::class);
  3. Run the seed that was created with the command php artisan db:seed --class=PhilippinesData
  4. Delete PhilippinesData.php file

The changes will create in your database the Filipina country and its translations, in respective tables.

Support Laravel 9.x

02 Oct 17:39
91bf1cf
Compare
Choose a tag to compare

This simple release add Laravel 9 support to the package

Minor fix on readme

22 Nov 06:34
f0953bf
Compare
Choose a tag to compare
3.1.1

Minor fixes

Migrations refactoring

22 Nov 06:26
Compare
Choose a tag to compare
  • Update the order that migrations are run
  • Update Readme file

Great refactoring

20 Nov 22:36
Compare
Choose a tag to compare

It was developed from the ground up to get close to what I think is impressive.