/harvester-transaction

Transaction Export API for Havester

Primary LanguagePHP

##Harvester Transactions

###Composer Setup

    "require": {
        "imamuseum/harvester-transaction": "^1.0"
    },

Service Provider

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;
}