Skip to content

Releases: lwwcas/laravel-countries

Support Laravel 11.x

24 Apr 22:59
f64e3fb
Compare
Choose a tag to compare

This simple release add Laravel 11 support to the package

Adding Russian language to country data and its translations

14 Apr 00:46
40a9543
Compare
Choose a tag to compare
3.4.6

Adding Russian language to country data and its translations (#17)

Refactor all seed naming system

14 Apr 00:32
f7c5a17
Compare
Choose a tag to compare
Refactor seed naming system (#16)

* refactor seed naming system

* update changelog file

Adding German language to country data and its translations

14 Apr 00:15
bd11edf
Compare
Choose a tag to compare
3.4.4

Adding German language to country data and its translations (#15)

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