An open API service indexing awesome lists of open source software.

https://github.com/manoj30808/address-validation

Laravel address verification, this package used for physical address verification with google.
https://github.com/manoj30808/address-validation

address google-address-validation google-map laravel-address-validation physical-address-verification

Last synced: 5 months ago
JSON representation

Laravel address verification, this package used for physical address verification with google.

Awesome Lists containing this project

README

          

# Address Validation in Laravel

```php
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',
];