├── LICENSE ├── README.md ├── admin ├── acdelete.php ├── acustomers.php ├── afarmers.php ├── afdelete.php ├── aheader.php ├── alogin.php ├── aloginScript.php ├── alogout.php ├── amsgdelete.php ├── anav.php ├── aproducedcrop.php ├── aprofile.php ├── aviewmsg.php └── footer.php ├── assets ├── css │ ├── creativetim.min.css │ ├── footer.css │ ├── nucleo-icons.css │ └── nucleo-svg.css ├── fonts │ ├── nucleo-icons.eot │ ├── nucleo-icons.svg │ ├── nucleo-icons.ttf │ ├── nucleo-icons.woff │ └── nucleo-icons.woff2 ├── img │ ├── admin.png │ ├── agri.png │ ├── apache.png │ ├── bootstrap.png │ ├── chatgpt.svg │ ├── css3.png │ ├── customers.png │ ├── farmers.png │ ├── features.png │ ├── footer-logo.png │ ├── html.png │ ├── jquery.png │ ├── js.png │ ├── logo.png │ ├── mysql.png │ ├── nav.png │ ├── openai.png │ ├── openai2.png │ ├── php2.png │ ├── plant-bulb.png │ └── play.png └── js │ ├── TradeCrops.js │ └── state_district_crops_dropdown.js ├── contact-script.php ├── contact.php ├── customer ├── StripePayment │ ├── config.php │ ├── pricing.php │ ├── products.php │ ├── stripe-php-master │ │ ├── .coveralls.yml │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore.txt │ │ ├── .travis.yml │ │ ├── data │ │ │ └── ca-certificates.crt │ │ ├── init.php │ │ └── lib │ │ │ ├── Account.php │ │ │ ├── AccountLink.php │ │ │ ├── AlipayAccount.php │ │ │ ├── ApiOperations │ │ │ ├── All.php │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── NestedResource.php │ │ │ ├── Request.php │ │ │ ├── Retrieve.php │ │ │ ├── Search.php │ │ │ ├── SingletonRetrieve.php │ │ │ └── Update.php │ │ │ ├── ApiRequestor.php │ │ │ ├── ApiResource.php │ │ │ ├── ApiResponse.php │ │ │ ├── ApplePayDomain.php │ │ │ ├── ApplicationFee.php │ │ │ ├── ApplicationFeeRefund.php │ │ │ ├── Apps │ │ │ └── Secret.php │ │ │ ├── Balance.php │ │ │ ├── BalanceTransaction.php │ │ │ ├── BankAccount.php │ │ │ ├── BaseStripeClient.php │ │ │ ├── BaseStripeClientInterface.php │ │ │ ├── BillingPortal │ │ │ ├── Configuration.php │ │ │ └── Session.php │ │ │ ├── BitcoinReceiver.php │ │ │ ├── BitcoinTransaction.php │ │ │ ├── Capability.php │ │ │ ├── Card.php │ │ │ ├── CashBalance.php │ │ │ ├── Charge.php │ │ │ ├── Checkout │ │ │ └── Session.php │ │ │ ├── Collection.php │ │ │ ├── CountrySpec.php │ │ │ ├── Coupon.php │ │ │ ├── CreditNote.php │ │ │ ├── CreditNoteLineItem.php │ │ │ ├── Customer.php │ │ │ ├── CustomerBalanceTransaction.php │ │ │ ├── CustomerCashBalanceTransaction.php │ │ │ ├── Discount.php │ │ │ ├── Dispute.php │ │ │ ├── EphemeralKey.php │ │ │ ├── Error │ │ │ ├── Api.php │ │ │ ├── ApiConnection.php │ │ │ ├── Authentication.php │ │ │ ├── Base.php │ │ │ ├── Card.php │ │ │ ├── InvalidRequest.php │ │ │ ├── OAuth │ │ │ │ ├── InvalidClient.php │ │ │ │ ├── InvalidGrant.php │ │ │ │ ├── InvalidRequest.php │ │ │ │ ├── InvalidScope.php │ │ │ │ ├── OAuthBase.php │ │ │ │ ├── UnsupportedGrantType.php │ │ │ │ └── UnsupportedResponseType.php │ │ │ ├── Permission.php │ │ │ ├── RateLimit.php │ │ │ └── SignatureVerification.php │ │ │ ├── ErrorObject.php │ │ │ ├── Event.php │ │ │ ├── Exception │ │ │ ├── ApiConnectionException.php │ │ │ ├── ApiErrorException.php │ │ │ ├── AuthenticationException.php │ │ │ ├── BadMethodCallException.php │ │ │ ├── CardException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── IdempotencyException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidRequestException.php │ │ │ ├── OAuth │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidClientException.php │ │ │ │ ├── InvalidGrantException.php │ │ │ │ ├── InvalidRequestException.php │ │ │ │ ├── InvalidScopeException.php │ │ │ │ ├── OAuthErrorException.php │ │ │ │ ├── UnknownOAuthErrorException.php │ │ │ │ ├── UnsupportedGrantTypeException.php │ │ │ │ └── UnsupportedResponseTypeException.php │ │ │ ├── PermissionException.php │ │ │ ├── RateLimitException.php │ │ │ ├── SignatureVerificationException.php │ │ │ ├── UnexpectedValueException.php │ │ │ └── UnknownApiErrorException.php │ │ │ ├── ExchangeRate.php │ │ │ ├── File.php │ │ │ ├── FileLink.php │ │ │ ├── FileUpload.php │ │ │ ├── FinancialConnections │ │ │ ├── Account.php │ │ │ ├── AccountOwner.php │ │ │ ├── AccountOwnership.php │ │ │ └── Session.php │ │ │ ├── FundingInstructions.php │ │ │ ├── HttpClient │ │ │ ├── ClientInterface.php │ │ │ ├── CurlClient.php │ │ │ └── StreamingClientInterface.php │ │ │ ├── Identity │ │ │ ├── VerificationReport.php │ │ │ └── VerificationSession.php │ │ │ ├── Invoice.php │ │ │ ├── InvoiceItem.php │ │ │ ├── InvoiceLineItem.php │ │ │ ├── Issuing │ │ │ ├── Authorization.php │ │ │ ├── Card.php │ │ │ ├── CardDetails.php │ │ │ ├── Cardholder.php │ │ │ ├── Dispute.php │ │ │ └── Transaction.php │ │ │ ├── LineItem.php │ │ │ ├── LoginLink.php │ │ │ ├── Mandate.php │ │ │ ├── OAuth.php │ │ │ ├── OAuthErrorObject.php │ │ │ ├── Order.php │ │ │ ├── OrderReturn.php │ │ │ ├── PaymentIntent.php │ │ │ ├── PaymentLink.php │ │ │ ├── PaymentMethod.php │ │ │ ├── Payout.php │ │ │ ├── Person.php │ │ │ ├── Plan.php │ │ │ ├── Price.php │ │ │ ├── Product.php │ │ │ ├── PromotionCode.php │ │ │ ├── Quote.php │ │ │ ├── Radar │ │ │ ├── EarlyFraudWarning.php │ │ │ ├── ValueList.php │ │ │ └── ValueListItem.php │ │ │ ├── Recipient.php │ │ │ ├── RecipientTransfer.php │ │ │ ├── Refund.php │ │ │ ├── Reporting │ │ │ ├── ReportRun.php │ │ │ └── ReportType.php │ │ │ ├── RequestTelemetry.php │ │ │ ├── Review.php │ │ │ ├── SKU.php │ │ │ ├── SearchResult.php │ │ │ ├── Service │ │ │ ├── AbstractService.php │ │ │ ├── AbstractServiceFactory.php │ │ │ ├── AccountLinkService.php │ │ │ ├── AccountService.php │ │ │ ├── ApplePayDomainService.php │ │ │ ├── ApplicationFeeService.php │ │ │ ├── Apps │ │ │ │ ├── AppsServiceFactory.php │ │ │ │ └── SecretService.php │ │ │ ├── BalanceService.php │ │ │ ├── BalanceTransactionService.php │ │ │ ├── BillingPortal │ │ │ │ ├── BillingPortalServiceFactory.php │ │ │ │ ├── ConfigurationService.php │ │ │ │ └── SessionService.php │ │ │ ├── ChargeService.php │ │ │ ├── Checkout │ │ │ │ ├── CheckoutServiceFactory.php │ │ │ │ └── SessionService.php │ │ │ ├── CoreServiceFactory.php │ │ │ ├── CountrySpecService.php │ │ │ ├── CouponService.php │ │ │ ├── CreditNoteService.php │ │ │ ├── CustomerService.php │ │ │ ├── DisputeService.php │ │ │ ├── EphemeralKeyService.php │ │ │ ├── EventService.php │ │ │ ├── ExchangeRateService.php │ │ │ ├── FileLinkService.php │ │ │ ├── FileService.php │ │ │ ├── FinancialConnections │ │ │ │ ├── AccountService.php │ │ │ │ ├── FinancialConnectionsServiceFactory.php │ │ │ │ └── SessionService.php │ │ │ ├── Identity │ │ │ │ ├── IdentityServiceFactory.php │ │ │ │ ├── VerificationReportService.php │ │ │ │ └── VerificationSessionService.php │ │ │ ├── InvoiceItemService.php │ │ │ ├── InvoiceService.php │ │ │ ├── Issuing │ │ │ │ ├── AuthorizationService.php │ │ │ │ ├── CardService.php │ │ │ │ ├── CardholderService.php │ │ │ │ ├── DisputeService.php │ │ │ │ ├── IssuingServiceFactory.php │ │ │ │ └── TransactionService.php │ │ │ ├── MandateService.php │ │ │ ├── OAuthService.php │ │ │ ├── PaymentIntentService.php │ │ │ ├── PaymentLinkService.php │ │ │ ├── PaymentMethodService.php │ │ │ ├── PayoutService.php │ │ │ ├── PlanService.php │ │ │ ├── PriceService.php │ │ │ ├── ProductService.php │ │ │ ├── PromotionCodeService.php │ │ │ ├── QuoteService.php │ │ │ ├── Radar │ │ │ │ ├── EarlyFraudWarningService.php │ │ │ │ ├── RadarServiceFactory.php │ │ │ │ ├── ValueListItemService.php │ │ │ │ └── ValueListService.php │ │ │ ├── RefundService.php │ │ │ ├── Reporting │ │ │ │ ├── ReportRunService.php │ │ │ │ ├── ReportTypeService.php │ │ │ │ └── ReportingServiceFactory.php │ │ │ ├── ReviewService.php │ │ │ ├── SetupAttemptService.php │ │ │ ├── SetupIntentService.php │ │ │ ├── ShippingRateService.php │ │ │ ├── Sigma │ │ │ │ ├── ScheduledQueryRunService.php │ │ │ │ └── SigmaServiceFactory.php │ │ │ ├── SourceService.php │ │ │ ├── SubscriptionItemService.php │ │ │ ├── SubscriptionScheduleService.php │ │ │ ├── SubscriptionService.php │ │ │ ├── Tax │ │ │ │ ├── CalculationService.php │ │ │ │ ├── TaxServiceFactory.php │ │ │ │ └── TransactionService.php │ │ │ ├── TaxCodeService.php │ │ │ ├── TaxRateService.php │ │ │ ├── Terminal │ │ │ │ ├── ConfigurationService.php │ │ │ │ ├── ConnectionTokenService.php │ │ │ │ ├── LocationService.php │ │ │ │ ├── ReaderService.php │ │ │ │ └── TerminalServiceFactory.php │ │ │ ├── TestHelpers │ │ │ │ ├── CustomerService.php │ │ │ │ ├── Issuing │ │ │ │ │ ├── CardService.php │ │ │ │ │ └── IssuingServiceFactory.php │ │ │ │ ├── RefundService.php │ │ │ │ ├── Terminal │ │ │ │ │ ├── ReaderService.php │ │ │ │ │ └── TerminalServiceFactory.php │ │ │ │ ├── TestClockService.php │ │ │ │ ├── TestHelpersServiceFactory.php │ │ │ │ └── Treasury │ │ │ │ │ ├── InboundTransferService.php │ │ │ │ │ ├── OutboundPaymentService.php │ │ │ │ │ ├── OutboundTransferService.php │ │ │ │ │ ├── ReceivedCreditService.php │ │ │ │ │ ├── ReceivedDebitService.php │ │ │ │ │ └── TreasuryServiceFactory.php │ │ │ ├── TokenService.php │ │ │ ├── TopupService.php │ │ │ ├── TransferService.php │ │ │ ├── Treasury │ │ │ │ ├── CreditReversalService.php │ │ │ │ ├── DebitReversalService.php │ │ │ │ ├── FinancialAccountService.php │ │ │ │ ├── InboundTransferService.php │ │ │ │ ├── OutboundPaymentService.php │ │ │ │ ├── OutboundTransferService.php │ │ │ │ ├── ReceivedCreditService.php │ │ │ │ ├── ReceivedDebitService.php │ │ │ │ ├── TransactionEntryService.php │ │ │ │ ├── TransactionService.php │ │ │ │ └── TreasuryServiceFactory.php │ │ │ └── WebhookEndpointService.php │ │ │ ├── SetupAttempt.php │ │ │ ├── SetupIntent.php │ │ │ ├── ShippingRate.php │ │ │ ├── Sigma │ │ │ └── ScheduledQueryRun.php │ │ │ ├── SingletonApiResource.php │ │ │ ├── Source.php │ │ │ ├── SourceTransaction.php │ │ │ ├── Stripe.php │ │ │ ├── StripeClient.php │ │ │ ├── StripeClientInterface.php │ │ │ ├── StripeObject.php │ │ │ ├── StripeStreamingClientInterface.php │ │ │ ├── Subscription.php │ │ │ ├── SubscriptionItem.php │ │ │ ├── SubscriptionSchedule.php │ │ │ ├── Tax │ │ │ ├── Calculation.php │ │ │ ├── CalculationLineItem.php │ │ │ ├── Transaction.php │ │ │ └── TransactionLineItem.php │ │ │ ├── TaxCode.php │ │ │ ├── TaxId.php │ │ │ ├── TaxRate.php │ │ │ ├── Terminal │ │ │ ├── Configuration.php │ │ │ ├── ConnectionToken.php │ │ │ ├── Location.php │ │ │ └── Reader.php │ │ │ ├── TestHelpers │ │ │ └── TestClock.php │ │ │ ├── ThreeDSecure.php │ │ │ ├── Token.php │ │ │ ├── Topup.php │ │ │ ├── Transfer.php │ │ │ ├── TransferReversal.php │ │ │ ├── Treasury │ │ │ ├── CreditReversal.php │ │ │ ├── DebitReversal.php │ │ │ ├── FinancialAccount.php │ │ │ ├── FinancialAccountFeatures.php │ │ │ ├── InboundTransfer.php │ │ │ ├── OutboundPayment.php │ │ │ ├── OutboundTransfer.php │ │ │ ├── ReceivedCredit.php │ │ │ ├── ReceivedDebit.php │ │ │ ├── Transaction.php │ │ │ └── TransactionEntry.php │ │ │ ├── UsageRecord.php │ │ │ ├── UsageRecordSummary.php │ │ │ ├── Util │ │ │ ├── ApiVersion.php │ │ │ ├── AutoPagingIterator.php │ │ │ ├── CaseInsensitiveArray.php │ │ │ ├── DefaultLogger.php │ │ │ ├── LoggerInterface.php │ │ │ ├── ObjectTypes.php │ │ │ ├── RandomGenerator.php │ │ │ ├── RequestOptions.php │ │ │ ├── Set.php │ │ │ └── Util.php │ │ │ ├── Webhook.php │ │ │ ├── WebhookEndpoint.php │ │ │ └── WebhookSignature.php │ └── stripeIPN.php ├── cbuy_crops.php ├── cbuy_redirect.php ├── ccheck_availability.php ├── ccheck_otp.php ├── ccheck_price.php ├── ccheck_quantity.php ├── cget_district.php ├── cheader.php ├── clogin.php ├── cloginScript.php ├── clogout.php ├── cmoney_transfered.php ├── cnav.php ├── cprofile.php ├── cregister.php ├── cregisterScript.php ├── csend_otp.php ├── csession.php ├── cstock_crop.php ├── ctest_data.php ├── ctwostep.php ├── cupdatedb.php └── footer.php ├── db └── agriculture_portal.sql ├── farmer ├── ML │ ├── crop_prediction │ │ ├── ZDecision_Tree_Model.py │ │ ├── ZDecision_Tree_Model_Call.py │ │ ├── filetest2.pkl │ │ └── preprocessed2.csv │ ├── crop_recommendation │ │ ├── Crop_recommendation.csv │ │ └── recommend.py │ ├── fertilizer_recommendation │ │ ├── fertilizer_recommendation.csv │ │ └── fertilizer_recommendation.py │ ├── rainfall_prediction │ │ ├── rainfall_in_india_1901-2015.csv │ │ └── rainfall_prediction.py │ └── yield_prediction │ │ ├── crop_production_karnataka.csv │ │ └── yield_prediction.py ├── fchatgpt.php ├── fcheck_otp.php ├── fcheck_price.php ├── fcrop_prediction.php ├── fcrop_recommendation.php ├── ffertilizer_recommendation.php ├── fget_district.php ├── fheader.php ├── flogin.php ├── floginScript.php ├── flogout.php ├── fnav.php ├── fnewsfeed.php ├── footer.php ├── fprofile.php ├── frainfall_prediction.php ├── fregister.php ├── fregisterScript.php ├── fselling_history.php ├── fsend_otp.php ├── fsession.php ├── fstock_crop.php ├── ftradecrops.php ├── ftradecropsScript.php ├── ftwostep.php ├── fweather_forecast.php ├── fweather_prediction.php ├── fyield_prediction.php ├── requirements.txt └── static │ └── citylist.json ├── footer.php ├── index.php ├── smtp ├── class.phpmailer.php ├── class.pop3.php ├── class.smtp.php ├── language │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-br.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-ch.php │ ├── phpmailer.lang-cz.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-dk.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-en.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-fr.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-no.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-se.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-sr.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-zh_cn.php └── mailer.php └── sql.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/README.md -------------------------------------------------------------------------------- /admin/acdelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/acdelete.php -------------------------------------------------------------------------------- /admin/acustomers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/acustomers.php -------------------------------------------------------------------------------- /admin/afarmers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/afarmers.php -------------------------------------------------------------------------------- /admin/afdelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/afdelete.php -------------------------------------------------------------------------------- /admin/aheader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/aheader.php -------------------------------------------------------------------------------- /admin/alogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/alogin.php -------------------------------------------------------------------------------- /admin/aloginScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/aloginScript.php -------------------------------------------------------------------------------- /admin/alogout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/alogout.php -------------------------------------------------------------------------------- /admin/amsgdelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/amsgdelete.php -------------------------------------------------------------------------------- /admin/anav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/anav.php -------------------------------------------------------------------------------- /admin/aproducedcrop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/aproducedcrop.php -------------------------------------------------------------------------------- /admin/aprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/aprofile.php -------------------------------------------------------------------------------- /admin/aviewmsg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/aviewmsg.php -------------------------------------------------------------------------------- /admin/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/admin/footer.php -------------------------------------------------------------------------------- /assets/css/creativetim.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/css/creativetim.min.css -------------------------------------------------------------------------------- /assets/css/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/css/footer.css -------------------------------------------------------------------------------- /assets/css/nucleo-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/css/nucleo-icons.css -------------------------------------------------------------------------------- /assets/css/nucleo-svg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/css/nucleo-svg.css -------------------------------------------------------------------------------- /assets/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /assets/fonts/nucleo-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/fonts/nucleo-icons.svg -------------------------------------------------------------------------------- /assets/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /assets/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /assets/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /assets/img/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/admin.png -------------------------------------------------------------------------------- /assets/img/agri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/agri.png -------------------------------------------------------------------------------- /assets/img/apache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/apache.png -------------------------------------------------------------------------------- /assets/img/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/bootstrap.png -------------------------------------------------------------------------------- /assets/img/chatgpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/chatgpt.svg -------------------------------------------------------------------------------- /assets/img/css3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/css3.png -------------------------------------------------------------------------------- /assets/img/customers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/customers.png -------------------------------------------------------------------------------- /assets/img/farmers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/farmers.png -------------------------------------------------------------------------------- /assets/img/features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/features.png -------------------------------------------------------------------------------- /assets/img/footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/footer-logo.png -------------------------------------------------------------------------------- /assets/img/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/html.png -------------------------------------------------------------------------------- /assets/img/jquery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/jquery.png -------------------------------------------------------------------------------- /assets/img/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/js.png -------------------------------------------------------------------------------- /assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/logo.png -------------------------------------------------------------------------------- /assets/img/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/mysql.png -------------------------------------------------------------------------------- /assets/img/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/nav.png -------------------------------------------------------------------------------- /assets/img/openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/openai.png -------------------------------------------------------------------------------- /assets/img/openai2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/openai2.png -------------------------------------------------------------------------------- /assets/img/php2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/php2.png -------------------------------------------------------------------------------- /assets/img/plant-bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/plant-bulb.png -------------------------------------------------------------------------------- /assets/img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/img/play.png -------------------------------------------------------------------------------- /assets/js/TradeCrops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/js/TradeCrops.js -------------------------------------------------------------------------------- /assets/js/state_district_crops_dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/assets/js/state_district_crops_dropdown.js -------------------------------------------------------------------------------- /contact-script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/contact-script.php -------------------------------------------------------------------------------- /contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/contact.php -------------------------------------------------------------------------------- /customer/StripePayment/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/config.php -------------------------------------------------------------------------------- /customer/StripePayment/pricing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/pricing.php -------------------------------------------------------------------------------- /customer/StripePayment/products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/products.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/.coveralls.yml -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/.gitignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/.gitignore.txt -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/.travis.yml -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/data/ca-certificates.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/data/ca-certificates.crt -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/init.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/Account.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/AccountLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/AccountLink.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/AlipayAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/AlipayAccount.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApiOperations/All.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApiOperations/All.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApiOperations/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApiOperations/Create.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApiOperations/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApiOperations/Delete.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApiOperations/NestedResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApiOperations/NestedResource.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApiOperations/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApiOperations/Request.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApiOperations/Retrieve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApiOperations/Retrieve.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApiOperations/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApiOperations/Search.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApiOperations/SingletonRetrieve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApiOperations/SingletonRetrieve.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApiOperations/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApiOperations/Update.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApiRequestor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApiRequestor.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApiResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApiResource.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApiResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApiResponse.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApplePayDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApplePayDomain.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApplicationFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApplicationFee.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/ApplicationFeeRefund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/ApplicationFeeRefund.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/Apps/Secret.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/Apps/Secret.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/Balance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/Balance.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/BalanceTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/BalanceTransaction.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/BankAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/BankAccount.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/BaseStripeClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/BaseStripeClient.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/BaseStripeClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/BaseStripeClientInterface.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/BillingPortal/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/BillingPortal/Configuration.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/BillingPortal/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/BillingPortal/Session.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/BitcoinReceiver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/BitcoinReceiver.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/BitcoinTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/BitcoinTransaction.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/Capability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/Capability.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/Card.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/CashBalance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/CashBalance.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/Charge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/Charge.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/Checkout/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/Checkout/Session.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/Collection.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/CountrySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/CountrySpec.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/Coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/Coupon.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/CreditNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/CreditNote.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/CreditNoteLineItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/CreditNoteLineItem.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/Customer.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/CustomerBalanceTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/CustomerBalanceTransaction.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/CustomerCashBalanceTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/CustomerCashBalanceTransaction.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/Discount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/Discount.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/Dispute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/Dispute.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/EphemeralKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaishnavid0604/agriculture-portal/HEAD/customer/StripePayment/stripe-php-master/lib/EphemeralKey.php -------------------------------------------------------------------------------- /customer/StripePayment/stripe-php-master/lib/Error/Api.php: -------------------------------------------------------------------------------- 1 |