├── .editorconfig ├── .vscode └── settings.json ├── README.md ├── composer.json ├── config └── coupon.php ├── database ├── factories │ └── CouponFactory.php └── migrations │ └── 2018_08_24_104218_create_coupons_table.php ├── images └── carbon.png └── src ├── .gitkeep ├── CouponServiceProvider.php ├── Exceptions ├── CouponAlreadyOverdue.php └── CouponAlreadyUsed.php ├── Models └── Coupon.php └── Traits └── HasCoupon.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m809745357/coupon/HEAD/.editorconfig -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m809745357/coupon/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m809745357/coupon/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m809745357/coupon/HEAD/composer.json -------------------------------------------------------------------------------- /config/coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m809745357/coupon/HEAD/config/coupon.php -------------------------------------------------------------------------------- /database/factories/CouponFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m809745357/coupon/HEAD/database/factories/CouponFactory.php -------------------------------------------------------------------------------- /database/migrations/2018_08_24_104218_create_coupons_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m809745357/coupon/HEAD/database/migrations/2018_08_24_104218_create_coupons_table.php -------------------------------------------------------------------------------- /images/carbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m809745357/coupon/HEAD/images/carbon.png -------------------------------------------------------------------------------- /src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CouponServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m809745357/coupon/HEAD/src/CouponServiceProvider.php -------------------------------------------------------------------------------- /src/Exceptions/CouponAlreadyOverdue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m809745357/coupon/HEAD/src/Exceptions/CouponAlreadyOverdue.php -------------------------------------------------------------------------------- /src/Exceptions/CouponAlreadyUsed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m809745357/coupon/HEAD/src/Exceptions/CouponAlreadyUsed.php -------------------------------------------------------------------------------- /src/Models/Coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m809745357/coupon/HEAD/src/Models/Coupon.php -------------------------------------------------------------------------------- /src/Traits/HasCoupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m809745357/coupon/HEAD/src/Traits/HasCoupon.php --------------------------------------------------------------------------------