affenpilot/timeline is a Laravel package for this package is used for timeline..
It currently has 2 GitHub stars and 537 downloads on Packagist (latest version v1.0.0).
Install it with composer require affenpilot/timeline.
Discover more Laravel packages by affenpilot
or browse all Laravel packages to compare alternatives.
Last updated
This is a basic timeline module for Laravel.
Add the following line in the providers array in 'config\app.php':
...
'providers' => [
...
Affenpilot\Timeline\TimelineServiceProvider::class
...
]
...
Publish and migrate:
php artisan vendor:publish --provider="Affenpilot\Timeline\TimelineServiceProvider"
<?php
namespace App;
use Affenpilot\Timeline\HasPosts;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
use HasPosts;
}