├── LICENSE ├── README.md ├── composer.json ├── config └── referral.php ├── database └── migrations │ └── add_referral_to_users_table.php └── src ├── Http └── Middleware │ └── CheckReferral.php ├── ReferralServiceProvider.php └── Traits └── UserReferral.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voocx/laravel-referral/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voocx/laravel-referral/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voocx/laravel-referral/HEAD/composer.json -------------------------------------------------------------------------------- /config/referral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voocx/laravel-referral/HEAD/config/referral.php -------------------------------------------------------------------------------- /database/migrations/add_referral_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voocx/laravel-referral/HEAD/database/migrations/add_referral_to_users_table.php -------------------------------------------------------------------------------- /src/Http/Middleware/CheckReferral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voocx/laravel-referral/HEAD/src/Http/Middleware/CheckReferral.php -------------------------------------------------------------------------------- /src/ReferralServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voocx/laravel-referral/HEAD/src/ReferralServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/UserReferral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voocx/laravel-referral/HEAD/src/Traits/UserReferral.php --------------------------------------------------------------------------------