mahdinickdel/laravel-reminders

This package is abandoned and no longer maintained. No replacement package was suggested.

Add reminder to your Eloquent models.

v0.0.2 2018-04-05 11:22 UTC

This package is not auto-updated.

Last update: 2019-04-08 06:07:55 UTC


README

Add reminder to your Eloquent models.

Installation

  1. You can install the package via composer:
composer require mahdinickdel/laravel-reminders

The package will automatically register itself.

  1. You can publish the migration with:
php artisan vendor:publish --provider="Mahdinickdel\Reminders\RemindersServiceProvider" --tag="migrations"

After the migration has been published you can create the reminders table by running the migrations:

php artisan migrate

Usage

namespace App;

...
use Mahdinickdel\Reminders\Remindable;
...

class EloquentModelName extends Model
{
    use Remindable;
}

License

This package is released under the MIT license (MIT).