├── .gitignore ├── README.md ├── assets ├── infyom-logo.png └── payu.css ├── composer.json ├── config └── payu.php ├── src ├── Commands │ └── PublishAsset.php ├── PayuMoneyAppServiceProvider.php ├── PayuMoneyController.php └── routes.php ├── stubs └── PayuMoneyController.stub └── views └── payumoney ├── fail.blade.php └── pay.blade.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | .idea 3 | composer.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfyOmLabs/laravel-payumoney/HEAD/README.md -------------------------------------------------------------------------------- /assets/infyom-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfyOmLabs/laravel-payumoney/HEAD/assets/infyom-logo.png -------------------------------------------------------------------------------- /assets/payu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfyOmLabs/laravel-payumoney/HEAD/assets/payu.css -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfyOmLabs/laravel-payumoney/HEAD/composer.json -------------------------------------------------------------------------------- /config/payu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfyOmLabs/laravel-payumoney/HEAD/config/payu.php -------------------------------------------------------------------------------- /src/Commands/PublishAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfyOmLabs/laravel-payumoney/HEAD/src/Commands/PublishAsset.php -------------------------------------------------------------------------------- /src/PayuMoneyAppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfyOmLabs/laravel-payumoney/HEAD/src/PayuMoneyAppServiceProvider.php -------------------------------------------------------------------------------- /src/PayuMoneyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfyOmLabs/laravel-payumoney/HEAD/src/PayuMoneyController.php -------------------------------------------------------------------------------- /src/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfyOmLabs/laravel-payumoney/HEAD/src/routes.php -------------------------------------------------------------------------------- /stubs/PayuMoneyController.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfyOmLabs/laravel-payumoney/HEAD/stubs/PayuMoneyController.stub -------------------------------------------------------------------------------- /views/payumoney/fail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfyOmLabs/laravel-payumoney/HEAD/views/payumoney/fail.blade.php -------------------------------------------------------------------------------- /views/payumoney/pay.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfyOmLabs/laravel-payumoney/HEAD/views/payumoney/pay.blade.php --------------------------------------------------------------------------------