Skip to content

๐Ÿš€ Lightweight E-Wallet for Laravel.

License

Notifications You must be signed in to change notification settings

Eshan-Studio/esh-dompet

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

14 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ”’ ESH Dompet

Package ini berfungsi untuk menyimpan saldo ke dompet digital

๐Ÿ› ๏ธ Installation with Composer

composer require irfa/dompet

You can get Composer here


๐Ÿ› ๏ธ Laravel Setup

1. Add to config/app.php

'providers' => [
      	 ....
         Irfa\Dompet\DompetServiceProvider::class, 
     ];

2. Add to config/app.php

'aliases' => [
         ....
    	'Dompet' => Irfa\Dompet\Saku\Dompet::class,
],

3. Publish Vendor

php artisan vendor:publish --tag=dompet

4.Migrate Tables

php artisan migrate

Basic Usage


Create new PIN

use Dompet;
...
Dompet::make($user->id, 123456);
//return boolean

Update PIN

...
Dompet::credential($userID,$pin)->update($new_pin);
//return boolean

Add Balance to account

... 
Dompet::credential($userID,$pin)->balance(20000)->add("Some Transaction",$transaction_id);
//return boolean

Reduce Balance to account

...
Dompet::credential($userID,$pin)->balance(20000)->reduce("Some Transaction",$transaction_id);
//return boolean

Get total Balance

...
Dompet::credential($user->id)->sumBalance();
//result 5000
//Formated number
Dompet::credential($user->id)->sumBalance(true);
// result 5,000

Get Transaction History

... 
foreach(Dompet::credential($userID)->history() as $d)
 {
     echo $d->annotation." | ".$d->balance."<br>";
 }

Get Message success or fail

if(Dompet::credential()->balance(2000)->add("Some Transaction",$transaction_id))
{
     echo "Succeded, ".Dompet::message();
} else 
	{
     	echo "Failed, ".Dompet::message();
	}

How to Contributing

  1. Fork it (https://github.com/irfaardy/esh-dompet/fork)
  2. Commit your changes (git commit -m 'Add some Feature')
  3. Push to the branch (git push origin version)
  4. Create a new Pull Request

LICENSE
GitHub license

Packages

No packages published

Languages

  • PHP 100.0%