1. Go to this page and download the library: Download flogti/spanish-cities library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
flogti / spanish-cities example snippets
...
use Flogti\SpanishCities\Traits\HasTown;
class User extends Authenticatable
{
use Notifiable, HasTown;
...
//Devuelve la ciudad a la que pertenece.
$town = $user->town;
//Devuelve la provincia a la cual pertenece su ciudad.
$province = $user->province();
//Devuelve la comunidad autónoma a la cual pertenece su ciudad.
$community = $user->community();
$province = $town->province;
//Devuelve la comunidad a la cual pertenece la provincia.
$community = $province->community;
//Devuelve la capital de esa provincia.
$capital = $province->capital;
//Devuelve las ciudades que pertenecen a esa provincia.
$towns = $province->towns;
//Devuelve la capital de esa comunidad.
$capital = $community->capital;
//Devuelve las provincias que pertenecen a esa comunidad.
$provinces = $community->provinces;
//Devuelve las ciudades que pertenecen a esa comunidad.
$towns = $community->towns;
bash
php artisan spanish-cities:install
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.