dropoutventures/laravel-address-validation

This package adds physical address verification with Google Geocoding API

Installs: 56

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 4

pkg:composer/dropoutventures/laravel-address-validation

2.2.1 2020-04-29 19:08 UTC

This package is auto-updated.

Last update: 2025-10-23 02:55:34 UTC


README

This package adds physical address verification with Google Geocoding API.

  1. composer require dropoutventures/laravel-address-validation
  2. .env add GOOGLE_MAPS_API_KEY= Get an API Key

Example:

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