imamuseum/harvester-transaction

Transaction Export API for Havester.

1.0.0 2016-06-01 19:49 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:26:18 UTC


README

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