PHP code example of agenciafmd / admix-addresses

1. Go to this page and download the library: Download agenciafmd/admix-addresses 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/ */

    

agenciafmd / admix-addresses example snippets


public function rules()
{
    return [
        ...
            'address.*.full_street' => [
                '                'max:150',
            ],
            'address.*.street' => [
                ' 'nullable',
                'max:150',
            ],
            'address.*.neighborhood' => [
                'red',
                'max:150',
            ],
            'address.*.latitude' => [
                'dress.*.complement' => 'complemento',
        'address.*.neighborhood' => 'bairro',
        'address.*.city' => 'cidade',
        'address.*.state' => 'estado',
        'address.*.state_initials' => 'sigla do estado',
        'address.*.latitude' => 'latitude',
        'address.*.longitude' => 'longitude',
        ...
    ];
}