PHPackages                             laravel-enso/ro-addresses - 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. laravel-enso/ro-addresses

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

laravel-enso/ro-addresses
=========================

Romanian Addreses extension for Addresses

3.3.8(6y ago)32.0k3MITPHP

Since Dec 13Pushed 4y ago2 watchersCompare

[ Source](https://github.com/laravel-enso/ro-addresses)[ Packagist](https://packagist.org/packages/laravel-enso/ro-addresses)[ RSS](/packages/laravel-enso-ro-addresses/feed)WikiDiscussions master Synced yesterday

READMEChangelog (1)Dependencies (3)Versions (114)Used By (0)

Romanian Addresses
==================

[](#romanian-addresses)

[![Codacy Badge](https://camo.githubusercontent.com/e75fc4af22dd0c7649b2940c0173aed728198fcbae30c1161fa34422d10e5bd6/68747470733a2f2f6170692e636f646163792e636f6d2f70726f6a6563742f62616467652f47726164652f6337343034303836613135613464623662323038306231643039623036383861)](https://www.codacy.com/app/laravel-enso/addresses?utm_source=github.com&utm_medium=referral&utm_content=laravel-enso/addresses&utm_campaign=Badge_Grade)[![StyleCI](https://camo.githubusercontent.com/a0e489b9e8bf39b892a2e65b3e6643bbbb3710bc10669c2fc192ade2e77ffd3f/68747470733a2f2f7374796c6563692e696f2f7265706f732f3131343132363730392f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/114126709)[![License](https://camo.githubusercontent.com/62bae471f2b3ef05851b782ee126a5d5eb0fc28e8f690ba86cc3f7bcd1ac6bed/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2d656e736f2f7065726d697373696f6e6d616e616765722f6c6963656e7365)](https://packagist.org/packages/laravel-enso/ro-addresses)[![Total Downloads](https://camo.githubusercontent.com/b90cd5f0ec6df74fa84917f646008593cdd9eb5a1cbc1ac4caee2abd33a8230d/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2d656e736f2f726f2d6164647265737365732f646f776e6c6f616473)](https://packagist.org/packages/laravel-enso/ro-addresses)[![Latest Stable Version](https://camo.githubusercontent.com/ee33141c50d320d89c00d1b9ca7a0e9910e7465ea757caf7bcdcd6a0aded7cc3/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2d656e736f2f726f2d6164647265737365732f76657273696f6e)](https://packagist.org/packages/laravel-enso/ro-addresses)

Romanian Addresses extension for [Addresses](https://github.com/laravel-enso/addresses), the [Laravel Enso](https://github.com/laravel-enso/Enso) package.

[![Screenshot](https://camo.githubusercontent.com/cc68ceb449e6df74cdd94b5cfa7424a048b9bad10488988f8311bfaefdd26b6e/68747470733a2f2f6c61726176656c2d656e736f2e6769746875622e696f2f726f2d6164647265737365732f73637265656e73686f74732f62756c6d615f3034305f7468756d622e706e67)](https://laravel-enso.github.io/ro-addresses/screenshots/bulma_040.png)

### Features

[](#features)

- makes changes to the addresses columns to better fit the Romanian locale
- comes with two additional tables for Counties and Localities
- comes with its own customized form for the edit and creation of addresses
- comes with a personalized configuration
- comes with its own VueJS components `ro-addresses` in order to customize the form and the template for the address cards
- comes with its own trait
- comes with an import that updates localities

### Usage

[](#usage)

- add the package's `AppServiceProvider` to the `config/app.php` list of providers (package auto-discovery is not used as loading order is important)
- run the migrations, as they change the addresses table, add two other tables, and insert all the localities
- the configuration should be published, and inside you need to define the addresable types
- for the models you want to make addressable, you should use the [Addresses](https://github.com/laravel-enso/addresses) package's `Addresable` trait.
- publish the VueJs component.
- insert the `RoAddreses` vue component where required. It takes the same parameters as `Addresses` - `id` and `type`being the essential ones.

```

```

where

- `modelId` is the addressable model id
- `model_alias` is the respective model class

### Import

[](#import)

If you need to use the import, publish the included template, importer and validator, and add the new import to your configuration:

```
'localitiesUpdate' => [
    'label' => 'Localities Update',
    'template' => 'app/Importing/Templates/localityUpdate.json',
    'importerClass' => 'App\Importing\Importers\LocalityUpdateImporter',
    'customValidatorClass' => \App\Importing\Validators\LocalityUpdateValidator::class,
    'sheetEntriesLimit' => 5000,
    'stopOnErrors' => true,
],
```

### Publishes

[](#publishes)

- `php artisan vendor:publish --tag=ro-addresses-seeds` - the seeders
- `php artisan vendor:publish --tag=ro-addresses-config` - configuration file
- `php artisan vendor:publish --tag=ro-addresses-form` - form used for creating/editing addresses
- `php artisan vendor:publish --tag=ro-addresses-import` - form used for updating localities
- `php artisan vendor:publish --tag=enso-config` - a common alias for when wanting to update the config, once a newer version is released
- `php artisan vendor:publish --tag=ro-addresses-assets` - the VueJS component,
- `php artisan vendor:publish --tag=enso-assets` - a common alias for when wanting to update the VueJS component, once a newer version is released
- `php artisan vendor:publish --tag=enso-seeders` - a common alias for when wanting to update the seeders, once a newer version is released

### Notes

[](#notes)

The [Laravel Enso Core](https://github.com/laravel-enso/Core) package does NOT come with this package included, only with the generic [Addresses](https://github.com/laravel-enso/addresses).

This package depends on the [Addresses](https://github.com/laravel-enso/addresses) and it does not work standalone.

### Contributions

[](#contributions)

are welcome. Pull requests are great, but issues are good too.

### License

[](#license)

This package is released under the MIT license.

###  Health Score

38

—

LowBetter than 85% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity80

Battle-tested with a long release history

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~8 days

Total

106

Last Release

2221d ago

Major Versions

1.0.4 → 2.1.32018-01-16

1.0.6 → 2.1.62018-01-19

1.0.8 → 2.1.182018-02-13

1.0.10 → 2.1.212018-03-03

2.4.7 → 3.0.02019-03-12

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/16073274?v=4)[Adrian Ocneanu](/maintainers/aocneanu)[@aocneanu](https://github.com/aocneanu)

---

Top Contributors

[![gandesc](https://avatars.githubusercontent.com/u/14071925?v=4)](https://github.com/gandesc "gandesc (89 commits)")[![aocneanu](https://avatars.githubusercontent.com/u/16073274?v=4)](https://github.com/aocneanu "aocneanu (70 commits)")[![vmcvlad](https://avatars.githubusercontent.com/u/37445394?v=4)](https://github.com/vmcvlad "vmcvlad (11 commits)")[![DevIonut](https://avatars.githubusercontent.com/u/19207797?v=4)](https://github.com/DevIonut "DevIonut (9 commits)")[![GITmanuela](https://avatars.githubusercontent.com/u/44998004?v=4)](https://github.com/GITmanuela "GITmanuela (2 commits)")

---

Tags

addressesensolaravellaravel-ensoromanian

### Embed Badge

![Health badge](/badges/laravel-enso-ro-addresses/health.svg)

```
[![Health](https://phpackages.com/badges/laravel-enso-ro-addresses/health.svg)](https://phpackages.com/packages/laravel-enso-ro-addresses)
```

###  Alternatives

[laravel-enso/tutorials

Tutorial management dependency for Laravel Enso

1139.5k](/packages/laravel-enso-tutorials)

PHPackages © 2026

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