sonlabs/address-varification

There is no license information available for the latest version (1.1.0) of this package.

This package used for physical address verification with google

1.1.0 2017-06-24 17:59 UTC

This package is not auto-updated.

Last update: 2024-04-19 18:32:18 UTC


README

This package used for physical address verification  with google.

    1) composer require sonlabs/address-varification
    2) Add below line in your provider at (config\app.php) 
        'providers' => [
            ---------
            Sonlabs\AddressValid\AddressValidServiceProvider::class,
            ---------
        ],
    3) please add below line at (resources\lang\en\validation.php)
        'validation.check_address' => 'The :attribute must be validate.',
    
    You done, now please use with below sysntax
        In validation rules use login "check_address"

        $rules = [
            'name'     => 'required',
            'address' => 'required|check_address',
        ];