Rollback feature!
It has the feature of Rollback any auditable Model to the time of your choice, for example
$retrievesPost = Rollback::forModel($post)
->atDate(Carbon::now()->subDay())
->retrieve();
Or if you just want to see the first Post created
$retrievesPost = Rollback::forModel($post)
->retrieve();
Other features:
- Clearer output in the console for commands
- Testing