laravel-postal maintained by bhavinjr
Description
Retrive the indian post office details based on pincode
Author
Last update
2021/07/02 20:27
(dev-master)
License
Downloads
294
Tags
laravel-postal
A simple postal to get details of Post Office by searching Postal PIN Code or Post Office Branch Name of India for Laravel 5.|6.|7.|8.
Installation
First, you'll need to install the package via Composer:
$ composer require bhavinjr/laravel-postal
If you are don't use using Laravel 5.5.* Then, update config/app.php by adding an entry for the service provider.
'providers' => [
// ...
Bhavinjr\Postal\Providers\PostalServiceProvider::class,
];
'aliases' => [
//...
"Postal": "Bhavinjr\Postal\Facades\Postal",
];
Usage
The package gives you the following methods to use:
Get Post Office(s) details search by Postal PIN Code
Postal::findByCode()
use Postal;
Postal::findByCode(380001);
Postal::findByBranch()
Get Post Office(s) details search by Post Office branch name
use Postal;
Postal::findByBranch('Ahmedabad');