├── .github └── workflows │ └── run-tests.yml ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config ├── .gitkeep └── config.php ├── database └── migrations │ └── create_wallet_plus_tables.php.stub └── src ├── Contracts └── WalletTransaction.php ├── Models ├── Traits │ └── HasWallets.php ├── Wallet.php ├── WalletLedger.php └── WalletType.php └── WalletPlusServiceProvider.php /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/composer.json -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/migrations/create_wallet_plus_tables.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/database/migrations/create_wallet_plus_tables.php.stub -------------------------------------------------------------------------------- /src/Contracts/WalletTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/src/Contracts/WalletTransaction.php -------------------------------------------------------------------------------- /src/Models/Traits/HasWallets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/src/Models/Traits/HasWallets.php -------------------------------------------------------------------------------- /src/Models/Wallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/src/Models/Wallet.php -------------------------------------------------------------------------------- /src/Models/WalletLedger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/src/Models/WalletLedger.php -------------------------------------------------------------------------------- /src/Models/WalletType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/src/Models/WalletType.php -------------------------------------------------------------------------------- /src/WalletPlusServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoreProc/laravel-wallet-plus/HEAD/src/WalletPlusServiceProvider.php --------------------------------------------------------------------------------