##Harvester Transactions
###Composer Setup
"require": {
"imamuseum/harvester-transaction": "^1.0"
},
In config/app.php
add to the autoloaded providers -
Imamuseum\HarvesterTransaction\HarvesterTransactionServiceProvider::class,
###Add TransactionLogTrait to Model
class Object extends HarvesterObject
{
use \Imamuseum\HarvesterTransaction\Traits\TransactionLogTrait;
}