PHPackages                             blessingdube/laravel-recurring - 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. blessingdube/laravel-recurring

Abandoned → [oss-tools/laravel-recurring](/?search=oss-tools%2Flaravel-recurring)Library[Utility &amp; Helpers](/categories/utility)

blessingdube/laravel-recurring
==============================

Package for adding recurring functionality to laravel models.

v1.0.1(2y ago)0106MITPHPPHP ^8.0.2CI failing

Since Jul 5Pushed 2y ago1 watchersCompare

[ Source](https://github.com/oss-tools/laravel-recurring)[ Packagist](https://packagist.org/packages/blessingdube/laravel-recurring)[ Docs](https://github.com/oss-tools/laravel-recurring)[ RSS](/packages/blessingdube-laravel-recurring/feed)WikiDiscussions master Synced today

READMEChangelog (5)Dependencies (5)Versions (9)Used By (0)

Recurring relation for Laravel models.
======================================

[](#recurring-relation-for-laravel-models)

[![Latest Version](https://camo.githubusercontent.com/c5b6f33d869479dd25e327e96bf8f82f0f8fa30430766b53c55adfc8d2ed0dc3/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f6f73732d746f6f6c732f6c61726176656c2d726563757272696e672e7376673f7374796c653d666c61742d737175617265)](https://github.com/oss-tools/laravel-recurring/releases)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![GitHub Workflow Status](https://camo.githubusercontent.com/b1c008791963ba43a8a37bf00084054b261033b6d51cb69b206359f156f0bc87/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6f73732d746f6f6c732f6c61726176656c2d726563757272696e672f72756e2d74657374733f6c6162656c3d7465737473)](https://camo.githubusercontent.com/b1c008791963ba43a8a37bf00084054b261033b6d51cb69b206359f156f0bc87/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6f73732d746f6f6c732f6c61726176656c2d726563757272696e672f72756e2d74657374733f6c6162656c3d7465737473)[![Check & fix styling](https://github.com/oss-tools/laravel-recurring/workflows/Check%20&%20fix%20styling/badge.svg)](https://github.com/oss-tools/laravel-recurring/workflows/Check%20&%20fix%20styling/badge.svg)[![Total Downloads](https://camo.githubusercontent.com/8e8057edc0aa77166d2105d9e988b386d08b368849414ac56f2a1cf9a2e5a7d2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f73732d746f6f6c732f6c61726176656c2d726563757272696e672e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/oss-tools/laravel-recurring)

**Note:** This package is still in active development so breaking changes may be applied before v1 is released. Please proceed with caution.

This package adds a recurring relation to laravel models.

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

[](#installation)

You can install the package via composer:

```
composer require oss-tools/laravel-recurring
```

Usage
-----

[](#usage)

```
use OSSTools\Recurring\Contracts\IsRecurring;
use OSSTools\Recurring\Traits\RecurringTrait;

class Event extends Model implements IsRecurring
{
    use RecurringTrait;

    public function getRecurringOptions()
    {
        return [
            'start_date' => 'starts_at',
            'end_date' => 'ends_at',
        ];
    }
}
```

Testing
-------

[](#testing)

```
composer test
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity65

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

Recently: every ~146 days

Total

8

Last Release

1019d ago

Major Versions

0.1.5 → v1.0.02023-07-24

PHP version history (3 changes)0.1.0PHP ^7.1.3

0.1.1PHP ^7.1.3|^8.0

v1.0.0PHP ^8.0.2

### Community

Maintainers

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

---

Top Contributors

[![blessingdube](https://avatars.githubusercontent.com/u/24409039?v=4)](https://github.com/blessingdube "blessingdube (26 commits)")

---

Tags

oss-toolsLaravel-Recurring

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/blessingdube-laravel-recurring/health.svg)

```
[![Health](https://phpackages.com/badges/blessingdube-laravel-recurring/health.svg)](https://phpackages.com/packages/blessingdube-laravel-recurring)
```

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[orchestra/canvas

Code Generators for Laravel Applications and Packages

21017.2M158](/packages/orchestra-canvas)[flarum/core

Delightfully simple forum software.

211.3M1.9k](/packages/flarum-core)[kirschbaum-development/commentions

A package to allow you to create comments, tag users and more

12369.2k](/packages/kirschbaum-development-commentions)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)[glhd/special

1929.4k](/packages/glhd-special)

PHPackages © 2026

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