Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.15 KB

README.md

File metadata and controls

37 lines (26 loc) · 1.15 KB

Reviz

Build Status codecov Total Downloads Latest Stable Version License

Easy way to record and rollback any changes of your Eloquent Entities.

Feature

  • √ Monitor your Eloquent changes.
  • √ Filter specific fields to be monitored.
  • √ Single Rollback to specific state
  • √ Group rollback by batch
  • [soon] GUI

How to use

Just put RevizTrait to your desired Eloquent Models. e.g:

namespace App;

use Antoniputra\Reviz\RevizTrait;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;

class Post extends Model
{
    use SoftDeletes, RevizTrait;

    ...
}