luilliarcec/laravel-ecuador-locations

Set of provinces, cantons and parishes or cities of Ecuador.

0.0.3 2022-08-30 00:07 UTC

This package is auto-updated.

Last update: 2024-04-29 04:41:04 UTC


README

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.