PHPackages                             sonover/address - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. sonover/address

AbandonedLibrary[Utility &amp; Helpers](/categories/utility)

sonover/address
===============

Sonover Address Module

0.4(7y ago)0163PHPPHP &gt;=7.0.0CI failing

Since Sep 25Pushed 6y ago3 watchersCompare

[ Source](https://github.com/sonover/address)[ Packagist](https://packagist.org/packages/sonover/address)[ RSS](/packages/sonover-address/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (6)Dependencies (4)Versions (8)Used By (0)

Sonover Address Module
======================

[](#sonover-address-module)

Sonover Address is a [Concord module](https://artkonekt.github.io/concord/#/modules) that allows you to store addresses for an entity. Being a Concord module it is intended to be used by Laravel Applications.

Installation
------------

[](#installation)

1. `composer require sonover/address`
2. If concord hasn't been installed yet, [install it](https://artkonekt.github.io/concord/#/installation)
3. Edit `config/concord.php` and add the address module:

```
return [
    'modules' => [
        Sonover\Address\Providers\ModuleServiceProvider::class
    ]
];
```

After this, address should be listed among the concrd modules:

```
php artisan concord:modules -a

+----+-----------------------+--------+---------+------------------+-----------------+
| #  | Name                  | Kind   | Version | Id               | Namespace       |
+----+-----------------------+--------+---------+------------------+-----------------+
| 1. | Sonover Address Module | Module | 0.2.0   | sonover.address | Sonover\Address |
+----+-----------------------+--------+---------+------------------+-----------------+

```

Usuage
------

[](#usuage)

```
class Contact extends Model {
    use Addressable;
}
```

### Add an Address

[](#add-an-address)

```
$contact->addAddress([
    'address' => 'Example',
    'city' => 'Example City',
    'province' => 'St. George',
    'country' => 'GD',
    'postalcode' => 'GD-142'
], 'shipping');
```

### Get all shipping addresses

[](#get-all-shipping-addresses)

```
$contact->shippingAddress

```

The following types are supported out of the box: `billing`, `business`, `contract`, `mailing`, `pickup`, `residential` and `shipping`

If you want to extend this list for your application refer to [Extending Enums](https://artkonekt.github.io/concord/#/enums?id=extending-enums) in Concord's documentation.

You can grab any address by the type `$contact->{type}Address`

### Remove Address

[](#remove-address)

```
$contact->removeAddress($address)
```

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~3 days

Total

6

Last Release

2818d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/928639?v=4)[Clevon Noel](/maintainers/clevonnoel)[@clevonnoel](https://github.com/clevonnoel)

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/sonover-address/health.svg)

```
[![Health](https://phpackages.com/badges/sonover-address/health.svg)](https://phpackages.com/packages/sonover-address)
```

###  Alternatives

[bagisto/bagisto

Bagisto Laravel E-Commerce

27.6k172.1k9](/packages/bagisto-bagisto)[unopim/unopim

UnoPim Laravel PIM

10.5k2.4k](/packages/unopim-unopim)[krayin/laravel-crm

Krayin CRM

23.2k33.6k1](/packages/krayin-laravel-crm)[vanilo/framework

E-commerce Framework for Laravel

86671.7k4](/packages/vanilo-framework)[konekt/address

Laravel module for handling countries, cities, addresses, people and organizations

18246.8k25](/packages/konekt-address)[vanilo/properties

Vanilo Properties (Attributes) Module

11153.7k3](/packages/vanilo-properties)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
