Looking to hire Laravel developers? Try LaraJobs

laravel-ecuador-locations maintained by luilliarcec

Description
Set of provinces, cantons and parishes or cities of Ecuador.
Last update
2022/08/30 02:07 (dev-master)
License
Downloads
179

Comments
comments powered by Disqus

Laravel Ecuador Locations

Latest Version on Packagist Total Downloads GitHub license

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.