Integration with postcodeservice.com. This package listens to postcode and street[1] changes (which should be used as house number), when there is a change an API call will be made and the results will be added to city and street[0]. The responses will be cached to reduce API calls.
composer require rapidez/postcodeservice
Add your credentials in the .env
POSTCODESERVICE_CLIENT_ID=
POSTCODESERVICE_SECURE_CODE=
In case you have your own postcode fields you want checked and updated you can emit the postcode-change event passing a reactive object with the following keys:
country_id/country_codepostcodestreet[0]street[1]city
Then you can use it like:
<input
v-on:change="window.$emit('postcode-change', addressVariables)"
name="postcode"
label="Postcode"
v-model="addressVariables.postcode"
required
/>
<input
v-on:change="window.$emit('postcode-change', addressVariables)"
name="street[1]"
type="number"
label="House number"
v-model="addressVariables.street[1]"
placeholder=""
/>Currently only Dutch address completion is implemented!
GNU General Public License v3. Please see License File for more information.