PHPackages                             michal78/laravel-tasks - 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. michal78/laravel-tasks

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

michal78/laravel-tasks
======================

Simple task management for Laravel

1.0.0.3(11mo ago)25[3 PRs](https://github.com/michal78/laravel-tasks/pulls)MITPHPPHP ^7.4|^8.0|^8.1|^8.2

Since May 18Pushed 10mo ago1 watchersCompare

[ Source](https://github.com/michal78/laravel-tasks)[ Packagist](https://packagist.org/packages/michal78/laravel-tasks)[ Docs](https://github.com/michal78/laravel-tasks)[ RSS](/packages/michal78-laravel-tasks/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (5)Versions (17)Used By (0)

Laravel simple Tasks
====================

[](#laravel-simple-tasks)

This package provides simple task management for Laravel applications. It is compatible with Laravel versions 8 through 12.

[![Latest Version on Packagist](https://camo.githubusercontent.com/ab2ee3fab4caad6323c62d75b7a07c1bd7f96a55d7f4e3044772c31394f34b4f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d696368616c37382f6c61726176656c2d7461736b732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/michal78/laravel-tasks)[![Total Downloads](https://camo.githubusercontent.com/ecc6c8b21092300d05fc979e96501bc8988c6ed06f76c6159aa0c10cabd91a03/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d696368616c37382f6c61726176656c2d7461736b732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/michal78/laravel-tasks)[![GitHub Actions](https://github.com/michal78/laravel-tasks/actions/workflows/main.yml/badge.svg)](https://github.com/michal78/laravel-tasks/actions/workflows/main.yml/badge.svg)

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

[](#installation)

You can install the package via composer:

```
composer require michal78/laravel-tasks
```

Usage
-----

[](#usage)

```
// Add the HasTasks trait to your model
use Michal78\Tasks\Traits\HasTasks;

class User extends Model
{
    use HasTasks;
}

// Create a task
$user->addTask(
    [
        'name' => 'My task',
        'description' => 'My task description',
        'priority' => 2,
        'due_date' => now()->addDays(7),
    ]
);

// Get all tasks
$user->tasks;

// Get all tasks that are not completed
$user->tasks()->notCompleted()->get();

// Get all tasks that are completed
$user->tasks()->completed()->get();

// Get all tasks that are completed and have a due date in the future
$user->tasks()->completed()->future()->get();
```

### Testing (Not implemented yet)

[](#testing-not-implemented-yet)

```
composer test
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Michal Skogemann](https://github.com/michal78)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance53

Moderate activity, may be stable

Popularity7

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

Total

3

Last Release

334d ago

PHP version history (2 changes)1.0.0.0PHP ^7.4|^8.0

1.0.0.3PHP ^7.4|^8.0|^8.1|^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/27c8fa2ab59c3e8cbaf0c8d4638b6f2b16cf6104ad54e568824eeab753bd0d59?d=identicon)[michal78](/maintainers/michal78)

---

Top Contributors

[![michal78](https://avatars.githubusercontent.com/u/239061?v=4)](https://github.com/michal78 "michal78 (24 commits)")

---

Tags

laravel-tasksmichal78

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/michal78-laravel-tasks/health.svg)

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

###  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)[aedart/athenaeum

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

245.2k](/packages/aedart-athenaeum)[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)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)

PHPackages © 2026

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