luilliarcec / laravel-ecuador-locations
Set of provinces, cantons and parishes or cities of Ecuador.
0.0.3
2022-08-30 00:07 UTC
Requires
- php: ^7.4|^8.0
- laravel/framework: ^6.0|^7.0|^8.0|^9.0
Requires (Dev)
- orchestra/testbench: ^4.0|^5.0|^6.0
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2024-10-29 06:19:13 UTC
README
Installation
You can install the package via composer:
composer require luilliarcec/laravel-ecuador-locations
Now publish the migration file into your app's migrations directory, by running the following command:
php artisan vendor:publish --provider="Luilliarcec\EcuadorLocations\EcuadorLocationsServiceProvider"
php artisan migrate
Usage
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use Luilliarcec\EcuadorLocations\Seeders\CantonSeeder; use Luilliarcec\EcuadorLocations\Seeders\ProvinciaSeeder; use Luilliarcec\EcuadorLocations\Models\Canton; use Luilliarcec\EcuadorLocations\Models\Provincia; class DatabaseSeeder extends Seeder { public function run() { if (Provincia::doesntExist()) { $this->call(ProvinciaSeeder::class); } if (Canton::doesntExist()) { $this->call(CantonSeeder::class); } // ... } }
php artisan db:seed
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email luilliarcec@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.