This is a simple/basic implementation of a ledger in laravel 5
- RECORDING DEBITS
- RECORDING CREDITS
- BALANCE COMPUTATION
git clone https://github.com/mpaannddreew/laravel-ledger.git
Register service provider
FannyPack\Ledger\LedgerServiceProvider::class,
Register Facade Register service provider
'Ledger' => FannyPack\Ledger\Facades\Ledger::class,
After the service provider is registered run this command
php artisan vendor:publish --tag=ledger
Run migrations
php artisan migrate
This command will copy the library's vue components into your codebase
Register package routes in your app's RouteServiceProvider
Ledger::routes();
Using it with your models, add
namespace App;
use FannyPack\Ledger\Traits\Ledgerable;
use Illuminate\Database\Eloquent\Model;
class Account extends Model
{
use Ledgerable;
}
Show available balance
$account = Account::find(1);
$balance = Ledger::balance($account);
or
$account = Account::find(1);
$balance = $account->balance();
Record a credit entry
$account = Account::find(1);
Ledger::credit($account, $to, $amount, $reason);
or
$account = Account::find(1);
$account->credit($to, $amount, $reason);
Record a debit entry
$account = Account::find(1);
Ledger::debit($account, $from, $amount, $reason);
or
$account = Account::find(1);
$account->debit($from, $amount, $reason);
Recording debits and credits in one transaction
$account = Account::find(1);
$account2 = Account::find(2);
$account3 = Account::find(3);
Ledger::transfer($account, [$account2, $account3], $amount, $reason);
// or
Ledger::transfer($account, $account2, $amount, $reason);
Ledger::transfer($account, $account3, $amount, $reason);
or
$account = Account::find(1);
$account2 = Account::find(2);
$account3 = Account::find(3);
$account->transfer([$account2, $account3], $amount, $reason);
// or
$account->transfer($account2, $amount, $reason);
$account->transfer($account3, $amount, $reason);
Retrieving all entries of a ledgerable
$account = Account::find(1);
$entries = $account->entries();
Retrieving all debits of a ledgerable
$account = Account::find(1);
debits = $account->debits();
Retrieving all credits of a ledgerable
$account = Account::find(1);
debits = $account->credits();
Using the provided Ledger.vue component in your blade templates
<ledger></ledger>
For any bugs found, please email me at andrewmvp007@gmail.com or register an issue at issues