affenpilot / timeline
This package is used for timeline.
Installs: 537
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/affenpilot/timeline
Requires
- php: ^7.0
This package is not auto-updated.
Last update: 2026-01-11 22:55:55 UTC
README
This is a basic timeline module for Laravel.
Installation
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"
Usage
<?php namespace App; use Affenpilot\Timeline\HasPosts; use Illuminate\Database\Eloquent\Model; class User extends Model { use HasPosts; }