gitextract_ks4k398i/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── composer.json ├── config/ │ └── referral.php ├── database/ │ └── migrations/ │ └── 2023_05_28_135232_create_referrals_table.php ├── routes/ │ └── web.php ├── src/ │ ├── Controllers/ │ │ └── ReferralController.php │ ├── Models/ │ │ └── Referral.php │ ├── Providers/ │ │ └── ReferralServiceProvider.php │ └── Traits/ │ └── Referrable.php └── tests/ └── ReferralControllerTest.php