This is a simple implementation of a ledger in laravel 8/9
- Balances
- Debit accounts
- Credit account
- Top up accounts
git clone https://github.com/mpaannddreew/laravel-ledger.git
Register service provider
DanDoingDev\Ledger\LedgerServiceProvider::class,
Register Facade Register service provider
'Ledger' => DanDoingDev\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 DanDoingDev\Ledger\Traits\Ledgerable;
use Illuminate\Database\Eloquent\Model;
class Account extends Model
{
use Ledgerable;
}
Show available balance
$account = Account::find(1);
$balance = $account->balance();
Record a top up entry
$account = Account::find(1);
$account->topUp($amount, $currency, $reason);
Record a credit entry
$account = Account::find(1);
$account->credit($to, $amount, $reason);
Record a debit entry
$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();
For any bugs found, please log an issue at issues