├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .htaccess ├── .idea ├── modules.xml ├── orca odd.iml ├── vcs.xml └── workspace.xml ├── .styleci.yml ├── README.md ├── app ├── Console │ ├── Commands │ │ ├── BinanceGetStatus.php │ │ ├── BlockIoIPN.php │ │ ├── Cron.php │ │ ├── PayoutCryptoCurrencyUpdateCron.php │ │ ├── PayoutCurrencyUpdateCron.php │ │ └── SqlUpdate.php │ └── Kernel.php ├── Events │ ├── AdminNotification.php │ ├── MatchNotification.php │ ├── UpdateAdminNotification.php │ ├── UpdateUserNotification.php │ └── UserNotification.php ├── Exceptions │ └── Handler.php ├── Helper │ ├── GoogleAuthenticator.php │ └── helpers.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ └── ResetPasswordController.php │ │ │ ├── BasicController.php │ │ │ ├── CategoryController.php │ │ │ ├── ContentController.php │ │ │ ├── DashboardController.php │ │ │ ├── EmailTemplateController.php │ │ │ ├── IdentyVerifyFromController.php │ │ │ ├── LanguageController.php │ │ │ ├── LogController.php │ │ │ ├── LoginController.php │ │ │ ├── ManageBetController.php │ │ │ ├── ManageResultController.php │ │ │ ├── ManageRolePermissionController.php │ │ │ ├── ManualGatewayController.php │ │ │ ├── MatchController.php │ │ │ ├── MatchOptionController.php │ │ │ ├── NotifyController.php │ │ │ ├── PaymentLogController.php │ │ │ ├── PaymentMethodController.php │ │ │ ├── PayoutGatewayController.php │ │ │ ├── PayoutRecordController.php │ │ │ ├── SmsTemplateController.php │ │ │ ├── SubscriberController.php │ │ │ ├── TeamController.php │ │ │ ├── TemplateController.php │ │ │ ├── TicketController.php │ │ │ ├── TournamentController.php │ │ │ └── UsersController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Controller.php │ │ ├── FrontendController.php │ │ ├── GameFetchController.php │ │ ├── PaymentController.php │ │ ├── SiteNotificationController.php │ │ ├── User │ │ │ ├── BetHistoryController.php │ │ │ ├── HomeController.php │ │ │ ├── SupportController.php │ │ │ └── VerificationController.php │ │ └── khaltiPaymentController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── AdminAuthorizeMiddleware.php │ │ ├── Authenticate.php │ │ ├── CheckUserStatus.php │ │ ├── DemoMode.php │ │ ├── EncryptCookies.php │ │ ├── KYC.php │ │ ├── LanguageMiddleware.php │ │ ├── Maintenance.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ └── Auth │ │ │ └── LoginRequest.php │ └── Traits │ │ ├── ContentDelete.php │ │ ├── Notify.php │ │ ├── Translatable.php │ │ └── Upload.php ├── Mail │ └── SendMail.php ├── Models │ ├── Admin.php │ ├── BetInvest.php │ ├── BetInvestLog.php │ ├── Configure.php │ ├── Content.php │ ├── ContentDetails.php │ ├── ContentMedia.php │ ├── EmailTemplate.php │ ├── Fund.php │ ├── GameCategory.php │ ├── GameMatch.php │ ├── GameOption.php │ ├── GameQuestions.php │ ├── GameTeam.php │ ├── GameTournament.php │ ├── Gateway.php │ ├── IdentifyForm.php │ ├── KYC.php │ ├── Language.php │ ├── NotifyTemplate.php │ ├── PasswordReset.php │ ├── PayoutLog.php │ ├── PayoutMethod.php │ ├── RazorpayContact.php │ ├── Referral.php │ ├── ReferralBonus.php │ ├── SiteNotification.php │ ├── SmsControl.php │ ├── SmsTemplate.php │ ├── Subscriber.php │ ├── Template.php │ ├── TemplateMedia.php │ ├── Ticket.php │ ├── TicketAttachment.php │ ├── TicketMessage.php │ ├── Transaction.php │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Rules │ └── FileTypeValidate.php ├── Services │ ├── BasicCurl.php │ ├── BasicService.php │ ├── Gateway │ │ ├── authorizenet │ │ │ └── Payment.php │ │ ├── binance │ │ │ └── Payment.php │ │ ├── blockchain │ │ │ └── Payment.php │ │ ├── blockio │ │ │ ├── BlockIo.php │ │ │ ├── Payment.php │ │ │ └── cacert.pem │ │ ├── cashmaal │ │ │ └── Payment.php │ │ ├── cashonex │ │ │ └── Payment.php │ │ ├── cashonexHosted │ │ │ └── Payment.php │ │ ├── coinbasecommerce │ │ │ └── Payment.php │ │ ├── coingate │ │ │ ├── Payment.php │ │ │ └── coingate-php │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── init.php │ │ │ │ ├── lib │ │ │ │ ├── APIError │ │ │ │ │ ├── APIError.php │ │ │ │ │ ├── AccountBlocked.php │ │ │ │ │ ├── BadAuthToken.php │ │ │ │ │ ├── BadCredentials.php │ │ │ │ │ ├── BadEnvironment.php │ │ │ │ │ ├── BadRequest.php │ │ │ │ │ ├── CredentialsMissing.php │ │ │ │ │ ├── InternalServerError.php │ │ │ │ │ ├── IpAddressIsNotAllowed.php │ │ │ │ │ ├── NotFound.php │ │ │ │ │ ├── OrderIsNotValid.php │ │ │ │ │ ├── OrderNotFound.php │ │ │ │ │ ├── PageNotFound.php │ │ │ │ │ ├── RateLimitException.php │ │ │ │ │ ├── RecordNotFound.php │ │ │ │ │ ├── Unauthorized.php │ │ │ │ │ └── UnprocessableEntity.php │ │ │ │ ├── CoinGate.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Merchant.php │ │ │ │ └── Merchant │ │ │ │ │ └── Order.php │ │ │ │ ├── phpunit.no_autoload.xml │ │ │ │ ├── phpunit.xml │ │ │ │ └── tests │ │ │ │ ├── OrderTest.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── bootstrap.no_autoload.php │ │ │ │ └── bootstrap.php │ │ ├── coinpayments │ │ │ ├── CoinPaymentHosted.php │ │ │ └── Payment.php │ │ ├── flutterwave │ │ │ └── Payment.php │ │ ├── freekassa │ │ │ └── Payment.php │ │ ├── imepay │ │ │ └── Payment.php │ │ ├── instamojo │ │ │ └── Payment.php │ │ ├── khalti │ │ │ └── Payment.php │ │ ├── konnect │ │ │ └── Payment.php │ │ ├── mercadopago │ │ │ └── Payment.php │ │ ├── midtrans │ │ │ └── Payment.php │ │ ├── mollie │ │ │ └── Payment.php │ │ ├── monnify │ │ │ └── Payment.php │ │ ├── mypay │ │ │ └── Payment.php │ │ ├── nowpayments │ │ │ └── Payment.php │ │ ├── payeer │ │ │ └── Payment.php │ │ ├── paypal │ │ │ └── Payment.php │ │ ├── paystack │ │ │ └── Payment.php │ │ ├── paytm │ │ │ ├── PayTM.php │ │ │ ├── Payment.php │ │ │ └── PaytmChecksum.php │ │ ├── payumoney │ │ │ └── Payment.php │ │ ├── peachpayments │ │ │ └── Payment.php │ │ ├── perfectmoney │ │ │ └── Payment.php │ │ ├── razorpay │ │ │ ├── Payment.php │ │ │ └── razorpay-php │ │ │ │ ├── README.md │ │ │ │ ├── Razorpay.php │ │ │ │ ├── composer.json │ │ │ │ ├── composer.lock │ │ │ │ ├── doc.md │ │ │ │ ├── libs │ │ │ │ └── Requests-1.7.0 │ │ │ │ │ ├── .coveralls.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── library │ │ │ │ │ ├── Requests.php │ │ │ │ │ └── Requests │ │ │ │ │ │ ├── Auth.php │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ └── Basic.php │ │ │ │ │ │ ├── Cookie.php │ │ │ │ │ │ ├── Cookie │ │ │ │ │ │ └── Jar.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── HTTP.php │ │ │ │ │ │ ├── HTTP │ │ │ │ │ │ │ ├── 304.php │ │ │ │ │ │ │ ├── 305.php │ │ │ │ │ │ │ ├── 306.php │ │ │ │ │ │ │ ├── 400.php │ │ │ │ │ │ │ ├── 401.php │ │ │ │ │ │ │ ├── 402.php │ │ │ │ │ │ │ ├── 403.php │ │ │ │ │ │ │ ├── 404.php │ │ │ │ │ │ │ ├── 405.php │ │ │ │ │ │ │ ├── 406.php │ │ │ │ │ │ │ ├── 407.php │ │ │ │ │ │ │ ├── 408.php │ │ │ │ │ │ │ ├── 409.php │ │ │ │ │ │ │ ├── 410.php │ │ │ │ │ │ │ ├── 411.php │ │ │ │ │ │ │ ├── 412.php │ │ │ │ │ │ │ ├── 413.php │ │ │ │ │ │ │ ├── 414.php │ │ │ │ │ │ │ ├── 415.php │ │ │ │ │ │ │ ├── 416.php │ │ │ │ │ │ │ ├── 417.php │ │ │ │ │ │ │ ├── 418.php │ │ │ │ │ │ │ ├── 428.php │ │ │ │ │ │ │ ├── 429.php │ │ │ │ │ │ │ ├── 431.php │ │ │ │ │ │ │ ├── 500.php │ │ │ │ │ │ │ ├── 501.php │ │ │ │ │ │ │ ├── 502.php │ │ │ │ │ │ │ ├── 503.php │ │ │ │ │ │ │ ├── 504.php │ │ │ │ │ │ │ ├── 505.php │ │ │ │ │ │ │ ├── 511.php │ │ │ │ │ │ │ └── Unknown.php │ │ │ │ │ │ ├── Transport.php │ │ │ │ │ │ └── Transport │ │ │ │ │ │ │ └── cURL.php │ │ │ │ │ │ ├── Hooker.php │ │ │ │ │ │ ├── Hooks.php │ │ │ │ │ │ ├── IDNAEncoder.php │ │ │ │ │ │ ├── IPv6.php │ │ │ │ │ │ ├── IRI.php │ │ │ │ │ │ ├── Proxy.php │ │ │ │ │ │ ├── Proxy │ │ │ │ │ │ └── HTTP.php │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ ├── Response │ │ │ │ │ │ └── Headers.php │ │ │ │ │ │ ├── SSL.php │ │ │ │ │ │ ├── Session.php │ │ │ │ │ │ ├── Transport.php │ │ │ │ │ │ ├── Transport │ │ │ │ │ │ ├── cURL.php │ │ │ │ │ │ ├── cacert.pem │ │ │ │ │ │ └── fsockopen.php │ │ │ │ │ │ └── Utility │ │ │ │ │ │ ├── CaseInsensitiveDictionary.php │ │ │ │ │ │ └── FilteredIterator.php │ │ │ │ │ └── package.xml.tpl │ │ │ │ ├── src │ │ │ │ ├── Addon.php │ │ │ │ ├── Api.php │ │ │ │ ├── ArrayableInterface.php │ │ │ │ ├── Card.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Customer.php │ │ │ │ ├── Entity.php │ │ │ │ ├── Errors │ │ │ │ │ ├── BadRequestError.php │ │ │ │ │ ├── Error.php │ │ │ │ │ ├── ErrorCode.php │ │ │ │ │ ├── GatewayError.php │ │ │ │ │ ├── ServerError.php │ │ │ │ │ └── SignatureVerificationError.php │ │ │ │ ├── Invoice.php │ │ │ │ ├── Order.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Plan.php │ │ │ │ ├── Refund.php │ │ │ │ ├── Request.php │ │ │ │ ├── Resource.php │ │ │ │ ├── Settlement.php │ │ │ │ ├── Subscription.php │ │ │ │ ├── Token.php │ │ │ │ ├── Transfer.php │ │ │ │ ├── Utility.php │ │ │ │ └── VirtualAccount.php │ │ │ │ └── version.txt │ │ ├── securionpay │ │ │ └── Payment.php │ │ ├── skrill │ │ │ └── Payment.php │ │ ├── stripe │ │ │ ├── Payment.php │ │ │ └── stripe-php │ │ │ │ ├── .coveralls.yml │ │ │ │ ├── .github │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── VERSION │ │ │ │ ├── build.php │ │ │ │ ├── composer.json │ │ │ │ ├── data │ │ │ │ ├── ca-certificates.crt │ │ │ │ └── test.png │ │ │ │ ├── init.php │ │ │ │ ├── lib │ │ │ │ ├── Account.php │ │ │ │ ├── AlipayAccount.php │ │ │ │ ├── ApiRequestor.php │ │ │ │ ├── ApiResource.php │ │ │ │ ├── ApiResponse.php │ │ │ │ ├── ApplePayDomain.php │ │ │ │ ├── ApplicationFee.php │ │ │ │ ├── ApplicationFeeRefund.php │ │ │ │ ├── AttachedObject.php │ │ │ │ ├── Balance.php │ │ │ │ ├── BalanceTransaction.php │ │ │ │ ├── BankAccount.php │ │ │ │ ├── BitcoinReceiver.php │ │ │ │ ├── BitcoinTransaction.php │ │ │ │ ├── Card.php │ │ │ │ ├── Charge.php │ │ │ │ ├── Collection.php │ │ │ │ ├── CountrySpec.php │ │ │ │ ├── Coupon.php │ │ │ │ ├── Customer.php │ │ │ │ ├── Dispute.php │ │ │ │ ├── Error │ │ │ │ │ ├── Api.php │ │ │ │ │ ├── ApiConnection.php │ │ │ │ │ ├── Authentication.php │ │ │ │ │ ├── Base.php │ │ │ │ │ ├── Card.php │ │ │ │ │ ├── InvalidRequest.php │ │ │ │ │ ├── Permission.php │ │ │ │ │ ├── RateLimit.php │ │ │ │ │ └── SignatureVerification.php │ │ │ │ ├── Event.php │ │ │ │ ├── ExternalAccount.php │ │ │ │ ├── FileUpload.php │ │ │ │ ├── HttpClient │ │ │ │ │ ├── ClientInterface.php │ │ │ │ │ └── CurlClient.php │ │ │ │ ├── Invoice.php │ │ │ │ ├── InvoiceItem.php │ │ │ │ ├── JsonSerializable.php │ │ │ │ ├── LoginLink.php │ │ │ │ ├── Order.php │ │ │ │ ├── OrderReturn.php │ │ │ │ ├── Payout.php │ │ │ │ ├── Plan.php │ │ │ │ ├── Product.php │ │ │ │ ├── Recipient.php │ │ │ │ ├── RecipientTransfer.php │ │ │ │ ├── Refund.php │ │ │ │ ├── SKU.php │ │ │ │ ├── SingletonApiResource.php │ │ │ │ ├── Source.php │ │ │ │ ├── StripeJS.php │ │ │ │ ├── StripeJSObject.php │ │ │ │ ├── StripeObject.php │ │ │ │ ├── Subscription.php │ │ │ │ ├── SubscriptionItem.php │ │ │ │ ├── ThreeDSecure.php │ │ │ │ ├── Token.php │ │ │ │ ├── Transfer.php │ │ │ │ ├── TransferReversal.php │ │ │ │ ├── Util │ │ │ │ │ ├── AutoPagingIterator.php │ │ │ │ │ ├── DefaultLogger.php │ │ │ │ │ ├── LoggerInterface.php │ │ │ │ │ ├── RequestOptions.php │ │ │ │ │ ├── Set.php │ │ │ │ │ └── Util.php │ │ │ │ ├── Webhook.php │ │ │ │ └── WebhookSignature.php │ │ │ │ ├── phpunit.no_autoload.xml │ │ │ │ ├── phpunit.xml │ │ │ │ └── tests │ │ │ │ ├── AccountTest.php │ │ │ │ ├── ApiRequestorTest.php │ │ │ │ ├── ApplePayDomainTest.php │ │ │ │ ├── ApplicationFeeRefundTest.php │ │ │ │ ├── ApplicationFeeTest.php │ │ │ │ ├── AuthenticationErrorTest.php │ │ │ │ ├── BalanceTest.php │ │ │ │ ├── BalanceTransactionTest.php │ │ │ │ ├── BankAccountTest.php │ │ │ │ ├── BitcoinReceiverTest.php │ │ │ │ ├── CardErrorTest.php │ │ │ │ ├── ChargeTest.php │ │ │ │ ├── CollectionTest.php │ │ │ │ ├── CountrySpecTest.php │ │ │ │ ├── CouponTest.php │ │ │ │ ├── CurlClientTest.php │ │ │ │ ├── CustomerTest.php │ │ │ │ ├── DiscountTest.php │ │ │ │ ├── DisputeTest.php │ │ │ │ ├── ErrorTest.php │ │ │ │ ├── ExternalAccountTest.php │ │ │ │ ├── FileUploadTest.php │ │ │ │ ├── InvalidRequestErrorTest.php │ │ │ │ ├── InvoiceTest.php │ │ │ │ ├── PayoutTest.php │ │ │ │ ├── PermissionsErrorTest.php │ │ │ │ ├── PlanTest.php │ │ │ │ ├── ProductTest.php │ │ │ │ ├── RateLimitErrorTest.php │ │ │ │ ├── RecipientTest.php │ │ │ │ ├── RefundTest.php │ │ │ │ ├── RequestOptionsTest.php │ │ │ │ ├── SourceTest.php │ │ │ │ ├── StripeObjectTest.php │ │ │ │ ├── SubscriptionItemTest.php │ │ │ │ ├── SubscriptionTest.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── ThreeDSecureTest.php │ │ │ │ ├── TokenTest.php │ │ │ │ ├── TransferReversalTest.php │ │ │ │ ├── TransferTest.php │ │ │ │ ├── UtilDefaultLoggerTest.php │ │ │ │ ├── UtilTest.php │ │ │ │ ├── WebhookTest.php │ │ │ │ ├── bootstrap.no_autoload.php │ │ │ │ └── bootstrap.php │ │ ├── swagger │ │ │ └── Payment.php │ │ ├── twocheckout │ │ │ └── Payment.php │ │ └── voguepay │ │ │ └── Payment.php │ └── Payout │ │ ├── binance │ │ └── Card.php │ │ ├── coinbase │ │ └── Card.php │ │ ├── flutterwave │ │ └── Card.php │ │ ├── paypal │ │ └── Card.php │ │ ├── paystack │ │ └── Card.php │ │ ├── perfectmoney │ │ └── Card.php │ │ └── razorpay │ │ └── Card.php └── View │ └── Components │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── assets ├── admin │ ├── css │ │ ├── all.min.css │ │ ├── bootstrap-iconpicker.min.css │ │ ├── bootstrap-select.min.css │ │ ├── bootstrap4-toggle.min.css │ │ ├── card-js.min.css │ │ ├── custom.css │ │ ├── dataTables.bootstrap4.css │ │ ├── jquery-ui.min.css │ │ ├── select.min.css │ │ ├── select2.min.css │ │ ├── style.min.css │ │ ├── success-failed.css │ │ └── summernote.min.css │ ├── fonts │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ ├── Simple-Line-Icons.woff2 │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ ├── fa-solid-900.woff2 │ │ ├── selection.json │ │ ├── summernote.eot │ │ ├── summernote.ttf │ │ ├── summernote.woff │ │ ├── summernote.woff2 │ │ ├── themify.eot │ │ ├── themify.svg │ │ ├── themify.ttf │ │ ├── themify.woff │ │ ├── toast.eot │ │ ├── toast.svg │ │ ├── toast.ttf │ │ └── toast.woff │ ├── images │ │ ├── admin.jpg │ │ ├── custom-select.png │ │ ├── default.png │ │ └── loading.gif │ └── js │ │ ├── Chart.min.js │ │ ├── admin-mart.js │ │ ├── app-style-switcher.js │ │ ├── bootstrap-iconpicker.bundle.min.js │ │ ├── bootstrap-select.min.js │ │ ├── bootstrap4-toggle.min.js │ │ ├── card-js.min.js │ │ ├── custom.js │ │ ├── datatable-basic.init.js │ │ ├── feather.min.js │ │ ├── fontawesome │ │ ├── fontawesome.min.js │ │ ├── fontawesomepro.js │ │ └── line-awesome.min.css │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.min.js │ │ ├── moment.js │ │ ├── perfect-scrollbar.jquery.min.js │ │ ├── select2.min.js │ │ ├── sidebarmenu.js │ │ └── summernote.min.js ├── global │ └── js │ │ ├── axios.min.js │ │ ├── axios.min.map │ │ ├── bootstrap.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.min.js │ │ ├── notiflix-aio-2.7.0.min.js │ │ ├── popper.min.js │ │ ├── pusher.min.js │ │ └── vue.min.js ├── sqlAdded-v51.txt ├── themes │ └── betting │ │ ├── css │ │ ├── all.min.css │ │ ├── animate.css │ │ ├── aos.css │ │ ├── bootstrap-fileinput.css │ │ ├── bootstrap.min.css │ │ ├── color.php │ │ ├── jquery.fancybox.min.css │ │ ├── line-awesome.min.css │ │ ├── owl.carousel.min.css │ │ ├── owl.theme.default.min.css │ │ ├── skitter.css │ │ ├── style.css │ │ └── style.css.map │ │ ├── fonts │ │ ├── DMSans-Medium.ttf │ │ ├── DMSans-Regular.ttf │ │ ├── Raleway-Bold.ttf │ │ ├── Raleway-ExtraBold.ttf │ │ ├── Raleway-SemiBold.ttf │ │ └── Raleway │ │ │ ├── OFL.txt │ │ │ ├── README.txt │ │ │ ├── Raleway-Italic-VariableFont_wght.ttf │ │ │ ├── Raleway-VariableFont_wght.ttf │ │ │ └── static │ │ │ ├── Raleway-Black.ttf │ │ │ ├── Raleway-BlackItalic.ttf │ │ │ ├── Raleway-Bold.ttf │ │ │ ├── Raleway-BoldItalic.ttf │ │ │ ├── Raleway-ExtraBold.ttf │ │ │ ├── Raleway-ExtraBoldItalic.ttf │ │ │ ├── Raleway-ExtraLight.ttf │ │ │ ├── Raleway-ExtraLightItalic.ttf │ │ │ ├── Raleway-Italic.ttf │ │ │ ├── Raleway-Light.ttf │ │ │ ├── Raleway-LightItalic.ttf │ │ │ ├── Raleway-Medium.ttf │ │ │ ├── Raleway-MediumItalic.ttf │ │ │ ├── Raleway-Regular.ttf │ │ │ ├── Raleway-SemiBold.ttf │ │ │ ├── Raleway-SemiBoldItalic.ttf │ │ │ ├── Raleway-Thin.ttf │ │ │ └── Raleway-ThinItalic.ttf │ │ ├── images │ │ ├── 404.svg │ │ ├── 405.svg │ │ ├── about.png │ │ ├── blog │ │ │ ├── blog-1.jpg │ │ │ └── blog-2.jpg │ │ ├── client │ │ │ ├── client-1.jpg │ │ │ ├── client-2.jpg │ │ │ └── client-3.jpg │ │ ├── error.svg │ │ ├── icon │ │ │ ├── add.png │ │ │ ├── bet.png │ │ │ ├── downward-arrow.png │ │ │ ├── earn-2.png │ │ │ ├── earn.png │ │ │ ├── invest.png │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ └── wallet.png │ │ ├── shape-img-2.png │ │ ├── sports-banner.jpg │ │ ├── sports-banner2.jpg │ │ ├── sports-bannerdddd.jpg │ │ ├── team │ │ │ ├── BPLOfficialLogo.png │ │ │ ├── Barisal_Bulls_Logo.webp │ │ │ ├── Chattogram_Challengers.png │ │ │ ├── Sylhet_Sunrisers.png │ │ │ ├── bd.png │ │ │ ├── dd-logo.png │ │ │ ├── pk.png │ │ │ └── psl.png │ │ └── wp4430320.jpg │ │ └── js │ │ ├── aos.js │ │ ├── apexcharts.js │ │ ├── bootstrap-fileinput.js │ │ ├── bootstrap.bundle.min.js │ │ ├── fontawesome.min.js │ │ ├── fontawesomepro.js │ │ ├── jquery-3.6.0.min.js │ │ ├── jquery.counterup.min.js │ │ ├── jquery.easing.1.3.js │ │ ├── jquery.fancybox.min.js │ │ ├── jquery.skitter.js │ │ ├── jquery.skitter.min.js │ │ ├── jquery.waypoints.min.js │ │ ├── masonry.pkgd.min.js │ │ ├── owl.carousel.min.js │ │ └── script.js └── uploads │ ├── admin │ ├── 61b9bc2fa66971639562287.png │ ├── 64dd180ec0ccb1692211214.jpg │ └── admin.jpg │ ├── content │ ├── 630f5985a94bb1661950341.png │ ├── 630f5c8a46f771661951114.jpg │ ├── 630f5cb10eb391661951153.jpg │ ├── 630f5ccc0e6411661951180.jpg │ ├── 630f689d875941661954205.jpg │ ├── 630f68c0ac95a1661954240.jpg │ ├── 630f68e06248f1661954272.jpg │ ├── 63104bb3103231662012339.jpg │ ├── 6323220cbcb231663246860 - Copy.jpg │ ├── 6323220cbcb231663246860.jpg │ ├── 63232267df3401663246951.jpg │ ├── 632322b1c7bcb1663247025.jpg │ ├── 64dd275d5fde11692215133.jpg │ ├── 64dd276ae7dfe1692215146.jpg │ ├── 64dd27852f7021692215173.jpg │ ├── Man (71).jpg │ ├── Man (72).jpg │ ├── Man (73).jpg │ ├── Man (83).jpg │ ├── Untitled-2.png │ ├── thumb_630f689d875941661954205.jpg │ ├── thumb_630f68c0ac95a1661954240.jpg │ └── thumb_630f68e06248f1661954272.jpg │ ├── deposit │ └── 2023 │ │ └── 07 │ │ └── 11 │ │ └── 64ad2eadd112d1689071277.jpg │ ├── gateway │ ├── 5f637b5622d23.jpg │ ├── 5f637c7fcb9ef.jpg │ ├── 5f637cbfb4d4c.jpg │ ├── 5f637d069177e.jpg │ ├── 5f637d53da3e7.jpg │ ├── 5f637d6a0b22d.jpg │ ├── 5f637d80b68e0.jpg │ ├── 5f637da3c44d2.jpg │ ├── 5f637db537958.jpg │ ├── 5f637de6d9fef.jpg │ ├── 5f637e002d11b.jpg │ ├── 5f637e7eae68b.jpg │ ├── 5f6390dbaa6ff.jpg │ ├── 5f645d1bc1f24.jpg │ ├── 5f645d432b9c0.jpg │ ├── 5f64d522d8bea.jpg │ ├── 5f64d52d09e13.jpg │ ├── 5f659e5355859.jpg │ ├── 5f6703145a5ca.jpg │ ├── 5fbca5d05057f.jpg │ ├── 5fe038332ad52.jpg │ ├── 5fe430ece62d5.jpg │ ├── 5fe439f477bb7.jpg │ ├── 5ffd7d962985e1610448278.jpg │ ├── 61d16f5313ee41641115475.jpg │ ├── 64a90482b80de1688798338.png │ ├── 64a904a589e191688798373.png │ ├── 64a904b8ae2281688798392.jpg │ ├── 64a904cfc55351688798415.webp │ ├── 64a904e49c80a1688798436.png │ ├── 64a90509c1fbd1688798473.jpg │ ├── 64a905273ae9e1688798503.jpg │ ├── 64a9054056ac11688798528.png │ ├── 64a9055b3a4141688798555.jpg │ ├── 64a9056b129a21688798571.jpg │ ├── 64a9057f0bec51688798591.png │ ├── 64a9088b014171688799371.png │ └── cashmaal.jpg │ ├── language │ └── bn.png │ ├── logo │ ├── admin-logo.png │ ├── auth-bg.jpg │ ├── auth-bg2.jpg │ ├── banner.jpg │ ├── favicon.png │ ├── footer.jpg │ ├── loginImage.png │ ├── logo.png │ ├── logo1.png │ ├── meta.png │ ├── orca odds.png │ ├── orca.png │ └── theme.jpg │ ├── plugin │ ├── analytics.png │ ├── messenger.png │ ├── reCaptcha.png │ └── tawk.png │ ├── team │ ├── 64dd1bff239ec1692212223.png │ ├── 64dd1c0c41d161692212236.png │ ├── 64dd1c2e1369c1692212270.png │ ├── 64dd1c5110e331692212305.png │ ├── 64dd1c998e0391692212377.png │ ├── 64dd1cea6df811692212458.png │ ├── 64dd1d1e9af5a1692212510.png │ ├── 64dd1d2f82dac1692212527.png │ ├── 64dd1d5c2d7651692212572.png │ ├── 64dd1d73634281692212595.png │ ├── 64dd1d94400e01692212628.png │ ├── 64dd1dad4b4711692212653.png │ ├── 64dd1dc7e87861692212679.png │ ├── 64dd1ddea558e1692212702.png │ ├── Aregentia-Footballteam.png │ ├── ac-milan.png │ ├── atletico.png │ ├── barcelona.png │ ├── champions-soccer.png │ ├── chile-team.png │ ├── fc-bayern.png │ ├── fc-porto.png │ ├── football-team.png │ ├── germany-team.png │ ├── hellas-verona.png │ ├── napoli.png │ ├── nfl-season.png │ ├── nigeria.png │ ├── paris.png │ ├── persebaya.png │ ├── real mardrid.png │ └── sociedade.png │ ├── users │ ├── 6314a2c099f791662296768.jpg │ ├── 64dd1159d008a1692209497.jpg │ └── 64ddd908e4e131692260616.jpg │ ├── withdraw │ ├── 6064181b137c91617172507.jpg │ ├── 606418e821ad01617172712.jpg │ ├── 64a9119db33511688801693.png │ ├── 64a911e2ae88b1688801762.png │ ├── 64a911fa47d4f1688801786.jpg │ ├── 64a91204424f91688801796.png │ ├── 64a9120f09adb1688801807.jpg │ ├── 64a9121aab5bd1688801818.jpg │ └── 64a912261ac0f1688801830.jpg │ └── withdrawLog │ ├── 164127075261d3cde04cf7d.jpg │ ├── 165554572362ad9f7b18cb5.jpg │ ├── 1662292211631490f3bd1c6.jpg │ ├── 168907282664ad34ba753a8.jpg │ └── 168907284464ad34ccdf141.jpg ├── bootstrap ├── app.php └── cache │ ├── packages.php │ └── services.php ├── composer.json ├── config ├── app.php ├── auth.php ├── banks.php ├── basic.php ├── broadcasting.php ├── cache.php ├── contents.php ├── cors.php ├── country.php ├── database.php ├── datatables.php ├── filesystems.php ├── games.php ├── generalsettings.php ├── hashing.php ├── image.php ├── langcheck.php ├── languages.php ├── location.php ├── logging.php ├── mail.php ├── purify.php ├── queue.php ├── requirements.php ├── role.php ├── seo.php ├── services.php ├── session.php ├── templates.php ├── test.php ├── theme.php ├── view.php └── website.php ├── database ├── factories │ └── UserFactory.php ├── migrations │ ├── 2021_03_18_091710_create_users_table.php │ ├── 2022_08_31_054441_create_categories_table.php │ ├── 2022_09_03_045836_create_game_tournaments_table.php │ ├── 2022_09_03_073817_create_game_teams_table.php │ ├── 2022_09_03_100900_add_category_id_to_game_teams_table.php │ ├── 2022_09_07_054503_create_game_matches_table.php │ ├── 2022_09_08_072041_create_game_questions_table.php │ ├── 2022_09_08_100329_create_game_options_table.php │ ├── 2022_09_13_114549_create_bet_invests_table.php │ └── 2023_07_10_124102_alter_rows_to_table.php └── seeders │ └── DatabaseSeeder.php ├── index.php ├── orca_odds.sql ├── package.json ├── phpunit.xml ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ ├── DE.json │ ├── ES.json │ ├── IN.json │ ├── US.json │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── admin │ ├── auth │ │ ├── login.blade.php │ │ └── passwords │ │ │ ├── confirm.blade.php │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ ├── banner.blade.php │ ├── basic-controls.blade.php │ ├── bet_history │ │ └── index.blade.php │ ├── category │ │ └── list.blade.php │ ├── content │ │ ├── create.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── dashboard.blade.php │ ├── email-template │ │ ├── config.blade.php │ │ ├── edit.blade.php │ │ └── show.blade.php │ ├── errors │ │ └── 403.blade.php │ ├── identify │ │ └── services.blade.php │ ├── language │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── keyword.blade.php │ ├── layouts │ │ ├── app.blade.php │ │ ├── header.blade.php │ │ ├── login.blade.php │ │ ├── notification.blade.php │ │ └── sidebar.blade.php │ ├── logo.blade.php │ ├── manage-theme.blade.php │ ├── match │ │ ├── freeQuestion.blade.php │ │ ├── list.blade.php │ │ ├── partials │ │ │ └── questionAttempt.blade.php │ │ └── questionList.blade.php │ ├── notify │ │ ├── controls.blade.php │ │ ├── edit.blade.php │ │ └── show.blade.php │ ├── password.blade.php │ ├── payment │ │ └── logs.blade.php │ ├── payment_methods │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── manual │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ ├── payout │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── logs.blade.php │ │ └── view.blade.php │ ├── plugin_panel │ │ ├── analyticControl.blade.php │ │ ├── components │ │ │ └── sidebar.blade.php │ │ ├── currencyExchangeApiConfig.blade.php │ │ ├── fbMessengerControl.blade.php │ │ ├── googleReCaptchaControl.blade.php │ │ ├── pluginConfig.blade.php │ │ └── tawkControl.blade.php │ ├── profile.blade.php │ ├── referral-commission.blade.php │ ├── result_history │ │ ├── index.blade.php │ │ ├── optionList.blade.php │ │ └── userList.blade.php │ ├── sms-template │ │ ├── config.blade.php │ │ ├── edit.blade.php │ │ └── show.blade.php │ ├── staff │ │ └── index.blade.php │ ├── subscriber │ │ ├── index.blade.php │ │ └── send_email.blade.php │ ├── team │ │ └── list.blade.php │ ├── template │ │ └── show.blade.php │ ├── ticket │ │ ├── index.blade.php │ │ ├── nav.blade.php │ │ └── show.blade.php │ ├── tournament │ │ └── list.blade.php │ ├── transaction │ │ ├── commission.blade.php │ │ └── index.blade.php │ ├── users │ │ ├── commissionLog.blade.php │ │ ├── edit-user.blade.php │ │ ├── fund-log.blade.php │ │ ├── kycList.blade.php │ │ ├── list.blade.php │ │ ├── mail-form.blade.php │ │ ├── payout-log.blade.php │ │ ├── referral.blade.php │ │ ├── single-mail-form.blade.php │ │ └── transactions.blade.php │ └── website │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── keyword.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ ├── verify-email.blade.php │ └── verify.blade.php │ ├── errors │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 405.blade.php │ ├── 419.blade.php │ ├── 500.blade.php │ └── error.blade.php │ ├── failed.blade.php │ ├── layouts │ ├── app.blade.php │ ├── guest.blade.php │ ├── mail.blade.php │ └── navigation.blade.php │ ├── partials │ ├── pagination.blade.php │ └── seo.blade.php │ ├── plugins.blade.php │ ├── success.blade.php │ └── themes │ └── betting │ ├── about.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ ├── verification │ │ ├── 2stepSecurity.blade.php │ │ ├── email.blade.php │ │ └── sms.blade.php │ └── verify.blade.php │ ├── blog.blade.php │ ├── blogDetails.blade.php │ ├── contact.blade.php │ ├── errors │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 405.blade.php │ ├── 419.blade.php │ └── 500.blade.php │ ├── faq.blade.php │ ├── getLink.blade.php │ ├── home.blade.php │ ├── layouts │ ├── app.blade.php │ ├── error.blade.php │ └── user.blade.php │ ├── partials │ ├── banner.blade.php │ ├── footer.blade.php │ ├── heroBanner.blade.php │ ├── home │ │ ├── content.blade.php │ │ ├── leftMenu.blade.php │ │ ├── match.blade.php │ │ ├── navbar.blade.php │ │ ├── rightbar.blade.php │ │ └── slider.blade.php │ ├── modal-form.blade.php │ ├── nav.blade.php │ ├── notification.blade.php │ ├── pagination.blade.php │ └── pushNotify.blade.php │ └── user │ ├── addFund.blade.php │ ├── betHistory │ └── index.blade.php │ ├── betResult │ └── index.blade.php │ ├── check.blade.php │ ├── dashboard.blade.php │ ├── payment.blade.php │ ├── payment │ ├── card.blade.php │ ├── cardWarning.blade.php │ ├── cashonex.blade.php │ ├── crypto.blade.php │ ├── flutterwave.blade.php │ ├── khalti.blade.php │ ├── manual.blade.php │ ├── mercado.blade.php │ ├── midtrans.blade.php │ ├── monnify.blade.php │ ├── paypal.blade.php │ ├── paystack.blade.php │ ├── peachpayments.blade.php │ ├── razorpay.blade.php │ ├── redirect.blade.php │ ├── stripe.blade.php │ └── voguepay.blade.php │ ├── payout │ ├── gateway │ │ ├── flutterwave.blade.php │ │ └── paystack.blade.php │ ├── log.blade.php │ ├── money.blade.php │ └── preview.blade.php │ ├── profile │ └── myprofile.blade.php │ ├── referral.blade.php │ ├── support │ ├── create.blade.php │ ├── index.blade.php │ └── view.blade.php │ ├── transaction │ ├── fundHistory.blade.php │ ├── index.blade.php │ └── referral-bonus.blade.php │ └── twoFA │ └── index.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ └── purify │ │ ├── CSS │ │ └── 4.14.0,84a9cb681804f68773a2a36419faffda843c1870,1.ser │ │ ├── HTML │ │ └── 4.14.0,201941fd312d03ad71003ab5e619ba7cd6a3d75e,1.ser │ │ ├── README │ │ └── URI │ │ └── 4.14.0,3478238e680361cd87bf880f5b3cc50a1e7abc6c,1.ser ├── framework │ ├── cache │ │ └── facade-6d8ce59a9c4c847117f7e22ec4c73a7699cf2f96.php │ ├── sessions │ │ ├── 3CinxZdV3X9MmPW2EOviHr24iQIwOJS3uDPx1yxT │ │ ├── BWVUYSFgEERwN91D4akawlROfSvBDRz3b8SRPXHL │ │ ├── EuJ2tFg4IGyTy8JnhXZlar67z9Tv2LWgRjX9qk83 │ │ ├── I1GBKGILEQrqfmvLnSPElLOlsrA2AE4BwZUe0Fjk │ │ ├── pcPMm6LSUMjoNdKXCUoi5ev1UE9m65aNglhHpYaW │ │ └── qHSd4HV37uuac5E043ncqyfM73XUAjopNZbinKaL │ └── views │ │ ├── 01ed535f43de3321dfa80c2851874f304bcabf79.php │ │ ├── 0350b9ecf8f1655c8cebc420bb4be89e904eca21.php │ │ ├── 05e89f525d13964f9429117dfed0d68b773150cb.php │ │ ├── 080ca8628987761de9c55cb29b5da8ba517ef750.php │ │ ├── 0bdc0462ba7d0c202c234175b016364c77fa0add.php │ │ ├── 1d0af3f8e90b6b7152d0381333d4fd4f7059ef6c.php │ │ ├── 1e9e4ce80ad35065f85fa958470f926a59a01cb2.php │ │ ├── 1f993a297008958b28d897a130ab97e06853c4de.php │ │ ├── 2d52cfa685f2485d3f58b02086e7ccdb270a4e9b.php │ │ ├── 320d54bc0ceeb8ccd3badefe93b221d50545b61a.php │ │ ├── 37df38ab8d6317b810b57c3e411d8f88045a48ef.php │ │ ├── 3e5da6295c180e888e7ca7ef8f274a139d484e06.php │ │ ├── 3f920c952ccff6ec08ca61db5dd3fb5ed8087b8b.php │ │ ├── 4ed8d5d5f02e2a62e1d55910fe6d6d2a6a479cde.php │ │ ├── 57cc58bc0a1fa1f46a7e30a7cf146bd8df62c2ee.php │ │ ├── 582625967042513198d0461f36cac0a40039cd47.php │ │ ├── 60204010ca5eaaa58432a7e66ff85c2dc3e80ca4.php │ │ ├── 634ab4a284134f7b127d801c8da042d4c190a344.php │ │ ├── 6cd0f4e9e0e0c3f5cc16f6e948d1adb4142b7655.php │ │ ├── 6f2aa71d29a9b9318ef860545901ad4cd7e32365.php │ │ ├── 6fc07b0a2b34f86f9eaaa1ec1f75bf1f4e12c4b3.php │ │ ├── 75a4367032e2d3400865658b6169ab9195cc72df.php │ │ ├── 78ae72e740e14618929d85caaefd004bff4ba75a.php │ │ ├── 798394425dee9261f589bca6a95124683c0bf25a.php │ │ ├── 818c57ec7702a656593672d173ba341dfdf1b7cf.php │ │ ├── 840ae806e38589db057d128e0a053cafd2117b77.php │ │ ├── 8bc65ecf584bf780b41ee18b0c26f674f694dc0b.php │ │ ├── 8bc910921ed95025f9a096d8dd9f9c5dca28e2d6.php │ │ ├── 8ef77a66a1697a3bb256906e063ad3748fe543b6.php │ │ ├── 916bb5265463ebcb4d338599582a198a68885669.php │ │ ├── 978689516b0cb872fa0fb6599164d6ebb9a9dfc1.php │ │ ├── 99646cd162b1d535a1022590819a4a1139a07d48.php │ │ ├── 9ac0e466848d52dacb5c875d0dc5a1b9ea7d8c93.php │ │ ├── 9c1bfcd1a9608c3d29a96d75de43ae4bf052d83f.php │ │ ├── a0c55e41d69a1bbc0419943b9f14915d48fab655.php │ │ ├── a2af76f96856e78d7d01ae776f3c930a4508d7ac.php │ │ ├── ae48b831a715fec04cfb2c9026d1f41d369d1f99.php │ │ ├── b2f84e969c8bb64c895ddcd250450cca0b56d836.php │ │ ├── b6b919e83a4808055618750262b965941a022cf8.php │ │ ├── b7e18b727f5d621d8c5091d83da5f87b04c8b5f3.php │ │ ├── b956b171ef140bcf9c4d57a5591031e6adc0bc25.php │ │ ├── bc1add77667cfb0340a00cb3ca3e4bdb7423f2fb.php │ │ ├── bff859d3ea6e4fffbe5baa7a12c195ac12318328.php │ │ ├── c26ac817ab1291a060b1275af4aa180c262f0547.php │ │ ├── c33692fcb0def10a41ab1a450ae7d0516e6e2a9d.php │ │ ├── c981db25d9cc890761a296d70a458b154fccbd34.php │ │ ├── cca402ba9c26bf185dac36f205f2fbfed215ed0d.php │ │ ├── cf5dd829949f02390ce2f6184cdb8ba6b95ed4bc.php │ │ ├── d00c27bce0dd770d2a80521afddc45443bc6aa22.php │ │ ├── d7bf194d4326bc09dcd815a5d46eeeea73059154.php │ │ ├── dffdd60a958965019709b286b2b2e533cda7d02e.php │ │ ├── e1f9558f1768d74fce2993e62b976f5bad1958b6.php │ │ ├── f71e624efb6a15ef12c5a7785960334e6e7c014b.php │ │ ├── f9c207c8d1d0e24ffdba97222771563cf23c6ad4.php │ │ └── fe96d673e3cd5bce348815236df07a268d38934d.php └── logs │ └── laravel.log ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── AuthenticationTest.php │ ├── EmailVerificationTest.php │ ├── ExampleTest.php │ ├── PasswordConfirmationTest.php │ ├── PasswordResetTest.php │ └── RegistrationTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/.htaccess -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/orca odd.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/.idea/orca odd.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Commands/BinanceGetStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Console/Commands/BinanceGetStatus.php -------------------------------------------------------------------------------- /app/Console/Commands/BlockIoIPN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Console/Commands/BlockIoIPN.php -------------------------------------------------------------------------------- /app/Console/Commands/Cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Console/Commands/Cron.php -------------------------------------------------------------------------------- /app/Console/Commands/PayoutCryptoCurrencyUpdateCron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Console/Commands/PayoutCryptoCurrencyUpdateCron.php -------------------------------------------------------------------------------- /app/Console/Commands/PayoutCurrencyUpdateCron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Console/Commands/PayoutCurrencyUpdateCron.php -------------------------------------------------------------------------------- /app/Console/Commands/SqlUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Console/Commands/SqlUpdate.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Events/AdminNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Events/AdminNotification.php -------------------------------------------------------------------------------- /app/Events/MatchNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Events/MatchNotification.php -------------------------------------------------------------------------------- /app/Events/UpdateAdminNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Events/UpdateAdminNotification.php -------------------------------------------------------------------------------- /app/Events/UpdateUserNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Events/UpdateUserNotification.php -------------------------------------------------------------------------------- /app/Events/UserNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Events/UserNotification.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helper/GoogleAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Helper/GoogleAuthenticator.php -------------------------------------------------------------------------------- /app/Helper/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Helper/helpers.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/BasicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/BasicController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ContentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/ContentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/EmailTemplateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/EmailTemplateController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/IdentyVerifyFromController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/IdentyVerifyFromController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/LanguageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/LanguageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/LogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/LogController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ManageBetController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/ManageBetController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ManageResultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/ManageResultController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ManageRolePermissionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/ManageRolePermissionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ManualGatewayController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/ManualGatewayController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/MatchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/MatchController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/MatchOptionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/MatchOptionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/NotifyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/NotifyController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/PaymentLogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/PaymentLogController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/PaymentMethodController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/PaymentMethodController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/PayoutGatewayController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/PayoutGatewayController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/PayoutRecordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/PayoutRecordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/SmsTemplateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/SmsTemplateController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/SubscriberController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/SubscriberController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/TeamController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/TeamController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/TemplateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/TemplateController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/TicketController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/TicketController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/TournamentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/TournamentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Admin/UsersController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/FrontendController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/FrontendController.php -------------------------------------------------------------------------------- /app/Http/Controllers/GameFetchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/GameFetchController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PaymentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/PaymentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SiteNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/SiteNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/BetHistoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/User/BetHistoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/User/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/SupportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/User/SupportController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/User/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/khaltiPaymentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Controllers/khaltiPaymentController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/AdminAuthorizeMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/AdminAuthorizeMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckUserStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/CheckUserStatus.php -------------------------------------------------------------------------------- /app/Http/Middleware/DemoMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/DemoMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/KYC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/KYC.php -------------------------------------------------------------------------------- /app/Http/Middleware/LanguageMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/LanguageMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/Maintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/Maintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Traits/ContentDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Traits/ContentDelete.php -------------------------------------------------------------------------------- /app/Http/Traits/Notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Traits/Notify.php -------------------------------------------------------------------------------- /app/Http/Traits/Translatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Traits/Translatable.php -------------------------------------------------------------------------------- /app/Http/Traits/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Http/Traits/Upload.php -------------------------------------------------------------------------------- /app/Mail/SendMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Mail/SendMail.php -------------------------------------------------------------------------------- /app/Models/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/Admin.php -------------------------------------------------------------------------------- /app/Models/BetInvest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/BetInvest.php -------------------------------------------------------------------------------- /app/Models/BetInvestLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/BetInvestLog.php -------------------------------------------------------------------------------- /app/Models/Configure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/Configure.php -------------------------------------------------------------------------------- /app/Models/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/Content.php -------------------------------------------------------------------------------- /app/Models/ContentDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/ContentDetails.php -------------------------------------------------------------------------------- /app/Models/ContentMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/ContentMedia.php -------------------------------------------------------------------------------- /app/Models/EmailTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/EmailTemplate.php -------------------------------------------------------------------------------- /app/Models/Fund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/Fund.php -------------------------------------------------------------------------------- /app/Models/GameCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/GameCategory.php -------------------------------------------------------------------------------- /app/Models/GameMatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/GameMatch.php -------------------------------------------------------------------------------- /app/Models/GameOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/GameOption.php -------------------------------------------------------------------------------- /app/Models/GameQuestions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/GameQuestions.php -------------------------------------------------------------------------------- /app/Models/GameTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/GameTeam.php -------------------------------------------------------------------------------- /app/Models/GameTournament.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/GameTournament.php -------------------------------------------------------------------------------- /app/Models/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/Gateway.php -------------------------------------------------------------------------------- /app/Models/IdentifyForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/IdentifyForm.php -------------------------------------------------------------------------------- /app/Models/KYC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/KYC.php -------------------------------------------------------------------------------- /app/Models/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/Language.php -------------------------------------------------------------------------------- /app/Models/NotifyTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/NotifyTemplate.php -------------------------------------------------------------------------------- /app/Models/PasswordReset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/PasswordReset.php -------------------------------------------------------------------------------- /app/Models/PayoutLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/PayoutLog.php -------------------------------------------------------------------------------- /app/Models/PayoutMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/PayoutMethod.php -------------------------------------------------------------------------------- /app/Models/RazorpayContact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/RazorpayContact.php -------------------------------------------------------------------------------- /app/Models/Referral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/Referral.php -------------------------------------------------------------------------------- /app/Models/ReferralBonus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/ReferralBonus.php -------------------------------------------------------------------------------- /app/Models/SiteNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/SiteNotification.php -------------------------------------------------------------------------------- /app/Models/SmsControl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/SmsControl.php -------------------------------------------------------------------------------- /app/Models/SmsTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/SmsTemplate.php -------------------------------------------------------------------------------- /app/Models/Subscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/Subscriber.php -------------------------------------------------------------------------------- /app/Models/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/Template.php -------------------------------------------------------------------------------- /app/Models/TemplateMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/TemplateMedia.php -------------------------------------------------------------------------------- /app/Models/Ticket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/Ticket.php -------------------------------------------------------------------------------- /app/Models/TicketAttachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/TicketAttachment.php -------------------------------------------------------------------------------- /app/Models/TicketMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/TicketMessage.php -------------------------------------------------------------------------------- /app/Models/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/Transaction.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/FileTypeValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Rules/FileTypeValidate.php -------------------------------------------------------------------------------- /app/Services/BasicCurl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/BasicCurl.php -------------------------------------------------------------------------------- /app/Services/BasicService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/BasicService.php -------------------------------------------------------------------------------- /app/Services/Gateway/authorizenet/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/authorizenet/Payment.php -------------------------------------------------------------------------------- /app/Services/Gateway/binance/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/binance/Payment.php -------------------------------------------------------------------------------- /app/Services/Gateway/blockchain/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/blockchain/Payment.php -------------------------------------------------------------------------------- /app/Services/Gateway/blockio/BlockIo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/blockio/BlockIo.php -------------------------------------------------------------------------------- /app/Services/Gateway/blockio/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/blockio/Payment.php -------------------------------------------------------------------------------- /app/Services/Gateway/blockio/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/blockio/cacert.pem -------------------------------------------------------------------------------- /app/Services/Gateway/cashmaal/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/cashmaal/Payment.php -------------------------------------------------------------------------------- /app/Services/Gateway/cashonex/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/cashonex/Payment.php -------------------------------------------------------------------------------- /app/Services/Gateway/cashonexHosted/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/cashonexHosted/Payment.php -------------------------------------------------------------------------------- /app/Services/Gateway/coinbasecommerce/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/coinbasecommerce/Payment.php -------------------------------------------------------------------------------- /app/Services/Gateway/coingate/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/coingate/Payment.php -------------------------------------------------------------------------------- /app/Services/Gateway/coingate/coingate-php/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/coingate/coingate-php/.gitignore -------------------------------------------------------------------------------- /app/Services/Gateway/coingate/coingate-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/coingate/coingate-php/LICENSE -------------------------------------------------------------------------------- /app/Services/Gateway/coingate/coingate-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/coingate/coingate-php/README.md -------------------------------------------------------------------------------- /app/Services/Gateway/coingate/coingate-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/coingate/coingate-php/composer.json -------------------------------------------------------------------------------- /app/Services/Gateway/coingate/coingate-php/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/coingate/coingate-php/init.php -------------------------------------------------------------------------------- /app/Services/Gateway/coingate/coingate-php/lib/CoinGate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/coingate/coingate-php/lib/CoinGate.php -------------------------------------------------------------------------------- /app/Services/Gateway/coingate/coingate-php/lib/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/app/Services/Gateway/coingate/coingate-php/lib/Exception.php -------------------------------------------------------------------------------- /app/Services/Gateway/coingate/coingate-php/lib/Merchant.php: -------------------------------------------------------------------------------- 1 | null, 4 | ]; -------------------------------------------------------------------------------- /config/languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/languages.php -------------------------------------------------------------------------------- /config/location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/location.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/purify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/purify.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/requirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/requirements.php -------------------------------------------------------------------------------- /config/role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/role.php -------------------------------------------------------------------------------- /config/seo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/seo.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/session.php -------------------------------------------------------------------------------- /config/templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/templates.php -------------------------------------------------------------------------------- /config/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/test.php -------------------------------------------------------------------------------- /config/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/theme.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/betting-Laravel/HEAD/config/view.php -------------------------------------------------------------------------------- /config/website.php: -------------------------------------------------------------------------------- 1 |