PHPackages                             rentalmanager/amenities - 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. rentalmanager/amenities

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

rentalmanager/amenities
=======================

Rental Manager Amenities package which propels the basic system where you can manage properties for rent.

v2.0.1(7y ago)025proprietaryPHPPHP ^7.1.3

Since Jul 5Pushed 7y ago1 watchersCompare

[ Source](https://github.com/rentalmanager/amenities)[ Packagist](https://packagist.org/packages/rentalmanager/amenities)[ Docs](https://github.com/rentalmanager/amenities)[ RSS](/packages/rentalmanager-amenities/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependencies (3)Versions (8)Used By (0)

RentalManager - AMENITIES
=========================

[](#rentalmanager---amenities)

A package made for Rentbits for easier maintenance and modularity of managing rental listings. It includes all migrations, models and relations to run the rental system.

Installation, Configuration and Usage
-------------------------------------

[](#installation-configuration-and-usage)

### Installation

[](#installation)

Via Composer

```
composer require rentalmanager/amenities
```

### Configuration

[](#configuration)

Once you install the package, it should be automatically discovered by the Laravel. To check this, in your terminal simply run the:

```
$ php artisan
```

There you should find the all `rm:*` commands.

First step after checking is to publish the vendors:

```
$ php artisan vendor:publish --tag="amenities"
```

After that it depends on you. If you are a hard learner, run through each commands manually, but then you can just simply run the

```
$ php artisan rm:setup-amenities
```

Thats it...

```
$ composer dump-autoload
```

You can add seeder class to your DB seeder like:

```
$this->call(RentalManagerAmenitiesSeeder::class);
```

Or by running the seeder directly by invoking:

```
$ php artisan db:seed --class=RentalManagerAmenitiesSeeder
```

Usage
-----

[](#usage)

Below is the sample usages of this package:

To attach the single amenity to a unit or a property (the same applies)

```
$object->attachAmenity(1);
```

To attach multiple amenities

```
$object->attachAmenities([1,2,3]);
```

There is common sync methods as well

```
$object->syncAmenities([1,2,3]);
```

and without detaching

```
$object->syncAmenitiesWithoutDetaching([1,2,3]);
```

### Scopes

[](#scopes)

This package provides a usable scope for amenitable objects

```
// get all objects where amenities are
$result = $object->whereAmenitiesAre([1,2,3]);
```

And few scopes for the amenity model itself

```
$amenities = Amenity::byGroup('notable');

$amenities = Amenity::byType('unit');

// disctinct by groups
$groups = Amenity::groups();

$types = Amenity::types();
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

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

Recently: every ~17 days

Total

7

Last Release

2802d ago

Major Versions

v1.1.1 → v2.0.02018-08-07

### Community

Maintainers

![](https://www.gravatar.com/avatar/dc897661efd3f9b1d0b6cee6fa6eb2f5535819e0c2e0a0adab66b4d6002133be?d=identicon)[gorankrgovic](/maintainers/gorankrgovic)

---

Top Contributors

[![gorankrgovic](https://avatars.githubusercontent.com/u/12137730?v=4)](https://github.com/gorankrgovic "gorankrgovic (6 commits)")

---

Tags

RentbitsAmenities

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/rentalmanager-amenities/health.svg)

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

PHPackages © 2026

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