News

Laravel Postcodes: A Service Wrapper Around Postcodes.io

Published
Laravel Postcodes: A Service Wrapper Around Postcodes.io image

Laravel Postcodes is a package by Steve McDougall that provides a validation rule and macro for validating post codes. The package uses the postcodes.io service—a free and open-source API—for looking up geocoded UK postcodes.

There are three ways to interact with postcodes using this package. First, you can use the provided validation rule:

use JustSteveKing\LaravelPostcodes\Rules\Postcode;
 
$this->validate($request, [
‘postcode’ => [
‘required’,
‘string’,
new Postcode()
]
]);

Second, you can use the provided macro:

$this->validate($request, [
‘postcode’ => [
‘required’,
‘string’,
Rule::postcode()
]
]);

Third, this package defines a service for interacting with the API directly:

use JustSteveKing\LaravelPostcodes\Service\PostcodeService;
 
app(PostcodeService::class)->getPostcode($postcode);

You can learn more about this package, get full installation instructions, and view the source code on GitHub at JustSteveKing/LaravelPostcodes.

This package was submitted to our Laravel News Links section. This section is a place the community can post packages and tutorials around the Laravel ecosystem. Follow along on Twitter @LaravelLinks

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Filed in

Sponsored

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article