Simple address and contact management for Laravel 5.
galadrim/laravel-addresses is a Laravel package for simple address and contact management for laravel 5..
It currently has 0 GitHub stars and 41 downloads on Packagist.
Install it with composer require galadrim/laravel-addresses.
Discover more Laravel packages by galadrim
or browse all Laravel packages to compare alternatives.
Last updated
Simple address and contact management for Laravel 5 with automatical geocoding to add longitude and latitude. Uses the famous Countries package by Webpatser.
Require the package from your composer.json file
"require": {
"vendocrat/laravel-addresses": "dev-master"
}
and run $ composer update or both in one with $ composer require vendocrat/laravel-addresses.
Next register the following service providers and facades to your config/app.php file
'providers' => [
// Illuminate Providers ...
// App Providers ...
vendocrat\Addresses\AddressesServiceProvider::class,
Webpatser\Countries\CountriesServiceProvider::class,
];
'providers' => [
// Illuminate Facades ...
'Address' => vendocrat\Addresses\Facades\Addresses::class,
'Countries' => Webpatser\Countries\CountriesFacade::class,
];
$ php artisan vendor:publish
$ php artisan countries:migration
This will create a config/addresses.php and the migration files. In the config file you can customize the table names, finally you'll have to run migration like so:
$ php artisan migrate
Check out Webpatser\Countries readme to see how to seed their countries data to your database.
$post = Post::find(1);
$post->addAddress([
'street' => '123 Example Drive',
'city' => 'Vienna',
'post_code' => '1110',
'country' => 'AT', // ISO-3166-2 or ISO-3166-3 country code
'is_primary' => true, // optional flag
]);
Alternativly you could do...
$address = [
'street' => '123 Example Drive',
'city' => 'Vienna',
'post_code' => '1110',
'country' => 'AT', // ISO-3166-2 or ISO-3166-3 country code
'is_primary' => true, // optional flag
];
$post->addAddress($address);
Available attributes are street, city, post_code, state, country, state, note (for internal use), is_primary, is_billing & is_shipping. Optionally you could also pass lng and lat, in case you deactivated the included geocoding functionality and want to add them yourself.
if ( $post->hasAddress() ) {
// Do something
}
$addresses = $post->addresses()->get();
$address = $post->getPrimaryAddress();
$address = $post->getBillingAddress();
$address = $post->getShippingAddress();
$address = $post->addresses()->first(); // fetch the address
$post->updateAddress($address, $new_attributes);
$address = $post->addresses()->first(); // fetch the address
$post->deleteAddress($address); // delete by passing it as argument
$post->flushAddresses();
Licensed under MIT license.
Handcrafted with love by Alexander Manfred Poellmann for vendocrat in Vienna & Rome.# laravel-addresses