├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── wallet.php ├── database └── migrations │ └── add_wallet_balance_column_to_model_table.php.stub └── src ├── Exceptions ├── InsufficientFundException.php └── InvalidAmountException.php ├── Interfaces └── Wallet.php ├── Traits └── HasWallet.php └── WalletServiceProvider.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/laravel-wallet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/laravel-wallet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/laravel-wallet/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/laravel-wallet/HEAD/composer.json -------------------------------------------------------------------------------- /config/wallet.php: -------------------------------------------------------------------------------- 1 |