From 20f55281ef409a66fddd2279a6e076c41398b86c Mon Sep 17 00:00:00 2001 From: vedant-chavan Date: Fri, 9 Aug 2024 17:11:41 +0530 Subject: [PATCH] save to codehub --- .editorconfig | 18 + .env.example | 58 + .ftpquota | 1 + .gitattributes | 11 + .gitignore | 21 + .htaccess | 69 + .htaccess_old | 8 + .user.ini | 16 + README.md | 66 + app/Console/Commands/DeleteNotification.php | 44 + .../Commands/MoodOMeterNotification.php | 54 + app/Console/Commands/PushNotification.php | 64 + app/Console/Commands/StepsCountPoint.php | 37 + .../Commands/StoreMonthlyPositions.php | 67 + .../Commands/UpdateTableColumnCommand.php | 35 + app/Console/Commands/UpdateUserRanking.php | 39 + app/Console/Kernel.php | 46 + app/Exceptions/Handler.php | 50 + app/Exports/DataExport.php | 74 + app/Exports/UsersExport.php | 22 + app/Http/Controllers/API/AboutController.php | 24 + .../Controllers/API/ContactController.php | 51 + .../CreateNotificationOneSignalController.php | 26 + .../Controllers/API/DietPlanController.php | 68 + app/Http/Controllers/API/FaqController.php | 24 + .../API/GetAppVersionCotroller.php | 56 + .../API/LeaderBordMasterContoller.php | 830 + app/Http/Controllers/API/LoginController.php | 333 + .../API/ManageActivityController.php | 545 + .../API/ManageBannerController.php | 40 + .../API/ManageFeedbackController.php | 85 + .../API/ManageNotificationController.php | 121 + .../API/ManagePodcastController.php | 21 + .../Controllers/API/MoodOMeterController.php | 181 + .../API/NewsAndArticleController.php | 39 + .../Controllers/API/PeriodDatesController.php | 88 + .../Controllers/API/ProfileController.php | 194 + app/Http/Controllers/API/QuizController.php | 131 + app/Http/Controllers/API/RateUsController.php | 58 + .../Controllers/API/RegisterController.php | 56 + .../API/ShareYourThoughtsController.php | 81 + .../Controllers/API/ShortClipsController.php | 220 + .../Controllers/API/StepCountController.php | 124 + .../Controllers/API/TestimonialController.php | 76 + app/Http/Controllers/API/UserController.php | 73 + .../API/UserOverviewController.php | 329 + .../API/ViewDevicesOneSignalController.php | 20 + .../Controllers/Admin/AboutUsController.php | 48 + .../Admin/ActivityDaysController.php | 305 + .../Controllers/Admin/DashboardController.php | 36 + .../Admin/DirectUserController.php | 46 + .../Controllers/Admin/LoginController.php | 346 + .../Admin/ManageActivitiesController.php | 403 + .../Admin/ManageBannerController.php | 37 + .../Controllers/Admin/ManageCmsController.php | 16 + .../ManageCmsNewsAndArticleController.php | 223 + .../Admin/ManageCompanyUserController.php | 27 + .../Admin/ManageContactController.php | 52 + .../Admin/ManageDietPlanController.php | 155 + .../Admin/ManageDirectUserController.php | 60 + .../Controllers/Admin/ManageFaqController.php | 99 + .../Admin/ManageFeedbackController.php | 24 + .../Admin/ManageNotificationController.php | 41 + .../Admin/ManagePastSessionContoller.php | 116 + .../Admin/ManagePlanController.php | 61 + .../Admin/ManagePodcastController.php | 144 + .../Admin/ManagePreRecordedController.php | 25 + .../Admin/ManageQuizController.php | 108 + .../Admin/ManageReportsController.php | 26 + .../Admin/ManageSettingController.php | 13 + .../Admin/ManageShortClipsController.php | 90 + .../Admin/ManageSubAdminController.php | 13 + .../Admin/ManageSubcriptionController.php | 17 + .../ManageSubcriptionPlansController.php | 13 + .../Admin/ManageThoughtsController.php | 51 + .../Admin/ManageTransactionController.php | 16 + .../Admin/ManageVideoController.php | 77 + .../Admin/SummerSweatController.php | 321 + .../Controllers/Admin/TeacherController.php | 78 + .../Admin/TestimonialController.php | 81 + .../Admin/UserOverviewController.php | 24 + .../Auth/ConfirmPasswordController.php | 40 + .../Auth/ForgotPasswordController.php | 22 + app/Http/Controllers/Auth/LoginController.php | 40 + .../Controllers/Auth/RegisterController.php | 73 + .../Auth/ResetPasswordController.php | 30 + .../Auth/VerificationController.php | 42 + app/Http/Controllers/Controller.php | 13 + .../Controllers/GSFExclusiveController.php | 10 + app/Http/Controllers/GetSetEatController.php | 10 + app/Http/Controllers/HomeController.php | 28 + .../TransformAndBeyondBeginnersController.php | 10 + .../Website/ContactUsController.php | 47 + .../Website/DownloadController.php | 14 + .../Controllers/Website/HomeController.php | 14 + .../Controllers/Website/Logincontroller.php | 51 + .../Website/OurServicesController.php | 86 + .../Website/TransformBeyondController.php | 35 + .../Website/YourActivityController.php | 161 + app/Http/Helpers/ApiResponseHelper.php | 14 + app/Http/Helpers/ImageHelper.php | 1 + app/Http/Helpers/TimeZoneHelper.php | 25 + app/Http/Helpers/Webhelper.php | 86 + app/Http/Kernel.php | 71 + app/Http/Middleware/AdminMiddleware.php | 26 + app/Http/Middleware/AuthCheck.php | 48 + app/Http/Middleware/Authenticate.php | 21 + app/Http/Middleware/EncryptCookies.php | 17 + app/Http/Middleware/JwtMiddleware.php | 56 + .../PreventRequestsDuringMaintenance.php | 17 + .../Middleware/RedirectIfAuthenticated.php | 32 + .../RequestExecutionTimeLogMiddleware.php | 46 + app/Http/Middleware/TrimStrings.php | 19 + app/Http/Middleware/TrustHosts.php | 20 + app/Http/Middleware/TrustProxies.php | 28 + app/Http/Middleware/ValidateSignature.php | 22 + app/Http/Middleware/VerifyCsrfToken.php | 17 + app/Http/Middleware/WebsiteMiddleware.php | 38 + app/Imports/UserImport.php | 101 + app/Mail/ContactUsForm.php | 61 + app/Mail/DemoMail.php | 59 + app/Mail/OrderShipped.php | 59 + app/Mail/SendContactUsForm.php | 65 + app/Mail/SendMail.php | 65 + app/Mail/SendUserOtp.php | 65 + app/Mail/SignInOtpMail.php | 64 + app/Mail/UserRegisterMail.php | 74 + app/Models/ActivityDay.php | 64 + app/Models/ActivityMaster.php | 64 + app/Models/ActivitySchedule.php | 48 + app/Models/AdminMaster.php | 24 + app/Models/AppVersion.php | 12 + app/Models/BioMakerActivity.php | 15 + app/Models/CompanyMaster.php | 13 + app/Models/ContactUs.php | 34 + app/Models/DailyStepsCount.php | 17 + app/Models/DietCategoryMaster.php | 19 + app/Models/DietPlan.php | 23 + app/Models/DietQuestionMaster.php | 16 + app/Models/LeaderboardMaster.php | 34 + app/Models/LinkFaqActivityMasterIds.php | 21 + app/Models/ManageAboutUs.php | 28 + app/Models/ManageBanner.php | 14 + app/Models/ManageFaq.php | 35 + app/Models/ManageFaqCategory.php | 25 + app/Models/ManageFeedback.php | 25 + app/Models/ManageFreeVideo.php | 19 + app/Models/ManageNewsArticles.php | 22 + app/Models/ManagePodcast.php | 18 + app/Models/ManageQuizQuestion.php | 22 + app/Models/ManageRateUs.php | 18 + app/Models/ManageSetting.php | 18 + app/Models/ManageShortClips.php | 29 + app/Models/Models.zip | Bin 0 -> 22283 bytes app/Models/MonthlyPosition.php | 24 + app/Models/NewsArticlesCategory.php | 22 + app/Models/NotificationMaster.php | 16 + app/Models/NotificationUser.php | 31 + app/Models/PastSession.php | 19 + app/Models/PaymentTransactionsMaster.php | 15 + app/Models/PeriodDate.php | 12 + app/Models/PersonalAccessToken.php | 23 + app/Models/PreRecordedVideoDetails.php | 17 + app/Models/PreRecordedVideoMaster.php | 15 + app/Models/QuizQuestionsAnswer.php | 21 + app/Models/SessionStatus.php | 11 + app/Models/ShareYourThought.php | 11 + app/Models/ShortClipsLikes.php | 22 + app/Models/SubscriptionMaster.php | 38 + app/Models/SubscriptionPackageDescription.php | 32 + app/Models/SubscriptionPlanPackage.php | 36 + app/Models/Teacher.php | 24 + app/Models/Testimonial.php | 30 + app/Models/TestimonialImages.php | 14 + app/Models/Thoughts.php | 11 + app/Models/Tracher.php | 33 + app/Models/User.php | 148 + app/Models/UserContentView.php | 14 + app/Models/UserDetail.php | 38 + app/Models/UserEmailOtp.php | 13 + app/Models/UserOverView.php | 43 + app/Models/UserQuizPoints.php | 12 + app/Models/UserQuizReport.php | 14 + app/Models/UserThought.php | 24 + app/Models/mood_o_meter.php | 26 + app/Providers/AppServiceProvider.php | 28 + app/Providers/AuthServiceProvider.php | 30 + app/Providers/BroadcastServiceProvider.php | 21 + app/Providers/EventServiceProvider.php | 42 + app/Providers/MyServiceProvider.php | 28 + app/Providers/RouteServiceProvider.php | 53 + app/Services/Admin/ManageAboutUsService.php | 127 + app/Services/Admin/ManageBannerService.php | 59 + app/Services/Admin/ManageContactService.php | 70 + app/Services/Admin/ManageDietPlanService.php | 85 + app/Services/Admin/ManageFaqService.php | 76 + app/Services/Admin/ManagePlanService.php | 89 + .../Admin/ManageShortClipsService.php | 95 + .../Admin/ManageTestimonialService.php | 150 + app/Services/Admin/ManageThoughtsService.php | 36 + app/Services/Admin/ManageVideoService.php | 96 + artisan | 53 + bootstrap/app.php | 55 + bootstrap/cache/.gitignore | 2 + composer.json | 81 + composer.lock | 9889 ++++++++++++ config/app.php | 222 + config/auth.php | 124 + config/broadcasting.php | 70 + config/cache.php | 110 + config/cors.php | 34 + config/database.php | 151 + config/excel.php | 333 + config/filesystems.php | 76 + config/geoip.php | 166 + config/hashing.php | 52 + config/jwt.php | 303 + config/logging.php | 122 + config/mail.php | 125 + config/one-signal.php | 51 + config/queue.php | 93 + config/sanctum.php | 67 + config/services.php | 34 + config/session.php | 201 + config/view.php | 36 + database/.gitignore | 1 + database/factories/UserFactory.php | 40 + .../2014_10_12_000000_create_users_table.php | 36 + ...12_100000_create_password_resets_table.php | 32 + ..._08_19_000000_create_failed_jobs_table.php | 36 + ...01_create_personal_access_tokens_table.php | 37 + ..._163204_create_monthly_positions_table.php | 34 + ...onth_column_in_monthly_positions_table.php | 35 + ...075247_create_testimonial_images_table.php | 34 + ...063558_create_daily_steps_counts_table.php | 35 + ..._11_23_111349_create_app_version_table.php | 34 + database/seeders/DatabaseSeeder.php | 24 + index.php | 55 + lang/en/auth.php | 20 + lang/en/pagination.php | 19 + lang/en/passwords.php | 22 + lang/en/validation.php | 184 + new.txt | 0 package.json | 18 + php.ini | 15 + phpunit.xml | 31 + resources/css/app.css | 0 resources/js/app.js | 1 + resources/js/bootstrap.js | 33 + resources/sass/_variables.scss | 7 + resources/sass/app.scss | 8 + .../Pages/direct_users/direct_user.blade.php | 261 + .../activity_days/activity_days.blade.php | 180 + .../activity_days/add_activity_days.blade.php | 129 + .../add_upcoming_activity_day.blade.php | 127 + .../edit_activity_days.blade.php | 152 + .../edit_upcoming_activity_day.blade.php | 153 + .../activity_days/past_activity_day.blade.php | 177 + .../upcoming_activity_days.blade.php | 180 + .../add_new_main_activities.blade.php | 303 + .../edit_main_activities.blade.php | 241 + .../edit_upcoming_main_activities.blade.php | 294 + .../manage_activity.blade.php | 441 + .../past_session/add_past_session.blade.php | 180 + .../past_session/edit_past_session.blade.php | 187 + .../past_session/past_activity_day.blade.php | 178 + .../past_session/past_schedules.blade.php | 173 + .../summer_sweats/add_past_session.blade.php | 160 + .../summer_sweats/add_summer_sweat.blade.php | 178 + .../add_upcoming_summer_sweat.blade.php | 111 + .../summer_sweats/edit_summer_sweat.blade.php | 119 + .../edit_upcoming_summer_sweat.blade.php | 85 + .../summer_sweats/summer_sweat.blade.php | 172 + .../upcoming_summer_sweat.blade.php | 172 + .../manage_cms/about_us/about_us.blade.php | 131 + .../about_us/edit_about_us.blade.php | 190 + .../banner/manage_cms_banner.blade.php | 156 + .../Pages/manage_cms/manage_cms.blade.php | 100 + .../manage_cms/manage_cms_upload.blade.php | 77 + .../manage_faq/manage_faqs.blade.php | 619 + .../Pages/manage_cms/manage_podcast (1).zip | Bin 0 -> 8746 bytes .../Admin/Pages/manage_cms/manage_podcast.zip | Bin 0 -> 1391 bytes .../add_manage_podcast.blade.php | 67 + .../manage_podcast/manage_podcast.blade.php | 296 + .../Admin/Pages/manage_cms/manage_quiz.zip | Bin 0 -> 6265 bytes .../manage_cms/manage_quiz/add_quiz.blade.php | 99 + .../manage_quiz/edit_quiz.blade.php | 92 + .../manage_quiz/manage_quiz.blade.php | 411 + .../manage_thoughts/add_thoughts.blade.php | 83 + .../manage_thoughts/manage_thoughts.blade.php | 261 + .../manage_video/add_manage_video.blade.php | 119 + .../manage_video/edit_manage_video.blade.php | 125 + .../manage_video/manage_video.blade.php | 461 + .../Pages/manage_cms/news_and_articles.zip | Bin 0 -> 8435 bytes .../add_news_article.blade.php | 123 + .../edit_news_and_articles.blade.php | 123 + .../manage_cms_news_and_articles.blade.php | 115 + .../manage_cms_news_article.blade.php | 369 + .../testimonial/add_testimonial.blade.php | 215 + .../testimonial/add_testimonial.php | 83 + .../testimonial/edit_testimonial.blade.php | 259 + .../testimonial/testimonial.blade.php | 316 + .../add_company.blade.php | 88 + .../add_company_user.blade.php | 141 + .../manage_company_users/company.blade.php | 1007 ++ .../manage_company_users/company_users.php | 131 + .../manage_company_user.blade.php | 628 + .../users-profile-three.blade.php | 605 + .../users_profile_three.blade.php | 604 + .../view_company_users.php | 129 + .../manage_contact/manage_contact.blade.php | 299 + .../manage_contact_deleted.blade.php | 245 + .../manage_diet_plans/add_diet_plan.blade.php | 184 + .../edit_diet_plan.blade.php | 139 + .../manage-diet-plan.blade.php | 911 ++ .../manage_diet_plan.blade.php | 238 + .../manage_direct_users.blade.php | 242 + .../users-profile-two.blade.php | 833 + .../manage_feedback/manage_feedback.blade.php | 229 + .../manage_notification.blade.php | 69 + .../Pages/manage_plan/add_plan.blade.php | 98 + .../Pages/manage_plan/edit_plan.blade.php | 146 + .../Admin/Pages/manage_plan/manage_plan.blade | 283 + .../Pages/manage_plan/manage_plan.blade.php | 246 + .../add_manage_pre_recorded_video.blade.php | 134 + .../edit_manage_pre_recorded_video.blade.php | 114 + .../manage_pre_recorded_video.blade.php | 887 ++ .../view_manage_pre_recorded_video.blade.php | 105 + .../activities_report.blade.php | 123 + .../manage_reports/manage_reports.blade.php | 65 + .../transaction_report.blade.php | 114 + .../manage_reports/user_report.blade.php | 157 + .../manage_settings/manage_setting.blade.php | 64 + .../add_short_clips.blade.php | 131 + .../edit_short_clips.blade.php | 141 + .../manage_short_clips.blade.php | 364 + .../manage_sub_admin.blade.php | 932 ++ .../manage_archive_list.blade.php | 1590 ++ .../manage_subscription.blade.php | 1681 +++ .../manage_subscription_plans.blade.php | 313 + .../manage_subscription_plans.blade.php | 313 + .../manage_teacher/manage_teacher.blade.php | 255 + .../add_manage_teacher.blade.php | 96 + .../edit_manage_teacher.blade.php | 98 + .../manage_teachers/manage_teacher.blade.php | 257 + ...manage-transactions-archive-list.blade.php | 543 + .../manage_transactions.blade.php | 632 + ...manage_transactions_archive_list.blade.php | 546 + .../manage_company_users.blade.php | 607 + .../user_overview/user_overview.blade.php | 97 + .../Admin/Templates/manage_contact.blade.php | 89 + .../Admin/Templates/sign_in_otp.blade.php | 95 + .../views/Admin/Templates/user_otp.blade.php | 95 + .../Admin/Templates/user_register.blade.php | 13 + resources/views/Admin/dashboard.blade.php | 296 + resources/views/Admin/footer.blade.php | 278 + resources/views/Admin/function.php | 24 + resources/views/Admin/header.blade.php | 56 + .../views/Admin/layouts/master.blade.php | 584 + .../views/Admin/layouts/messages.blade.php | 12 + resources/views/Admin/sign_in.blade.php | 184 + resources/views/Admin/two_steps.blade.php | 157 + .../Frontend/Pages/Payment/checkout.blade.php | 12 + .../Frontend/Pages/Payment/payment.blade.php | 31 + .../Frontend/Pages/Payment/response.blade.php | 16 + .../subcription/create_subcription.blade.php | 50 + .../subcription/create_subscription.blade.php | 78 + .../create_subscription_Intermidate.blade.php | 90 + .../create_subscription_advance.blade.php | 90 + .../create_subscription_beginners.blade.php | 90 + .../Pages/subcription/show_activity.blade.php | 116 + .../Pages/subcription/subscription.blade.php | 17 + .../subcription/view_subscription.blade.php | 20 + resources/views/Frontend/footer.blade.php | 27 + resources/views/Frontend/header.blade.php | 13 + resources/views/Frontend/index.blade.php | 0 .../views/Frontend/layouts/master.blade.php | 32 + resources/views/auth/login.blade.php | 73 + .../views/auth/passwords/confirm.blade.php | 49 + .../views/auth/passwords/email.blade.php | 47 + .../views/auth/passwords/reset.blade.php | 65 + resources/views/auth/register.blade.php | 77 + resources/views/auth/verify.blade.php | 28 + resources/views/home.blade.php | 23 + resources/views/layouts/app.blade.php | 80 + .../views/vendor/billdesk/payment.blade.php | 136 + .../website/Templates/contact_us.blade.php | 89 + resources/views/website/footer.blade.php | 65 + resources/views/website/header.blade.php | 240 + .../views/website/layouts/master.blade.php | 3 + .../website/pages/beyond_transform.blade.php | 282 + .../views/website/pages/contact_us.blade.php | 146 + .../views/website/pages/download.blade.php | 388 + .../views/website/pages/get_set_eat.blade.php | 598 + .../website/pages/gsf_exclusive.blade.php | 593 + .../views/website/pages/home_page.blade.php | 964 ++ .../website/pages/our_services.blade.php | 151 + .../website/pages/privacy_policy.blade.php | 165 + .../views/website/pages/privacy_policy.php | 12603 ++++++++++++++++ .../website/pages/transform_beyond.blade.php | 759 + .../pages/transform_beyond_beginner.blade.php | 739 + .../website/pages/your_activity.blade.php | 124 + resources/views/welcome.blade.php | 132 + routes/api.php | 230 + routes/channels.php | 18 + routes/console.php | 19 + routes/web.php | 444 + tests/CreatesApplication.php | 22 + tests/Feature/ExampleTest.php | 21 + tests/TestCase.php | 10 + tests/Unit/ExampleTest.php | 18 + vite.config.js | 14 + 412 files changed, 74718 insertions(+) create mode 100644 .editorconfig create mode 100644 .env.example create mode 100644 .ftpquota create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .htaccess create mode 100644 .htaccess_old create mode 100644 .user.ini create mode 100644 README.md create mode 100644 app/Console/Commands/DeleteNotification.php create mode 100644 app/Console/Commands/MoodOMeterNotification.php create mode 100644 app/Console/Commands/PushNotification.php create mode 100644 app/Console/Commands/StepsCountPoint.php create mode 100644 app/Console/Commands/StoreMonthlyPositions.php create mode 100644 app/Console/Commands/UpdateTableColumnCommand.php create mode 100644 app/Console/Commands/UpdateUserRanking.php create mode 100644 app/Console/Kernel.php create mode 100644 app/Exceptions/Handler.php create mode 100644 app/Exports/DataExport.php create mode 100644 app/Exports/UsersExport.php create mode 100644 app/Http/Controllers/API/AboutController.php create mode 100644 app/Http/Controllers/API/ContactController.php create mode 100644 app/Http/Controllers/API/CreateNotificationOneSignalController.php create mode 100644 app/Http/Controllers/API/DietPlanController.php create mode 100644 app/Http/Controllers/API/FaqController.php create mode 100644 app/Http/Controllers/API/GetAppVersionCotroller.php create mode 100644 app/Http/Controllers/API/LeaderBordMasterContoller.php create mode 100644 app/Http/Controllers/API/LoginController.php create mode 100644 app/Http/Controllers/API/ManageActivityController.php create mode 100644 app/Http/Controllers/API/ManageBannerController.php create mode 100644 app/Http/Controllers/API/ManageFeedbackController.php create mode 100644 app/Http/Controllers/API/ManageNotificationController.php create mode 100644 app/Http/Controllers/API/ManagePodcastController.php create mode 100644 app/Http/Controllers/API/MoodOMeterController.php create mode 100644 app/Http/Controllers/API/NewsAndArticleController.php create mode 100644 app/Http/Controllers/API/PeriodDatesController.php create mode 100644 app/Http/Controllers/API/ProfileController.php create mode 100644 app/Http/Controllers/API/QuizController.php create mode 100644 app/Http/Controllers/API/RateUsController.php create mode 100644 app/Http/Controllers/API/RegisterController.php create mode 100644 app/Http/Controllers/API/ShareYourThoughtsController.php create mode 100644 app/Http/Controllers/API/ShortClipsController.php create mode 100644 app/Http/Controllers/API/StepCountController.php create mode 100644 app/Http/Controllers/API/TestimonialController.php create mode 100644 app/Http/Controllers/API/UserController.php create mode 100644 app/Http/Controllers/API/UserOverviewController.php create mode 100644 app/Http/Controllers/API/ViewDevicesOneSignalController.php create mode 100644 app/Http/Controllers/Admin/AboutUsController.php create mode 100644 app/Http/Controllers/Admin/ActivityDaysController.php create mode 100644 app/Http/Controllers/Admin/DashboardController.php create mode 100644 app/Http/Controllers/Admin/DirectUserController.php create mode 100644 app/Http/Controllers/Admin/LoginController.php create mode 100644 app/Http/Controllers/Admin/ManageActivitiesController.php create mode 100644 app/Http/Controllers/Admin/ManageBannerController.php create mode 100644 app/Http/Controllers/Admin/ManageCmsController.php create mode 100644 app/Http/Controllers/Admin/ManageCmsNewsAndArticleController.php create mode 100644 app/Http/Controllers/Admin/ManageCompanyUserController.php create mode 100644 app/Http/Controllers/Admin/ManageContactController.php create mode 100644 app/Http/Controllers/Admin/ManageDietPlanController.php create mode 100644 app/Http/Controllers/Admin/ManageDirectUserController.php create mode 100644 app/Http/Controllers/Admin/ManageFaqController.php create mode 100644 app/Http/Controllers/Admin/ManageFeedbackController.php create mode 100644 app/Http/Controllers/Admin/ManageNotificationController.php create mode 100644 app/Http/Controllers/Admin/ManagePastSessionContoller.php create mode 100644 app/Http/Controllers/Admin/ManagePlanController.php create mode 100644 app/Http/Controllers/Admin/ManagePodcastController.php create mode 100644 app/Http/Controllers/Admin/ManagePreRecordedController.php create mode 100644 app/Http/Controllers/Admin/ManageQuizController.php create mode 100644 app/Http/Controllers/Admin/ManageReportsController.php create mode 100644 app/Http/Controllers/Admin/ManageSettingController.php create mode 100644 app/Http/Controllers/Admin/ManageShortClipsController.php create mode 100644 app/Http/Controllers/Admin/ManageSubAdminController.php create mode 100644 app/Http/Controllers/Admin/ManageSubcriptionController.php create mode 100644 app/Http/Controllers/Admin/ManageSubcriptionPlansController.php create mode 100644 app/Http/Controllers/Admin/ManageThoughtsController.php create mode 100644 app/Http/Controllers/Admin/ManageTransactionController.php create mode 100644 app/Http/Controllers/Admin/ManageVideoController.php create mode 100644 app/Http/Controllers/Admin/SummerSweatController.php create mode 100644 app/Http/Controllers/Admin/TeacherController.php create mode 100644 app/Http/Controllers/Admin/TestimonialController.php create mode 100644 app/Http/Controllers/Admin/UserOverviewController.php create mode 100644 app/Http/Controllers/Auth/ConfirmPasswordController.php create mode 100644 app/Http/Controllers/Auth/ForgotPasswordController.php create mode 100644 app/Http/Controllers/Auth/LoginController.php create mode 100644 app/Http/Controllers/Auth/RegisterController.php create mode 100644 app/Http/Controllers/Auth/ResetPasswordController.php create mode 100644 app/Http/Controllers/Auth/VerificationController.php create mode 100644 app/Http/Controllers/Controller.php create mode 100644 app/Http/Controllers/GSFExclusiveController.php create mode 100644 app/Http/Controllers/GetSetEatController.php create mode 100644 app/Http/Controllers/HomeController.php create mode 100644 app/Http/Controllers/TransformAndBeyondBeginnersController.php create mode 100644 app/Http/Controllers/Website/ContactUsController.php create mode 100644 app/Http/Controllers/Website/DownloadController.php create mode 100644 app/Http/Controllers/Website/HomeController.php create mode 100644 app/Http/Controllers/Website/Logincontroller.php create mode 100644 app/Http/Controllers/Website/OurServicesController.php create mode 100644 app/Http/Controllers/Website/TransformBeyondController.php create mode 100644 app/Http/Controllers/Website/YourActivityController.php create mode 100644 app/Http/Helpers/ApiResponseHelper.php create mode 100644 app/Http/Helpers/ImageHelper.php create mode 100644 app/Http/Helpers/TimeZoneHelper.php create mode 100644 app/Http/Helpers/Webhelper.php create mode 100644 app/Http/Kernel.php create mode 100644 app/Http/Middleware/AdminMiddleware.php create mode 100644 app/Http/Middleware/AuthCheck.php create mode 100644 app/Http/Middleware/Authenticate.php create mode 100644 app/Http/Middleware/EncryptCookies.php create mode 100644 app/Http/Middleware/JwtMiddleware.php create mode 100644 app/Http/Middleware/PreventRequestsDuringMaintenance.php create mode 100644 app/Http/Middleware/RedirectIfAuthenticated.php create mode 100644 app/Http/Middleware/RequestExecutionTimeLogMiddleware.php create mode 100644 app/Http/Middleware/TrimStrings.php create mode 100644 app/Http/Middleware/TrustHosts.php create mode 100644 app/Http/Middleware/TrustProxies.php create mode 100644 app/Http/Middleware/ValidateSignature.php create mode 100644 app/Http/Middleware/VerifyCsrfToken.php create mode 100644 app/Http/Middleware/WebsiteMiddleware.php create mode 100644 app/Imports/UserImport.php create mode 100644 app/Mail/ContactUsForm.php create mode 100644 app/Mail/DemoMail.php create mode 100644 app/Mail/OrderShipped.php create mode 100644 app/Mail/SendContactUsForm.php create mode 100644 app/Mail/SendMail.php create mode 100644 app/Mail/SendUserOtp.php create mode 100644 app/Mail/SignInOtpMail.php create mode 100644 app/Mail/UserRegisterMail.php create mode 100644 app/Models/ActivityDay.php create mode 100644 app/Models/ActivityMaster.php create mode 100644 app/Models/ActivitySchedule.php create mode 100644 app/Models/AdminMaster.php create mode 100644 app/Models/AppVersion.php create mode 100644 app/Models/BioMakerActivity.php create mode 100644 app/Models/CompanyMaster.php create mode 100644 app/Models/ContactUs.php create mode 100644 app/Models/DailyStepsCount.php create mode 100644 app/Models/DietCategoryMaster.php create mode 100644 app/Models/DietPlan.php create mode 100644 app/Models/DietQuestionMaster.php create mode 100644 app/Models/LeaderboardMaster.php create mode 100644 app/Models/LinkFaqActivityMasterIds.php create mode 100644 app/Models/ManageAboutUs.php create mode 100644 app/Models/ManageBanner.php create mode 100644 app/Models/ManageFaq.php create mode 100644 app/Models/ManageFaqCategory.php create mode 100644 app/Models/ManageFeedback.php create mode 100644 app/Models/ManageFreeVideo.php create mode 100644 app/Models/ManageNewsArticles.php create mode 100644 app/Models/ManagePodcast.php create mode 100644 app/Models/ManageQuizQuestion.php create mode 100644 app/Models/ManageRateUs.php create mode 100644 app/Models/ManageSetting.php create mode 100644 app/Models/ManageShortClips.php create mode 100644 app/Models/Models.zip create mode 100644 app/Models/MonthlyPosition.php create mode 100644 app/Models/NewsArticlesCategory.php create mode 100644 app/Models/NotificationMaster.php create mode 100644 app/Models/NotificationUser.php create mode 100644 app/Models/PastSession.php create mode 100644 app/Models/PaymentTransactionsMaster.php create mode 100644 app/Models/PeriodDate.php create mode 100644 app/Models/PersonalAccessToken.php create mode 100644 app/Models/PreRecordedVideoDetails.php create mode 100644 app/Models/PreRecordedVideoMaster.php create mode 100644 app/Models/QuizQuestionsAnswer.php create mode 100644 app/Models/SessionStatus.php create mode 100644 app/Models/ShareYourThought.php create mode 100644 app/Models/ShortClipsLikes.php create mode 100644 app/Models/SubscriptionMaster.php create mode 100644 app/Models/SubscriptionPackageDescription.php create mode 100644 app/Models/SubscriptionPlanPackage.php create mode 100644 app/Models/Teacher.php create mode 100644 app/Models/Testimonial.php create mode 100644 app/Models/TestimonialImages.php create mode 100644 app/Models/Thoughts.php create mode 100644 app/Models/Tracher.php create mode 100644 app/Models/User.php create mode 100644 app/Models/UserContentView.php create mode 100644 app/Models/UserDetail.php create mode 100644 app/Models/UserEmailOtp.php create mode 100644 app/Models/UserOverView.php create mode 100644 app/Models/UserQuizPoints.php create mode 100644 app/Models/UserQuizReport.php create mode 100644 app/Models/UserThought.php create mode 100644 app/Models/mood_o_meter.php create mode 100644 app/Providers/AppServiceProvider.php create mode 100644 app/Providers/AuthServiceProvider.php create mode 100644 app/Providers/BroadcastServiceProvider.php create mode 100644 app/Providers/EventServiceProvider.php create mode 100644 app/Providers/MyServiceProvider.php create mode 100644 app/Providers/RouteServiceProvider.php create mode 100644 app/Services/Admin/ManageAboutUsService.php create mode 100644 app/Services/Admin/ManageBannerService.php create mode 100644 app/Services/Admin/ManageContactService.php create mode 100644 app/Services/Admin/ManageDietPlanService.php create mode 100644 app/Services/Admin/ManageFaqService.php create mode 100644 app/Services/Admin/ManagePlanService.php create mode 100644 app/Services/Admin/ManageShortClipsService.php create mode 100644 app/Services/Admin/ManageTestimonialService.php create mode 100644 app/Services/Admin/ManageThoughtsService.php create mode 100644 app/Services/Admin/ManageVideoService.php create mode 100644 artisan create mode 100644 bootstrap/app.php create mode 100644 bootstrap/cache/.gitignore create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 config/app.php create mode 100644 config/auth.php create mode 100644 config/broadcasting.php create mode 100644 config/cache.php create mode 100644 config/cors.php create mode 100644 config/database.php create mode 100644 config/excel.php create mode 100644 config/filesystems.php create mode 100644 config/geoip.php create mode 100644 config/hashing.php create mode 100644 config/jwt.php create mode 100644 config/logging.php create mode 100644 config/mail.php create mode 100644 config/one-signal.php create mode 100644 config/queue.php create mode 100644 config/sanctum.php create mode 100644 config/services.php create mode 100644 config/session.php create mode 100644 config/view.php create mode 100644 database/.gitignore create mode 100644 database/factories/UserFactory.php create mode 100644 database/migrations/2014_10_12_000000_create_users_table.php create mode 100644 database/migrations/2014_10_12_100000_create_password_resets_table.php create mode 100644 database/migrations/2019_08_19_000000_create_failed_jobs_table.php create mode 100644 database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php create mode 100644 database/migrations/2023_07_29_163204_create_monthly_positions_table.php create mode 100644 database/migrations/2023_07_29_171010_modify_month_column_in_monthly_positions_table.php create mode 100644 database/migrations/2023_08_31_075247_create_testimonial_images_table.php create mode 100644 database/migrations/2023_10_13_063558_create_daily_steps_counts_table.php create mode 100644 database/migrations/2023_11_23_111349_create_app_version_table.php create mode 100644 database/seeders/DatabaseSeeder.php create mode 100644 index.php create mode 100644 lang/en/auth.php create mode 100644 lang/en/pagination.php create mode 100644 lang/en/passwords.php create mode 100644 lang/en/validation.php create mode 100644 new.txt create mode 100644 package.json create mode 100644 php.ini create mode 100644 phpunit.xml create mode 100644 resources/css/app.css create mode 100644 resources/js/app.js create mode 100644 resources/js/bootstrap.js create mode 100644 resources/sass/_variables.scss create mode 100644 resources/sass/app.scss create mode 100644 resources/views/Admin/Pages/direct_users/direct_user.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/activity_days/activity_days.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/activity_days/add_activity_days.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/activity_days/add_upcoming_activity_day.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/activity_days/edit_activity_days.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/activity_days/edit_upcoming_activity_day.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/activity_days/past_activity_day.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/activity_days/upcoming_activity_days.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/add_new_main_activities.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/edit_main_activities.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/edit_upcoming_main_activities.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/manage_activity.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/past_session/add_past_session.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/past_session/edit_past_session.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/past_session/past_activity_day.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/past_session/past_schedules.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/summer_sweats/add_past_session.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/summer_sweats/add_summer_sweat.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/summer_sweats/add_upcoming_summer_sweat.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/summer_sweats/edit_summer_sweat.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/summer_sweats/edit_upcoming_summer_sweat.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/summer_sweats/summer_sweat.blade.php create mode 100644 resources/views/Admin/Pages/manage_activities/summer_sweats/upcoming_summer_sweat.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/about_us/about_us.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/about_us/edit_about_us.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/banner/manage_cms_banner.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/manage_cms.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/manage_cms_upload.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/manage_faq/manage_faqs.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/manage_podcast (1).zip create mode 100644 resources/views/Admin/Pages/manage_cms/manage_podcast.zip create mode 100644 resources/views/Admin/Pages/manage_cms/manage_podcast/add_manage_podcast.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/manage_podcast/manage_podcast.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/manage_quiz.zip create mode 100644 resources/views/Admin/Pages/manage_cms/manage_quiz/add_quiz.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/manage_quiz/edit_quiz.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/manage_quiz/manage_quiz.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/manage_thoughts/add_thoughts.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/manage_thoughts/manage_thoughts.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/manage_video/add_manage_video.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/manage_video/edit_manage_video.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/manage_video/manage_video.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/news_and_articles.zip create mode 100644 resources/views/Admin/Pages/manage_cms/news_and_articles/add_news_article.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/news_and_articles/edit_news_and_articles.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/news_and_articles/manage_cms_news_and_articles.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/news_and_articles/manage_cms_news_article.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/testimonial/add_testimonial.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/testimonial/add_testimonial.php create mode 100644 resources/views/Admin/Pages/manage_cms/testimonial/edit_testimonial.blade.php create mode 100644 resources/views/Admin/Pages/manage_cms/testimonial/testimonial.blade.php create mode 100644 resources/views/Admin/Pages/manage_company_users/add_company.blade.php create mode 100644 resources/views/Admin/Pages/manage_company_users/add_company_user.blade.php create mode 100644 resources/views/Admin/Pages/manage_company_users/company.blade.php create mode 100644 resources/views/Admin/Pages/manage_company_users/company_users.php create mode 100644 resources/views/Admin/Pages/manage_company_users/manage_company_user.blade.php create mode 100644 resources/views/Admin/Pages/manage_company_users/users-profile-three.blade.php create mode 100644 resources/views/Admin/Pages/manage_company_users/users_profile_three.blade.php create mode 100644 resources/views/Admin/Pages/manage_company_users/view_company_users.php create mode 100644 resources/views/Admin/Pages/manage_contact/manage_contact.blade.php create mode 100644 resources/views/Admin/Pages/manage_contact/manage_contact_deleted.blade.php create mode 100644 resources/views/Admin/Pages/manage_diet_plans/add_diet_plan.blade.php create mode 100644 resources/views/Admin/Pages/manage_diet_plans/edit_diet_plan.blade.php create mode 100644 resources/views/Admin/Pages/manage_diet_plans/manage-diet-plan.blade.php create mode 100644 resources/views/Admin/Pages/manage_diet_plans/manage_diet_plan.blade.php create mode 100644 resources/views/Admin/Pages/manage_direct_users/manage_direct_users.blade.php create mode 100644 resources/views/Admin/Pages/manage_direct_users/users-profile-two.blade.php create mode 100644 resources/views/Admin/Pages/manage_feedback/manage_feedback.blade.php create mode 100644 resources/views/Admin/Pages/manage_notification/manage_notification.blade.php create mode 100644 resources/views/Admin/Pages/manage_plan/add_plan.blade.php create mode 100644 resources/views/Admin/Pages/manage_plan/edit_plan.blade.php create mode 100644 resources/views/Admin/Pages/manage_plan/manage_plan.blade create mode 100644 resources/views/Admin/Pages/manage_plan/manage_plan.blade.php create mode 100644 resources/views/Admin/Pages/manage_pre_recorded/add_manage_pre_recorded_video.blade.php create mode 100644 resources/views/Admin/Pages/manage_pre_recorded/edit_manage_pre_recorded_video.blade.php create mode 100644 resources/views/Admin/Pages/manage_pre_recorded/manage_pre_recorded_video.blade.php create mode 100644 resources/views/Admin/Pages/manage_pre_recorded/view_manage_pre_recorded_video.blade.php create mode 100644 resources/views/Admin/Pages/manage_reports/activities_report.blade.php create mode 100644 resources/views/Admin/Pages/manage_reports/manage_reports.blade.php create mode 100644 resources/views/Admin/Pages/manage_reports/transaction_report.blade.php create mode 100644 resources/views/Admin/Pages/manage_reports/user_report.blade.php create mode 100644 resources/views/Admin/Pages/manage_settings/manage_setting.blade.php create mode 100644 resources/views/Admin/Pages/manage_short_clips/add_short_clips.blade.php create mode 100644 resources/views/Admin/Pages/manage_short_clips/edit_short_clips.blade.php create mode 100644 resources/views/Admin/Pages/manage_short_clips/manage_short_clips.blade.php create mode 100644 resources/views/Admin/Pages/manage_sub_admins/manage_sub_admin.blade.php create mode 100644 resources/views/Admin/Pages/manage_subscription/manage_archive_list.blade.php create mode 100644 resources/views/Admin/Pages/manage_subscription/manage_subscription.blade.php create mode 100644 resources/views/Admin/Pages/manage_subscription/manage_subscription_plans.blade.php create mode 100644 resources/views/Admin/Pages/manage_subscription_plans/manage_subscription_plans.blade.php create mode 100644 resources/views/Admin/Pages/manage_teacher/manage_teacher.blade.php create mode 100644 resources/views/Admin/Pages/manage_teachers/add_manage_teacher.blade.php create mode 100644 resources/views/Admin/Pages/manage_teachers/edit_manage_teacher.blade.php create mode 100644 resources/views/Admin/Pages/manage_teachers/manage_teacher.blade.php create mode 100644 resources/views/Admin/Pages/manage_transactions/manage-transactions-archive-list.blade.php create mode 100644 resources/views/Admin/Pages/manage_transactions/manage_transactions.blade.php create mode 100644 resources/views/Admin/Pages/manage_transactions/manage_transactions_archive_list.blade.php create mode 100644 resources/views/Admin/Pages/mange_company_user/manage_company_users.blade.php create mode 100644 resources/views/Admin/Pages/user_overview/user_overview.blade.php create mode 100644 resources/views/Admin/Templates/manage_contact.blade.php create mode 100644 resources/views/Admin/Templates/sign_in_otp.blade.php create mode 100644 resources/views/Admin/Templates/user_otp.blade.php create mode 100644 resources/views/Admin/Templates/user_register.blade.php create mode 100644 resources/views/Admin/dashboard.blade.php create mode 100644 resources/views/Admin/footer.blade.php create mode 100644 resources/views/Admin/function.php create mode 100644 resources/views/Admin/header.blade.php create mode 100644 resources/views/Admin/layouts/master.blade.php create mode 100644 resources/views/Admin/layouts/messages.blade.php create mode 100644 resources/views/Admin/sign_in.blade.php create mode 100644 resources/views/Admin/two_steps.blade.php create mode 100644 resources/views/Frontend/Pages/Payment/checkout.blade.php create mode 100644 resources/views/Frontend/Pages/Payment/payment.blade.php create mode 100644 resources/views/Frontend/Pages/Payment/response.blade.php create mode 100644 resources/views/Frontend/Pages/subcription/create_subcription.blade.php create mode 100644 resources/views/Frontend/Pages/subcription/create_subscription.blade.php create mode 100644 resources/views/Frontend/Pages/subcription/create_subscription_Intermidate.blade.php create mode 100644 resources/views/Frontend/Pages/subcription/create_subscription_advance.blade.php create mode 100644 resources/views/Frontend/Pages/subcription/create_subscription_beginners.blade.php create mode 100644 resources/views/Frontend/Pages/subcription/show_activity.blade.php create mode 100644 resources/views/Frontend/Pages/subcription/subscription.blade.php create mode 100644 resources/views/Frontend/Pages/subcription/view_subscription.blade.php create mode 100644 resources/views/Frontend/footer.blade.php create mode 100644 resources/views/Frontend/header.blade.php create mode 100644 resources/views/Frontend/index.blade.php create mode 100644 resources/views/Frontend/layouts/master.blade.php create mode 100644 resources/views/auth/login.blade.php create mode 100644 resources/views/auth/passwords/confirm.blade.php create mode 100644 resources/views/auth/passwords/email.blade.php create mode 100644 resources/views/auth/passwords/reset.blade.php create mode 100644 resources/views/auth/register.blade.php create mode 100644 resources/views/auth/verify.blade.php create mode 100644 resources/views/home.blade.php create mode 100644 resources/views/layouts/app.blade.php create mode 100644 resources/views/vendor/billdesk/payment.blade.php create mode 100644 resources/views/website/Templates/contact_us.blade.php create mode 100644 resources/views/website/footer.blade.php create mode 100644 resources/views/website/header.blade.php create mode 100644 resources/views/website/layouts/master.blade.php create mode 100644 resources/views/website/pages/beyond_transform.blade.php create mode 100644 resources/views/website/pages/contact_us.blade.php create mode 100644 resources/views/website/pages/download.blade.php create mode 100644 resources/views/website/pages/get_set_eat.blade.php create mode 100644 resources/views/website/pages/gsf_exclusive.blade.php create mode 100644 resources/views/website/pages/home_page.blade.php create mode 100644 resources/views/website/pages/our_services.blade.php create mode 100644 resources/views/website/pages/privacy_policy.blade.php create mode 100644 resources/views/website/pages/privacy_policy.php create mode 100644 resources/views/website/pages/transform_beyond.blade.php create mode 100644 resources/views/website/pages/transform_beyond_beginner.blade.php create mode 100644 resources/views/website/pages/your_activity.blade.php create mode 100644 resources/views/welcome.blade.php create mode 100644 routes/api.php create mode 100644 routes/channels.php create mode 100644 routes/console.php create mode 100644 routes/web.php create mode 100644 tests/CreatesApplication.php create mode 100644 tests/Feature/ExampleTest.php create mode 100644 tests/TestCase.php create mode 100644 tests/Unit/ExampleTest.php create mode 100644 vite.config.js diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8f0de65 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 + +[docker-compose.yml] +indent_size = 4 diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..478972c --- /dev/null +++ b/.env.example @@ -0,0 +1,58 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_URL=http://localhost + +LOG_CHANNEL=stack +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=laravel +DB_USERNAME=root +DB_PASSWORD= + +BROADCAST_DRIVER=log +CACHE_DRIVER=file +FILESYSTEM_DISK=local +QUEUE_CONNECTION=sync +SESSION_DRIVER=file +SESSION_LIFETIME=120 + +MEMCACHED_HOST=127.0.0.1 + +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=smtp +MAIL_HOST=mailpit +MAIL_PORT=1025 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_ENCRYPTION=null +MAIL_FROM_ADDRESS="hello@example.com" +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false + +PUSHER_APP_ID= +PUSHER_APP_KEY= +PUSHER_APP_SECRET= +PUSHER_HOST= +PUSHER_PORT=443 +PUSHER_SCHEME=https +PUSHER_APP_CLUSTER=mt1 + +VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}" +VITE_PUSHER_HOST="${PUSHER_HOST}" +VITE_PUSHER_PORT="${PUSHER_PORT}" +VITE_PUSHER_SCHEME="${PUSHER_SCHEME}" +VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" diff --git a/.ftpquota b/.ftpquota new file mode 100644 index 0000000..1a88327 --- /dev/null +++ b/.ftpquota @@ -0,0 +1 @@ +22470 1816711573 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..7dbbf41 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +* text=auto + +*.blade.php diff=html +*.css diff=css +*.html diff=html +*.md diff=markdown +*.php diff=php + +/.github export-ignore +CHANGELOG.md export-ignore +.styleci.yml export-ignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bdee92c --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +/node_modules +/public/build +/public/hot +/public/storage +/storage/*.key +/vendor +.env +.env.backup +.env.production +.phpunit.result.cache +Homestead.json +Homestead.yaml +auth.json +npm-debug.log +yarn-error.log +/.fleet +/.idea +/.vscode +/public/uploads +/public +/storage \ No newline at end of file diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..442f77c --- /dev/null +++ b/.htaccess @@ -0,0 +1,69 @@ + + + Options -MultiViews -Indexes + + + # block files which needs to be hidden, specify .example extension of the file + + Order allow,deny + Deny from all + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + + +# BEGIN cPanel-generated php ini directives, do not edit +# Manual editing of this file may result in unexpected behavior. +# To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor) +# For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI) + + php_flag display_errors Off + php_value max_execution_time 300 + php_value max_input_time 120 + php_value max_input_vars 1000 + php_value memory_limit 128M + php_value post_max_size 100M + php_value session.gc_maxlifetime 1440 + php_value session.save_path "/var/cpanel/php/sessions/ea-php81" + php_value upload_max_filesize 100M + php_flag zlib.output_compression Off + + + php_flag display_errors Off + php_value max_execution_time 300 + php_value max_input_time 120 + php_value max_input_vars 1000 + php_value memory_limit 128M + php_value post_max_size 100M + php_value session.gc_maxlifetime 1440 + php_value session.save_path "/var/cpanel/php/sessions/ea-php81" + php_value upload_max_filesize 100M + php_flag zlib.output_compression Off + +# END cPanel-generated php ini directives, do not edit + + +order allow,deny +allow from all + + +# php -- BEGIN cPanel-generated handler, do not edit +# Set the “ea-php81” package as the default “PHP” programming language. + + AddHandler application/x-httpd-ea-php81 .php .php8 .phtml + +# php -- END cPanel-generated handler, do not edit diff --git a/.htaccess_old b/.htaccess_old new file mode 100644 index 0000000..997a9b8 --- /dev/null +++ b/.htaccess_old @@ -0,0 +1,8 @@ + + +# php -- BEGIN cPanel-generated handler, do not edit +# Set the “ea-php81” package as the default “PHP” programming language. + + AddHandler application/x-httpd-ea-php81 .php .php8 .phtml + +# php -- END cPanel-generated handler, do not edit diff --git a/.user.ini b/.user.ini new file mode 100644 index 0000000..cccf5c9 --- /dev/null +++ b/.user.ini @@ -0,0 +1,16 @@ +; cPanel-generated php ini directives, do not edit +; Manual editing of this file may result in unexpected behavior. +; To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor) +; For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI) + +[PHP] +display_errors = Off +max_execution_time = 300 +max_input_time = 120 +max_input_vars = 1000 +memory_limit = 128M +post_max_size = 100M +session.gc_maxlifetime = 1440 +session.save_path = "/var/cpanel/php/sessions/ea-php81" +upload_max_filesize = 100M +zlib.output_compression = Off diff --git a/README.md b/README.md new file mode 100644 index 0000000..3ed385a --- /dev/null +++ b/README.md @@ -0,0 +1,66 @@ +

Laravel Logo

+ +

+Build Status +Total Downloads +Latest Stable Version +License +

+ +## About Laravel + +Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: + +- [Simple, fast routing engine](https://laravel.com/docs/routing). +- [Powerful dependency injection container](https://laravel.com/docs/container). +- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. +- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). +- Database agnostic [schema migrations](https://laravel.com/docs/migrations). +- [Robust background job processing](https://laravel.com/docs/queues). +- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). + +Laravel is accessible, powerful, and provides tools required for large, robust applications. + +## Learning Laravel + +Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. + +You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch. + +If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 2000 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. + +## Laravel Sponsors + +We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell). + +### Premium Partners + +- **[Vehikl](https://vehikl.com/)** +- **[Tighten Co.](https://tighten.co)** +- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** +- **[64 Robots](https://64robots.com)** +- **[Cubet Techno Labs](https://cubettech.com)** +- **[Cyber-Duck](https://cyber-duck.co.uk)** +- **[Many](https://www.many.co.uk)** +- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)** +- **[DevSquad](https://devsquad.com)** +- **[Curotec](https://www.curotec.com/services/technologies/laravel/)** +- **[OP.GG](https://op.gg)** +- **[WebReinvent](https://webreinvent.com/?utm_source=laravel&utm_medium=github&utm_campaign=patreon-sponsors)** +- **[Lendio](https://lendio.com)** + +## Contributing + +Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). + +## Code of Conduct + +In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). + +## Security Vulnerabilities + +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. + +## License + +The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). diff --git a/app/Console/Commands/DeleteNotification.php b/app/Console/Commands/DeleteNotification.php new file mode 100644 index 0000000..754af54 --- /dev/null +++ b/app/Console/Commands/DeleteNotification.php @@ -0,0 +1,44 @@ +subDays(3); + NotificationUser::where('created_at','<',$threeDaysAgo)->delete(); + + $this->info('Old notifications deleted successfully.'); + } +} diff --git a/app/Console/Commands/MoodOMeterNotification.php b/app/Console/Commands/MoodOMeterNotification.php new file mode 100644 index 0000000..b99f6a7 --- /dev/null +++ b/app/Console/Commands/MoodOMeterNotification.php @@ -0,0 +1,54 @@ +title = "Send Your Daily Mood O Meter"; + $notification_master->messages = "Mood-O-Meter"; + $notification_master->save(); + + $notification_id = $notification_master->id; + + foreach ($user as $user_data){ + + $notification_user = new NotificationUser; + $notification_user->notification_id = $notification_id; + $notification_user->user_id = $user_data->id; + $notification_user->save(); + } + + $this->info('Mood-O-Meter Notification Send succefully'); + } +} diff --git a/app/Console/Commands/PushNotification.php b/app/Console/Commands/PushNotification.php new file mode 100644 index 0000000..926f78e --- /dev/null +++ b/app/Console/Commands/PushNotification.php @@ -0,0 +1,64 @@ + [$playerId], + 'included_segments'=>[ 'All'], + 'contents' => ['en' => $message], + 'headings' => ['en' => $title], + 'isAndroid'=> true, + 'content_available' => true, + // 'data' => [ + // 'content_type' => $content_type, + // 'id' => $id, + // ], + // 'big_picture' => $imageUrl, + // 'app_id' => env('ONE_SIGNAL_APP_ID'), + // 'authorization' => env('ONE_SIGNAL_AUTHORIZE') + ]; + + $result = OneSignal::sendPush($fields); + } +} diff --git a/app/Console/Commands/StepsCountPoint.php b/app/Console/Commands/StepsCountPoint.php new file mode 100644 index 0000000..d715bee --- /dev/null +++ b/app/Console/Commands/StepsCountPoint.php @@ -0,0 +1,37 @@ +// toDateString(); +// $dailyStepCount = DailyStepsCount::where('date',$date)->get(); + +// if($dailyStepCount){ +// foreach($dailyStepCount as $count){ + +// $steps = $count->step_count; +// $points = intval(floor($steps/1000)); +// $user_id = $count->user_id; +// $leaderboardMaster = LeaderboardMaster::where('user_id', $user_id)->first(); +// if ($leaderboardMaster) { + +// $leaderboardMaster->total_score += $points; +// $leaderboardMaster->save(); +// } + +// } +// $this->info('Points Added Successfully'); +// } +// } +// } diff --git a/app/Console/Commands/StoreMonthlyPositions.php b/app/Console/Commands/StoreMonthlyPositions.php new file mode 100644 index 0000000..96a34c2 --- /dev/null +++ b/app/Console/Commands/StoreMonthlyPositions.php @@ -0,0 +1,67 @@ +format('Y'); +// $currentYear = 2023; + $currentMonth = now()->format('m'); +// $currentMonth = 4; + $users = User::all(); + foreach ($users as $user) { + $userId = $user->id; + $user_list = LeaderboardMaster::orderBy('total_score', 'desc')->get(); + + $position = null; + + foreach ($user_list as $index => $user){ + if($user->user_id == $userId){ + $position = $index + 1; + break; + } + } + if (isset($position)) { + $monthDate = Carbon::createFromDate($currentYear, $currentMonth, 1)->format('Y-m'); + + MonthlyPosition::updateOrCreate([ + 'user_id' => $userId, + 'month' => $monthDate, + ], [ + 'position' => $position, + ]); + } + } + + + $this->info('Users Position Stored Successfully!'); +// return Command::SUCCESS; + } +} diff --git a/app/Console/Commands/UpdateTableColumnCommand.php b/app/Console/Commands/UpdateTableColumnCommand.php new file mode 100644 index 0000000..ea75421 --- /dev/null +++ b/app/Console/Commands/UpdateTableColumnCommand.php @@ -0,0 +1,35 @@ +update(['is_active' => '1']); + + $this->info('Table column updated successfully.'); + } +} diff --git a/app/Console/Commands/UpdateUserRanking.php b/app/Console/Commands/UpdateUserRanking.php new file mode 100644 index 0000000..ca5c176 --- /dev/null +++ b/app/Console/Commands/UpdateUserRanking.php @@ -0,0 +1,39 @@ +call(function () { + $client = new \GuzzleHttp\Client(); + $response = $client->get('http://gsf.betadelivery.com/api/getUserRanking'); + // Handle the API response as needed +// $statusCode = $response->getStatusCode(); + // ... + })->everyMinute(); + } +} diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php new file mode 100644 index 0000000..cc72815 --- /dev/null +++ b/app/Console/Kernel.php @@ -0,0 +1,46 @@ +command('update:column')->dailyAt('09:00')->timezone('Asia/Kolkata'); + $schedule->command('positions:store-monthly')->lastOfMonth('23:59'); + $schedule->command('mood-o-meter:send-daily')->dailyAt('09:00')->timezone('Asia/Kolkata'); + $schedule->command('delete:old-notification')->daily(); + $schedule->command('send:notification_daily')->dailyAt('07:00')->timezone('Asia/Kolkata'); + } + + /** + * Register the commands for the application. + * + * @return void + */ + protected function commands() + { + $this->load(__DIR__.'/Commands'); + + require base_path('routes/console.php'); + } +} diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php new file mode 100644 index 0000000..82a37e4 --- /dev/null +++ b/app/Exceptions/Handler.php @@ -0,0 +1,50 @@ +, \Psr\Log\LogLevel::*> + */ + protected $levels = [ + // + ]; + + /** + * A list of the exception types that are not reported. + * + * @var array> + */ + protected $dontReport = [ + // + ]; + + /** + * A list of the inputs that are never flashed to the session on validation exceptions. + * + * @var array + */ + protected $dontFlash = [ + 'current_password', + 'password', + 'password_confirmation', + ]; + + /** + * Register the exception handling callbacks for the application. + * + * @return void + */ + public function register() + { + $this->reportable(function (Throwable $e) { + // + }); + } +} diff --git a/app/Exports/DataExport.php b/app/Exports/DataExport.php new file mode 100644 index 0000000..4707f0e --- /dev/null +++ b/app/Exports/DataExport.php @@ -0,0 +1,74 @@ +start_date; + // dd($start_date); + $end_date = request()->end_date; + // dd($end_date); + $userData = UserOverView::select('id','user_id','muscle_rate','body_fat','skeletal_muscle', 'protein', 'bmr','water','age','weight','created_at')->with('userData')->whereBetween('created_at', [$start_date, $end_date])->get(); + // dd($userData); + if ($userData->isEmpty()) { + + return collect([ + [ + 'message' => 'No data found for the specified date.', + ] + ]); + } + + $formattedData = $userData->map(function ($userData, $index) { + + $user_name = isset($userData->userData) && isset($userData->userData) + ? $userData->userData->full_name : 'N/A'; + + return [ + 'id' => $index + 1, + 'user_id' => $user_name, + 'Muscle Rate' => $userData->muscle_rate, + 'Body Fat' => $userData->body_fat, + 'Skeletal Muscle' => $userData->skeletal_muscle, + 'Protein' => $userData->protein, + 'BMR' => $userData->bmr, + 'Water' => $userData->water, + 'Age' => $userData->age, + 'Weight' => $userData->weight, + 'Date' => Carbon::parse($userData->created_at)->format('Y-m-d'), + + ]; + }); + + return $formattedData; + } + + public function headings(): array + { + return [ + 'id', + 'Name', + 'Muscle Rate', + 'Body Fat', + 'Skeletal Muscle', + 'Protein', + 'BMR', + 'Water', + 'Age', + 'Weight', + 'Date' + ]; + } +} diff --git a/app/Exports/UsersExport.php b/app/Exports/UsersExport.php new file mode 100644 index 0000000..22d37a2 --- /dev/null +++ b/app/Exports/UsersExport.php @@ -0,0 +1,22 @@ +get(); +// echo "
"; print_r($userData);
+//         exit;
+         dd($userData);
+         return $userData;
+     
+    }
+}
diff --git a/app/Http/Controllers/API/AboutController.php b/app/Http/Controllers/API/AboutController.php
new file mode 100644
index 0000000..ab1c6b9
--- /dev/null
+++ b/app/Http/Controllers/API/AboutController.php
@@ -0,0 +1,24 @@
+user();
+
+            $aboutdata = ManageAboutUs::where($userid)->get();
+            return response([
+                'user' => $aboutdata,
+                    //  'token' => $user->createToken('secret')->plainTextToken
+                    ], 200);
+        }
+    }
+}
diff --git a/app/Http/Controllers/API/ContactController.php b/app/Http/Controllers/API/ContactController.php
new file mode 100644
index 0000000..7bf51ab
--- /dev/null
+++ b/app/Http/Controllers/API/ContactController.php
@@ -0,0 +1,51 @@
+user();
+//            $bankobj = new ContactUs;
+//            print_r($req->all());
+//            exit; 
+            $contactdata = array(
+            'user_id' => $token['sub'],
+            'name' => $req->name,
+            'email_id' => $req->email_id,
+            'contact_number' => $req->contact_number,
+            'subject' => $req->subject,
+            'type' => $req->type,
+            'message' => $req->message,
+            'is_reply' => '0',
+            'is_active' => '1',
+            );
+
+//            print_r($contactdata);
+//            exit;
+//            $userobj = User::find($user);
+            $data = ContactUs::create($contactdata);
+                      }
+            return response([
+                'status' => "Success",
+                    ], 200);
+//            return $data;
+        } catch (Exception $ex) {
+            return response([
+                'status' => "failed",
+                    ], 500);
+        }
+    }
+
+}
diff --git a/app/Http/Controllers/API/CreateNotificationOneSignalController.php b/app/Http/Controllers/API/CreateNotificationOneSignalController.php
new file mode 100644
index 0000000..6cadf82
--- /dev/null
+++ b/app/Http/Controllers/API/CreateNotificationOneSignalController.php
@@ -0,0 +1,26 @@
+player_id;
+        $heading = $request->heading;
+        $message = $request->content;
+        $client = new \GuzzleHttp\Client();
+        $response = $client->request('POST', 'https://onesignal.com/api/v1/notifications?app_id=1be4b99b-8faa-45b8-ad82-c66225d77bf4', [
+            'body' => '{"include_player_ids":["'.$player_id.'"],"headings":{"en":"'.$heading.'"},"contents":{"en":"'.$message.'"},"name":"INTERNAL_CAMPAIGN_NAME"}',
+            'headers' => [
+                'Authorization' => 'Basic MWM2NGEyODUtN2U5MS00MzlkLWJhYmItZGUyODRjYTlmNGJm',
+                'accept' => 'application/json',
+                'content-type' => 'application/json',
+            ],
+        ]);
+        $resBody = $response->getBody();
+        return $resBody;
+    }
+}
diff --git a/app/Http/Controllers/API/DietPlanController.php b/app/Http/Controllers/API/DietPlanController.php
new file mode 100644
index 0000000..702761d
--- /dev/null
+++ b/app/Http/Controllers/API/DietPlanController.php
@@ -0,0 +1,68 @@
+diet_categories;
+
+            // Retrieve the user's bmr from UserOverview table
+            $userOverview = UserOverview::where('user_id', $user_id)
+                ->orderBy('id', 'desc')
+                ->first();
+            // dd($userOverview);
+            $bmr = $userOverview->bmr;
+            $bmrInt = intval($bmr);
+
+            // Retrieve diet plans based on filters and bmr range
+            $query = DietPlan::query();
+
+            // Apply filters
+            if ($filters && in_array($filters, ['Veg', 'Non-Veg'])) {
+                $query->where('diet_categories', '=', $filters);
+            }
+
+            // Apply bmr range filter
+            $query->where('bmr_range_from', '<=', $bmrInt)
+                  ->where('bmr_range_to', '>=', $bmrInt);
+
+            // Add more filter conditions if needed
+
+            $manage_diet_plan = $query->get()->toArray();
+            
+            
+            return response()->json([
+                'success' => true,
+                'message' => 'Data fetched successfully.',
+                'result' => $manage_diet_plan
+            ]);
+        } else {
+            return response()->json([
+                'success' => false,
+                'message' => 'Authentication failed.',
+            ]);
+        }
+    } catch (\Exception $e) {
+        \Log::error("Activity data listing failed: " . $e->getMessage());
+        return response()->json([
+            'success' => false,
+            'message' => 'Something went wrong.',
+        ]);
+    }
+}
+
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/API/FaqController.php b/app/Http/Controllers/API/FaqController.php
new file mode 100644
index 0000000..60272d8
--- /dev/null
+++ b/app/Http/Controllers/API/FaqController.php
@@ -0,0 +1,24 @@
+where('is_active','1')->get();
+            return response([
+            'user' => $faqdata,
+                //  'token' => $user->createToken('secret')->plainTextToken
+                ], 200);
+        }       
+    
+    }  
+}
diff --git a/app/Http/Controllers/API/GetAppVersionCotroller.php b/app/Http/Controllers/API/GetAppVersionCotroller.php
new file mode 100644
index 0000000..1d72247
--- /dev/null
+++ b/app/Http/Controllers/API/GetAppVersionCotroller.php
@@ -0,0 +1,56 @@
+old_version_android;
+            $appOlderVersionIOS = $request->old_version_ios;
+            
+            if($appOlderVersionAndroi){
+                $version = AppVersion::updateOrCreate(['user_id'=>$user_id],['old_version_android'=>$appOlderVersionAndroi]);
+            }else{
+                $version = AppVersion::updateOrCreate(['user_id'=>$user_id],['old_version_ios'=>$appOlderVersionIOS]);
+            }
+            if($version){
+                return response(['status' => "Success"], 200);    
+            }
+            
+            
+        }
+        
+    }
+    
+    public function getNewVersion(){
+        $token = readHeaderToken();
+        if ($token) {
+            $user_id = $token['sub'];
+            
+            $newVersion = AppVersion::where('user_id',$user_id)->first();
+            return response(['result' => $newVersion,'status'=>"Success",'message'=>"Data Fetch Successfully"]);
+        }
+    }
+    
+    public function updateAppVersion(Request $request){
+        
+        $allData = AppVersion::all();
+        
+        $ios = $request->new_version_ios;
+        $android = $request->new_version_android;
+        if($ios){
+            AppVersion::update(['new_version_ios'=>$ios]);
+        }elseif($android){
+            AppVersion::update(['new_version_ios'=>$android]);
+        }
+        
+        
+    }
+}
diff --git a/app/Http/Controllers/API/LeaderBordMasterContoller.php b/app/Http/Controllers/API/LeaderBordMasterContoller.php
new file mode 100644
index 0000000..c92ac2f
--- /dev/null
+++ b/app/Http/Controllers/API/LeaderBordMasterContoller.php
@@ -0,0 +1,830 @@
+get();
+//                return response()->json([
+//                            'success' => true,
+//                            'user_ranking' => $userRanking,
+//                            'message' => 'Data Fetch Successfully!.',
+//                ]);
+//            } else {
+//                return response()->json([
+//                            'success' => false,
+//                            'message' => 'Authentication failed.',
+//                ]);
+//            }
+//        } catch (\Exception $e) {
+//            \Log::error("User ranking retrieval failed: " . $e->getMessage());
+//            return response()->json([
+//                        'success' => false,
+//                        'message' => 'Something went wrong.',
+//            ]);
+//        }
+//    }
+
+    public function get_user_ranking($sortOrder = 'desc') {
+    try {
+        $token = readHeaderToken();
+        if ($token) {
+            $user_id = $token['sub'];
+
+            // Retrieve the user's ranking and related user details
+            $userRanking = LeaderboardMaster::with('user', 'user_data')
+                ->orderBy('total_score', $sortOrder)
+                ->get();
+
+            return response()->json([
+                'success' => true,
+                'user_ranking' => $userRanking,
+                'message' => 'Data Fetch Successfully!.',
+            ]);
+        } else {
+            return response()->json([
+                'success' => false,
+                'message' => 'Authentication failed.',
+            ]);
+        }
+    } catch (\Exception $e) {
+        \Log::error("User ranking retrieval failed: " . $e->getMessage());
+        return response()->json([
+            'success' => false,
+            'message' => 'Something went wrong.',
+        ]);
+    }
+}
+
+    public function get_user_gender(Request $request) {
+    try {
+        $token = readHeaderToken();
+        if ($token) {
+            $user_id = $token['sub'];
+            
+            $filters = $request->gender; 
+              $query = LeaderboardMaster::with(['user', 'user_data']);
+            
+            // Apply filters
+            if ($filters && in_array($filters, ['male', 'female'])) {
+                $query->whereHas('user_data', function ($query) use ($filters) {
+                    $query->where('gender', '=', $filters);
+                });
+            }
+            // Add more filter conditions if needed
+            
+            $manage_activity = $query->get()->toArray();
+           
+            return response()->json([
+                'success' => true,
+                'message' => 'Data fetched successfully.',
+                'result' => $manage_activity
+            ]);
+        } else {
+            return response()->json([
+                'success' => false,
+                'message' => 'Authentication failed.',
+            ]);
+        }
+    } catch (\Exception $e) {
+        \Log::error("Activity data listing failed: " . $e->getMessage());
+        return response()->json([
+            'success' => false,
+            'message' => 'Something went wrong.',
+        ]);
+    }
+}
+    
+    public function get_user_group_level(Request $request) {
+        try {
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+
+                $groupLevelFilter = $request->input('group_level');
+
+                $elites = null;
+                $gameChangers = null;
+                $underdogs = null;
+                
+                $elites_user_id = [];
+                if ($groupLevelFilter === 'elites') {
+                    $elites = GroupLevelElites();
+//                    print_r($elites['elites_user_id']);
+//                    exit;
+                } elseif ($groupLevelFilter === 'gameChangers') {
+
+                    $gameChangers = GroupLevelGameChanger();
+                } elseif ($groupLevelFilter === 'underdogs') {
+                    $underdogs_user_id = [];
+                    $game_changer_data = GroupLevelGameChanger();
+                    $users_id = $game_changer_data['all_top_users_id'];
+                    $underdog = LeaderboardMaster::whereNotIn('user_id', $users_id)->orderBy('total_score', 'desc')->get();
+                    foreach ($underdog as $k => $val){
+                        $underdogs_user_id[] = $val->user_id;
+                    }
+                    // dd($underdogs_user_id);
+                    
+                    $underdogs['underdogs'] = $underdog;
+                    $underdogs['underdogs_user_id'] = $underdogs_user_id;
+                } else {
+                    // Invalid group level filter
+                    return response()->json([
+                                'success' => false,
+                                'message' => 'Invalid group level filter.',
+                    ]);
+                }
+
+                return [
+                    'elites' => $elites,
+                    'gameChangers' => $gameChangers,
+                    'underdogs' => $underdogs,
+                ];
+            }
+        } catch (\Exception $e) {
+            \Log::error("Activity data listing failed: " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something went wrong.',
+            ]);
+        }
+    }
+
+//    public function filter_users(Request $request) {
+//        try {
+//            $token = readHeaderToken();
+//            if ($token) {
+//                $user_id = $token['sub'];
+//
+//                $filters = $request->input('gender');
+//                $groupLevelFilter = $request->input('group_level');
+//
+//                $query = LeaderboardMaster::with(['user', 'user_data']);
+//
+//                // Apply gender filter
+//                if ($filters && in_array($filters, ['male', 'female'])) {
+//                    $query->whereHas('user_data', function ($query) use ($filters) {
+//                        $query->where('gender', '=', $filters);
+//                    });
+//                } elseif ($filters !== null) {
+//                    // Invalid gender filter
+//                    return response()->json([
+//                                'success' => false,
+//                                'message' => 'Invalid gender filter.',
+//                    ]);
+//                }
+//                // Apply group level filter
+//                $elites = null;
+//                $gameChangers = null;
+//                $underdogs = null;
+//                $elites_user_id = [];
+//
+//                if ($groupLevelFilter === 'elites') {
+//                    $elites = GroupLevelElites();
+//
+//                    // Filter by gender
+//                    if ($filters && in_array($filters, ['male', 'female'])) {
+//                        $elites = array_filter($elites, function ($elite) use ($filters) {
+//                            return $elite['gender'] === $filters;
+//                        });
+//                    }
+//                } elseif ($groupLevelFilter === 'gameChangers') {
+//                    $gameChangers = GroupLevelGameChanger();
+//
+//                    // Filter by gender
+//                    if ($filters && in_array($filters, ['male', 'female'])) {
+//                        $gameChangers = array_filter($gameChangers, function ($gameChanger) use ($filters) {
+//                            return $gameChanger['gender'] === $filters;
+//                        });
+//                    }
+//                } elseif ($groupLevelFilter === 'underdogs') {
+//                    $game_changer_data = GroupLevelGameChanger();
+//                    $users_id = $game_changer_data['all_top_users_id'];
+//                    $query->whereNotIn('user_id', $users_id)->orderBy('total_score', 'desc');
+//
+//                    // Apply gender filter
+//if ($filters && in_array($filters, ['male', 'female'])) {
+//    $query->whereHas('user_data', function ($query) use ($filters) {
+//        $query->where('gender', '=', $filters);
+//    });
+//} elseif ($filters !== null) {
+//    // Invalid gender filter
+//    return response()->json([
+//        'success' => false,
+//        'message' => 'Invalid gender filter.',
+//    ]);
+//}
+//
+//                $users = $query->get()->toArray();
+//
+//                return response()->json([
+//                            'success' => true,
+//                            'message' => 'Data fetched successfully.',
+//                            'result' => [
+//                                'users' => $users,
+//                                'elites' => $elites,
+//                                'gameChangers' => $gameChangers,
+//                                'underdogs' => $underdogs,
+//                            ],
+//                ]);
+//            } else {
+//                return response()->json([
+//                            'success' => false,
+//                            'message' => 'Authentication failed.',
+//                ]);
+//            }
+//        }
+//        }catch (\Exception $e) {
+//            \Log::error("User filtering failed: " . $e->getMessage());
+//            return response()->json([
+//                        'success' => false,
+//                        'message' => 'Something went wrong.',
+//            ]);
+//        }
+//    }
+
+    public function get_user_data(Request $request)
+    {
+        try {
+           
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                //get user data for check gender and group level
+                $user = User::with('user_detail')->find($user_id);
+
+                //request inputs
+                $sortOrder = $request->input('sort_order');
+                $gender = "all";
+                
+                // if($gender != "all"){
+                //     $gender = $request->input('gender');
+                // }
+                // else{
+                //     $gender = "all";
+                // }
+                $groupLevelFilter = $request->input('group_level');
+
+                // Retrieve the user's ranking and related user details
+                $query = LeaderboardMaster::with('user', 'user_data','user.stepCount');
+                
+                // for gender
+                // $gender = "all";
+                if($request->has('gender')){
+                    $gender = $request->input('gender');
+                    // Apply gender filter
+                    if ($gender != "all") {
+                        $query->whereHas('user_data', function ($query) use ($gender) {
+                            $query->where('gender', '=', $gender);
+                        });
+                    }
+                }
+                // else{
+
+                //     $gender = $user->user_detail->gender;
+                //     if($gender){
+                //         if ($gender && in_array($gender, ['male', 'female'])) {
+                //             $query->whereHas('user_data', function ($query) use ($gender) {
+                //                 $query->where('gender', '=', $gender);
+                //             });
+                //         }
+                //     }
+                // }
+                //for group level
+                $elite = GroupLevelElites();
+                $game_changer = GroupLevelGameChanger();
+                $flattenedEliteArray = Arr::flatten($elite['elites_user_id']);
+                $flattenedGameChangerArray = Arr::flatten($game_changer['all_top_users_id']);
+                $filteredGameChangerArray = array_diff($flattenedGameChangerArray, $flattenedEliteArray);
+                
+                if($request->has('group_level')){
+                    if ($groupLevelFilter === 'elites') {
+                        // Apply elites filter
+                        $group_level = "elites";
+                        $query->whereIn('user_id', $flattenedEliteArray);
+                    } elseif ($groupLevelFilter === 'gameChangers') {
+                        // Apply gameChangers filter
+                        $group_level = "gameChangers";
+                        $query->whereIn('user_id', $filteredGameChangerArray);
+                    } elseif ($groupLevelFilter === 'underdogs') {
+                        // Apply underdogs filter
+                        $group_level = "underdogs";
+                        $query->whereNotIn('user_id', $flattenedGameChangerArray);
+                    } else {
+                        return response()->json([
+                                    'success' => false,
+                                    'message' => 'Invalid group level filter.',
+                        ]);
+                    }
+                }
+                else{
+                    if (in_array($user_id, $flattenedEliteArray)) {
+                        $group_level = "elites";
+                        $query->whereIn('user_id', $flattenedEliteArray);
+                    } elseif (in_array($user_id, $filteredGameChangerArray)) {
+                        $group_level = "gameChangers";
+                        $query->whereIn('user_id', $filteredGameChangerArray);
+                    } else {
+                        $group_level = "underdogs";
+                        $query->whereNotIn('user_id', $flattenedGameChangerArray);
+                    }
+                }
+                // Apply sorting
+                if ($sortOrder === 'asc') {
+                    $query->orderBy('total_score', 'asc');
+                } else {
+                    $query->orderBy('total_score', 'desc');
+                }
+                //final query
+                $user_data = $query->get()->toArray();
+                
+                return response()->json([
+                    'success' => true,
+//                    'user_data' => $user_data,
+                    'message' => 'Data Fetch Successfully!.',
+                    'user_data' => $user_data,
+                    'gender' => $gender,
+                    'group_level' => $group_level
+                ]);
+
+
+            } else {
+                return response()->json([
+                    'success' => false,
+                    'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("Data retrieval failed: " . $e->getMessage());
+            return response()->json([
+                'success' => false,
+                'message' => 'Something went wrong.',
+            ]);
+        }
+    }
+    
+    public function get_user_data_new(Request $request)
+    {
+        // try {
+           
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                // Get user data to check gender and group level
+                $user = User::with('user_detail')->find($user_id);
+            
+                // Request inputs
+                $sortOrder = $request->input('sort_order');
+                $gender = "all";
+                $groupLevelFilter = $request->input('group_level');
+            
+                // Retrieve the user's ranking and related user details
+                $query = LeaderboardMaster::with([
+                    'user', 
+                    'user_data', 
+                    'user.latestStepCount'
+                ]);
+            
+                // Apply gender filter if present
+                if ($request->has('gender')) {
+                    $gender = $request->input('gender');
+                    if ($gender != "all") {
+                        $query->whereHas('user_data', function ($query) use ($gender) {
+                            $query->where('gender', '=', $gender);
+                        });
+                    }
+                }
+            
+                // Group level filtering logic
+                $elite = GroupLevelElites();
+                $game_changer = GroupLevelGameChanger();
+                $flattenedEliteArray = Arr::flatten($elite['elites_user_id']);
+                $flattenedGameChangerArray = Arr::flatten($game_changer['all_top_users_id']);
+                $filteredGameChangerArray = array_diff($flattenedGameChangerArray, $flattenedEliteArray);
+            
+                if ($request->has('group_level')) {
+                    if ($groupLevelFilter === 'elites') {
+                        $group_level = "elites";
+                        $query->whereIn('user_id', $flattenedEliteArray);
+                    } elseif ($groupLevelFilter === 'gameChangers') {
+                        $group_level = "gameChangers";
+                        $query->whereIn('user_id', $filteredGameChangerArray);
+                    } elseif ($groupLevelFilter === 'underdogs') {
+                        $group_level = "underdogs";
+                        $query->whereNotIn('user_id', $flattenedGameChangerArray);
+                    } else {
+                        return response()->json([
+                            'success' => false,
+                            'message' => 'Invalid group level filter.',
+                        ]);
+                    }
+                } else {
+                    if (in_array($user_id, $flattenedEliteArray)) {
+                        $group_level = "elites";
+                        $query->whereIn('user_id', $flattenedEliteArray);
+                    } elseif (in_array($user_id, $filteredGameChangerArray)) {
+                        $group_level = "gameChangers";
+                        $query->whereIn('user_id', $filteredGameChangerArray);
+                    } else {
+                        $group_level = "underdogs";
+                        $query->whereNotIn('user_id', $flattenedGameChangerArray);
+                    }
+                }
+            
+                // Apply sorting
+                if ($sortOrder === 'asc') {
+                    $query->orderBy('total_score', 'asc');
+                } else {
+                    $query->orderBy('total_score', 'desc');
+                }
+            
+                // Fetch the query results
+                $leaderboardData = $query->get();
+            
+                // Transform the latest step count to a single element array
+                $leaderboardData->each(function ($item) {
+                    $user = $item->user;
+                    if ($user) {
+                        // $user->append('latestStepCountArray');
+                        $user->setHidden(['latestStepCount']);
+                        $user->latest_step_count = $user->latest_step_count_array;
+                    }
+                });
+            
+                // Convert the collection to an array
+                $user_data = $leaderboardData->toArray();
+            
+                return response()->json([
+                    'success' => true,
+                    'message' => 'Data Fetch Successfully!',
+                    'user_data' => $user_data,
+                    'gender' => $gender,
+                    'group_level' => $group_level
+                ]);
+            } else {
+                return response()->json([
+                    'success' => false,
+                    'message' => 'Authentication failed.',
+                ]);
+            }
+
+        // } catch (\Exception $e) {
+        //     \Log::error("Data retrieval failed pd: " . $e->getMessage());
+        //     return response()->json([
+        //         'success' => false,
+        //         'message' => 'Something went wrong.',
+        //     ]);
+        // }
+    }
+    
+    public function get_user_data_home(Request $request)
+    {
+        try {
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                //get user data for check gender and group level
+                $user = User::with('user_detail')->find($user_id);
+
+                //request inputs
+                $sortOrder = $request->input('sort_order');
+                $gender = "all";
+                
+                // if($gender != "all"){
+                //     $gender = $request->input('gender');
+                // }
+                // else{
+                //     $gender = "all";
+                // }
+                $groupLevelFilter = $request->input('group_level');
+
+                // Retrieve the user's ranking and related user details
+                $query = LeaderboardMaster::with('user', 'user_data');
+                
+                // for gender
+                // $gender = "all";
+                if($request->has('gender')){
+                    $gender = $request->input('gender');
+                    // Apply gender filter
+                    if ($gender != "all") {
+                        $query->whereHas('user_data', function ($query) use ($gender) {
+                            $query->where('gender', '=', $gender);
+                        });
+                    }
+                }
+                // else{
+
+                //     $gender = $user->user_detail->gender;
+                //     if($gender){
+                //         if ($gender && in_array($gender, ['male', 'female'])) {
+                //             $query->whereHas('user_data', function ($query) use ($gender) {
+                //                 $query->where('gender', '=', $gender);
+                //             });
+                //         }
+                //     }
+                // }
+                //for group level
+                $elite = GroupLevelElites();
+                $game_changer = GroupLevelGameChanger();
+                $flattenedEliteArray = Arr::flatten($elite['elites_user_id']);
+                $flattenedGameChangerArray = Arr::flatten($game_changer['all_top_users_id']);
+                $filteredGameChangerArray = array_diff($flattenedGameChangerArray, $flattenedEliteArray);
+                
+                if($request->has('group_level')){
+                    if ($groupLevelFilter === 'elites') {
+                        // Apply elites filter
+                        $group_level = "elites";
+                        $query->whereIn('user_id', $flattenedEliteArray);
+                    } elseif ($groupLevelFilter === 'gameChangers') {
+                        // Apply gameChangers filter
+                        $group_level = "gameChangers";
+                        $query->whereIn('user_id', $filteredGameChangerArray);
+                    } elseif ($groupLevelFilter === 'underdogs') {
+                        // Apply underdogs filter
+                        $group_level = "underdogs";
+                        $query->whereNotIn('user_id', $flattenedGameChangerArray);
+                    } else {
+                        return response()->json([
+                                    'success' => false,
+                                    'message' => 'Invalid group level filter.',
+                        ]);
+                    }
+                }
+                else{
+                    if (in_array($user_id, $flattenedEliteArray)) {
+                        $group_level = "elites";
+                        $query->whereIn('user_id', $flattenedEliteArray);
+                    } elseif (in_array($user_id, $filteredGameChangerArray)) {
+                        $group_level = "gameChangers";
+                        $query->whereIn('user_id', $filteredGameChangerArray);
+                    } else {
+                        $group_level = "underdogs";
+                        $query->whereNotIn('user_id', $flattenedGameChangerArray);
+                    }
+                }
+                // Apply sorting
+                if ($sortOrder === 'asc') {
+                    $query->orderBy('total_score', 'asc');
+                } else {
+                    $query->orderBy('total_score', 'desc');
+                }
+                //final query
+                $user_data = $query->get()->toArray();
+                
+                return response()->json([
+                    'success' => true,
+//                    'user_data' => $user_data,
+                    'message' => 'Data Fetch Successfully!.',
+                    'user_data' => $user_data,
+                    'gender' => $gender,
+                    'group_level' => $group_level
+                ]);
+
+
+            } else {
+                return response()->json([
+                    'success' => false,
+                    'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("Data retrieval failed: " . $e->getMessage());
+            return response()->json([
+                'success' => false,
+                'message' => 'Something went wrong.',
+            ]);
+        }
+    }
+    
+    
+    public function ranking_position(){
+        
+        try {
+            $token = readHeaderToken();
+            
+            // $currentYear = now()->format('Y');
+            // $currentMonth = Carbon::now()->format('m');
+            // $monthDate = Carbon::createFromDate($currentYear, $currentMonth, 1)->format('Y-m');
+            
+            // $users = User::where('status', '1')->with('user_detail')->get();
+            
+            // $elite = GroupLevelElites();
+            // $game_changer = GroupLevelGameChanger();
+            
+            // $flattenedEliteArray = Arr::flatten($elite['elites_user_id']);
+            // $flattenedGameChangerArray = Arr::flatten($game_changer['all_top_users_id']);
+            // $filteredGameChangerArray = array_diff($flattenedGameChangerArray, $flattenedEliteArray);
+            
+            // $usersGroupedByLevel = [
+            //     1 => $flattenedEliteArray,
+            //     2 => $filteredGameChangerArray,
+            //     3 => array_diff($users->pluck('id')->toArray(), $flattenedGameChangerArray)
+            // ];
+            
+            // foreach ($users as $user) {
+            //     $userId = $user->id;
+            //     $group_level = null;
+                
+            //     foreach ($usersGroupedByLevel as $level => $userIds) {
+            //         if (in_array($userId, $userIds)) {
+            //             $group_level = $level;
+            //             $user_list = LeaderboardMaster::with('user', 'user_data')
+            //                 ->whereIn('user_id', $userIds)
+            //                 ->orderBy('total_score', 'desc')
+            //                 ->get();
+            //             break;
+            //         }
+            //     }
+                
+            //     $position = null;
+            //     foreach ($user_list as $index => $listedUser) {
+            //         if ($listedUser->user_id == $userId) {
+            //             $position = $index + 1;
+            //             break;
+            //         }
+            //     }
+                
+            //     $existingPositionRecord = MonthlyPosition::where([
+            //         'user_id' => $userId,
+            //         'month' => $monthDate,
+            //     ])->first();
+                
+            //     if ($existingPositionRecord) {
+            //         if ($existingPositionRecord->group_level >= $group_level &&
+            //             ($position < $existingPositionRecord->position || $group_level != $existingPositionRecord->group_level)) {
+                        
+            //             $existingPositionRecord->update([
+            //                 'position' => $position,
+            //                 'group_level' => $group_level,
+            //             ]);
+            //         }
+            //     } else {
+            //         MonthlyPosition::create([
+            //             'user_id' => $userId,
+            //             'month' => $monthDate,
+            //             'position' => $position,
+            //             'group_level' => $group_level,
+            //         ]);
+            //     }
+            // }
+            
+            return response()->json([
+                'success' => true,
+                'message' => 'Position Stored Successfully!.',
+            ]);
+        } catch (Exception $ex) {
+            Log::error("Data retrieval failed: " . $ex->getMessage());
+            return response()->json([
+                'success' => false,
+                'message' => 'Something went wrong.',
+            ]);
+        }
+    }
+    
+    public function get_user_position(){
+        
+        
+        try {
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $currentYear = now()->format('Y');
+                $yearStartDate = Carbon::createFromDate($currentYear, 1, 1)->format('Y-m-d');
+                $yearEndDate = Carbon::createFromDate($currentYear, 12, 31)->format('Y-m-d');
+
+                // Get all the data for the user for the entire current year
+                $user_monthly_positions = MonthlyPosition::whereBetween('month', [$yearStartDate, $yearEndDate])
+                    ->where('user_id', $user_id)
+                    ->orderBy('month', 'asc')
+                    ->get();
+
+                // Create empty records for missing months
+                $allMonths = collect([]);
+                $currentMonthDate = Carbon::createFromDate($currentYear, 1, 1);
+                for ($month = 1; $month <= 12; $month++) {
+                    $allMonths->push($currentMonthDate->format('Y-m'));
+                    $currentMonthDate->addMonth();
+                }
+
+                // Merge empty records for missing months into the original collection
+                $user_monthly_positions = $allMonths->map(function ($month) use ($user_monthly_positions, $user_id) {
+                    return $user_monthly_positions->firstWhere('month', $month) ?? new MonthlyPosition([
+                        'user_id' => $user_id,
+                        'month' => $month,
+                        'position' => null, // You can set a default value for the position here
+                    ]);
+                });
+
+                return response()->json([
+                    'success' => true,
+                    'message' => 'Data Fetch Successfully',
+                    'monthly_positions' => $user_monthly_positions,
+                ]);
+            }else {
+                return response()->json([
+                    'success' => false,
+                    'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (Exception $ex) {
+            \Log::error("Data retrieval failed: " . $ex->getMessage());
+            return response()->json([
+                'success' => false,
+                'message' => 'Something went wrong.',
+            ]);
+        }
+    }
+    
+    public function get_daily_user_position(){
+        
+        try {
+            
+            $token = readHeaderToken();
+            if ($token) {
+                
+                $userId = $token['sub'];
+                $user = User::with('user_detail')->find($userId);
+                // $user_list = LeaderboardMaster::orderBy('total_score', 'desc')->get();
+                $query = LeaderboardMaster::with('user', 'user_data');
+                //get gender
+                // $gender = $user->user_detail->gender;
+                // if($gender){
+                //     if ($gender && in_array($gender, ['male', 'female'])) {
+                //         $query->whereHas('user_data', function ($query) use ($gender) {
+                //             $query->where('gender', '=', $gender);
+                //         });
+                //     }
+                // }
+                //for group level
+                $elite = GroupLevelElites();
+                $game_changer = GroupLevelGameChanger();
+                $flattenedEliteArray = Arr::flatten($elite['elites_user_id']);
+                $flattenedGameChangerArray = Arr::flatten($game_changer['all_top_users_id']);
+                $filteredGameChangerArray = array_diff($flattenedGameChangerArray, $flattenedEliteArray);
+                
+                if (in_array($userId, $flattenedEliteArray)) {
+                        $group_level = "elites";
+                        $query->whereIn('user_id', $flattenedEliteArray);
+                    } elseif (in_array($userId, $filteredGameChangerArray)) {
+                        $group_level = "gameChangers";
+                        $query->whereIn('user_id', $filteredGameChangerArray);
+                    } else {
+                        $group_level = "underdogs";
+                        $query->whereNotIn('user_id', $flattenedGameChangerArray);
+                    }
+                
+                //final query
+                $user_list = $query->orderBy('total_score', 'desc')->get();
+                $position = null;
+
+                foreach ($user_list as $index => $user){
+                    if($user->user_id == $userId){
+                        $position = $index + 1;
+                        break;
+                    }
+                }
+                
+                return response()->json([
+
+                    'success' => true,
+                    'message' => 'Data Fetch Successfully',
+                    'daily_position' => $position,
+                    
+                ]);
+                
+            }else {
+                return response()->json([
+                    'success' => false,
+                    'message' => 'Authentication failed.',
+                ]);
+            }
+                
+        } catch (Exception $ex) {
+            \Log::error("Data retrieval failed: " . $ex->getMessage());
+            return response()->json([
+                'success' => false,
+                'message' => 'Something went wrong.',
+            ]);
+        }
+            
+    }
+}
diff --git a/app/Http/Controllers/API/LoginController.php b/app/Http/Controllers/API/LoginController.php
new file mode 100644
index 0000000..14a4e8f
--- /dev/null
+++ b/app/Http/Controllers/API/LoginController.php
@@ -0,0 +1,333 @@
+all(),[
+                    'email_id' => 'required|email',
+                    'password' => 'required|string|min:6'
+        ]);
+
+        $credentials = $request->only('email_id', 'password');
+        $token = Auth::guard('api')->attempt($credentials);
+        //   $token = auth('api')->attempt($credentials);
+        // dd("TOKEN",$token);
+        if (!$token) {
+            return response()->json([
+                        'success' => false,
+                'message' => 'Wrong Creditials',
+                'status'=>401,
+                            ], 401);
+        }
+
+        $user = Auth::guard('api')->user();
+        
+        // dd($user->end_date);
+        $todays_date = Carbon::now()->toDateString();
+        // dd($todays_date);
+        $endDate = Carbon::parse($user->end_date);
+        $startDate = Carbon::parse($user->start_date)->toDateString();
+        $subscriptionEndsIn7Days = $endDate->addDays(7)->toDateString();
+        if($subscriptionEndsIn7Days == null || $subscriptionEndsIn7Days < $todays_date){
+            $logout = auth('api')->logout();
+            return response()->json([
+                'success' => false,
+                'message' => 'Subscription end',
+                'status'=>201,], 201);
+        }
+        if($startDate > $todays_date){
+            $logout = auth('api')->logout();
+            return response()->json([
+                'success' => false,
+                'message' => 'Subscription end',
+                'status'=>201,], 201);
+        }
+        $personalAccessToken = new PersonalAccessToken();
+        $personalAccessToken->user_id = $user->id;
+        $personalAccessToken->token = $token;
+        $personalAccessToken->last_login = Carbon::now()->format('Y-m-d H:i:s');
+        $personalAccessToken->save();
+
+        //moodometer add data
+         $existingRecord = mood_o_meter::where('user_id', $user->id)->exists();
+        if (!$existingRecord) {
+            // Create a new mood record
+            $newEntry = mood_o_meter::create([
+                        'user_id' => $user->id,
+                        'mood_o_meter' => null,
+                        'is_active' => '1',
+            ]);
+        }
+        
+        //Leaderboard add data
+         $existingRecord = LeaderboardMaster::where('user_id', $user->id)->exists();
+        if (!$existingRecord) {
+            // Create a new leaderbaord record
+            $newEntry = LeaderboardMaster::create([
+                        'user_id' => $user->id,
+                        'total_score' => '0',
+                        'progress_bar' => '0',
+                
+            ]);
+        }
+        
+         $user = User::with('user_detail')->where('id', $user->id)->first()->toArray();
+//        $user = User::select('id','full_name','contact_number','email_id','status')->where('id',$user->id)->first()->toArray();
+        return response()->json([
+                    'success' => true,
+                    'status' => true,
+                'message'=> 'You are successfully logged in',
+                'authorisation' => [
+                        'token' => $token,
+                        'user_data' => $user,
+                        'type' => 'bearer',
+                    ]
+                        ], 200);
+    }
+
+    public function update_password(Request $request) {
+        $validator = Validator::make($request->all(), [
+                    'user_id' => 'required|exists:users,id',
+                    // 'current_password' => 'required|string|min:6',
+                    'password' => 'required|string|confirmed' 
+        ]);
+
+        if ($validator->fails()) {
+            return response()->json([
+                        'success' => false,
+                        'status' => 406,
+                        'message' => 'Password does not match',
+                        'error' => $validator->errors(),
+                            ], 401);
+        }
+
+        # Match The Old Password
+
+        $user = User::where('id', $request->user_id)->first();
+        $user->password = Hash::make($request->input('password'));
+        $user->update();
+
+        return response()->json([
+                    'success' => true,
+                    'status' => 200,
+                    'message' => 'Password changed successfully!',
+        ]);
+    }
+
+    public function generate(Request $request) {
+        $validator = Validator::make($request->all(), [
+                    'email_id' => 'required|email',
+        ]);
+
+        if ($validator->fails()) {
+            return response()->json([
+                        'error' => $validator->errors()], 401);
+        }
+        //check user exist or not
+        $email = $request->email_id;
+        $user = User::where('email_id', $email)->first();
+
+        if(!$user){
+            return response(["status" => 404,
+                'message' => 'Email Id Does Not Exist']
+            );
+        }
+        // Generate An Otp
+        $otp = UserEmailOtp::updateOrCreate(['user_id' => $user->id],
+        [   'otp' => rand(1000, 9999),
+            'valid_upto' => Carbon::now()->addMinutes(10)
+        ]);
+        
+        if ($otp) {
+            // send otp in the email
+            $mail_details = [
+                'email' => $request->email_id,
+                'subject' => 'Forgot Password',
+                'body' => 'Your OTP is : ' . $otp->otp
+            ];
+
+            $mail = \Mail::to($request->email_id)->send(new SendUserOtp($mail_details));
+
+            return response(["status" => 200,
+                "message" => "OTP sent successfully",
+                'user_id' => $otp['user_id']]);
+        } else {
+            return response(["status" => 401,
+                'message' => 'Invalid']
+            );
+        }
+
+    }
+
+    public function verifyOtp(Request $request) {
+        
+        $emailId = $request->email_id;
+        $otp = $request->otp;
+        // dd($emailId,$otp);
+        $user = User::where('email_id', $emailId)->first();
+        $varificationCode = UserEmailOtp::where('user_id', $user->id)->latest()->first();
+        // dd($varificationCode);
+        $now = Carbon::now();
+
+        if ($varificationCode && $now->isAfter($varificationCode->valid_upto)) {
+            return response()->json([
+                    'status' => 500,
+                    'message' => 'Your OTP has been expired',
+                        ], 500);
+        }
+        if($varificationCode->otp != $otp){
+            return response(["status" => 401,
+                'message' => 'Invalid OTP']
+            );
+        }else{
+            return response(["status" => 200,
+                'message' => 'Valid OTP']
+            );
+        }
+        
+        
+    }
+
+    public function create_new_pass_with_otp(Request $request) {
+        $request->validate([
+            'user_id' => 'required|exists:users,id',
+        ]);
+
+        $validator = Validator::make($request->all(), [
+                    'user_id' => 'required|exists:users,id',
+                    'otp' => 'required'
+        ]);
+
+        #Validation Logic
+        $verificationCode = UserEmailOtp::where('user_id', $request->user_id)
+                ->where('otp', $request->otp)
+                ->first();
+
+        $now = Carbon::now();
+        if (!$verificationCode) {
+            return response()->json([
+                        'status' => 401,
+                        'message' => 'Invalid',
+                            ], 401);
+        } elseif ($verificationCode && $now->isAfter($verificationCode->valid_upto)) {
+            return response()->json([
+                        'status' => 500,
+                        'message' => 'Your OTP has been expired',
+                            ], 500);
+        } else {
+            return response()->json([
+                        'status' => 200,
+                        'message' => 'Otp Verify successfully',
+                            ], 200);
+        }
+    }
+
+    public function resend_otp(Request $request) {
+        $validator = Validator::make($request->all(), [
+                    'email_id' => 'required|email',
+        ]);
+
+        if ($validator->fails()) {
+            return response()->json([
+                        'error' => $validator->errors()], 401);
+        }
+
+        // Generate An Otp
+        $email = $request->email_id;
+        $user = User::where('email_id', $email)->first();
+        $otp = UserEmailOtp::updateOrCreate(['user_id' => $user->id],
+        [   'otp' => rand(1000, 9999),
+            'valid_upto' => Carbon::now()->addMinutes(10)
+        ]);
+        
+        if ($otp) {
+            // send otp in the email
+            $mail_details = [
+                'email' => $request->email_id,
+                'subject' => 'Forgot Password',
+                'body' => 'Your OTP is : ' . $otp->otp
+            ];
+            // print_r($mail_details);exit;
+
+            \Mail::to($request->email_id)->send(new SendUserOtp($mail_details));
+
+            return response(["status" => 200,
+                "message" => "OTP sent successfully",
+                'user_id' => $otp['user_id']]);
+        } else {
+            return response(["status" => 401,
+                'message' => 'Invalid']
+            );
+        }
+
+        // $message = "Your otp is - ".$varificationCode->otp;
+
+        return response()->json([
+                    'success' => true,
+                    'status' => 200,
+                    'message' => $message,
+        ]);
+    }
+    
+    public function resetPassword(Request $request){
+        
+        $userId = $request->user_id;
+        $oldPass = $request->old_pass;
+        $newPass = $request->new_pass;
+        
+        //check old password is not match with new password
+        
+        $userPass = User::where('id',$userId)->first();
+        
+        if(!Hash::check($oldPass,$userPass->password)){
+            
+            return response()->json([
+                                'status'=>201 ,
+                                'message'=>'Wrong Password'
+                                ]);
+        }elseif(Hash::check($newPass,$userPass->password)){
+            return response()->json([
+                                'status'=>201 ,
+                                'message'=>'New Password and Old Password Cannot Be same'
+                                ]);
+            
+        }else{
+            $user = User::where('id', $userId)->first();
+            $user->password = Hash::make($newPass);
+            $user->update();
+    
+            return response()->json([
+                        'success' => true,
+                        'status' => 200,
+                        'message' => 'Password changed successfully!',
+            ]);
+        }
+        
+    }
+
+}
diff --git a/app/Http/Controllers/API/ManageActivityController.php b/app/Http/Controllers/API/ManageActivityController.php
new file mode 100644
index 0000000..f83a466
--- /dev/null
+++ b/app/Http/Controllers/API/ManageActivityController.php
@@ -0,0 +1,545 @@
+with('faq_activity_link.faqsData')->find($activityId);
+
+                if ($activity) {
+                    return response()->json([
+                                'success' => true,
+                                'message' => 'Activity fetched successfully.',
+                                'result' => $activity
+                    ]);
+                } else {
+                    return response()->json([
+                                'success' => false,
+                                'message' => 'Activity not found.',
+                    ]);
+                }
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("Activity data listing failed: " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something went wrong.',
+            ]);
+        }
+    }
+
+    public function get_manage_activity(Request $request) {
+        // try {
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                // dd($user_id);
+                
+                $user_data = User::where('id',$user_id)->first();
+                $utm_source = $user_data->utm_source;
+                $subscription_data = SubscriptionMaster::where('utm_plan',$utm_source)->first();
+                // dd($utm_source);
+                $subscription_id = $subscription_data->id;
+                // dd($subscription_id);
+                $current_day = Carbon::now()->toDateString();
+                // dd($current_day);
+                $manage_activity = ActivityDay::where('date', '=', $current_day)
+                                // ->where('')
+                                ->where('subscription_id', $subscription_id)
+                                ->with('subscription')
+                                ->with('faq_activity_link.faqsData')
+                                ->with('scheduleData', 'activityData.subscription')
+                                ->with('activityData.teacher_data')
+                                ->get();
+                // dd($manage_activity);     
+                // $userIP = $request->ip(); // Get the user's IP address  // commented by Pradyumn; commented on 5 july 2024; Reason: not in use
+
+                // Make a GET request to ipinfo.io
+                // $response = Http::get("https://ipinfo.io/{$userIP}/json");  // commented by Pradyumn; commented on 5 july 2024; Reason: not in use
+                // Parse the JSON response
+                
+                 // commented by Pradyumn; commented on 5 july 2024; Reason: not in use
+                // $ch = curl_init("https://ipinfo.io/{$userIP}?token=fb9b51b5a3bbd9");
+                // curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+                // $response = curl_exec($ch);
+                // curl_close($ch);
+                
+                // $locationData = json_decode($response);  // commented by Pradyumn; commented on 5 july 2024; Reason: not in use
+                // dd($locationData);
+                // Extract the user's time zone from the location data
+                // $userTimeZone = $locationData->timezone; // commented by Pradyumn; commented on 5 july 2024; Reason: not in use
+                // dd($userTimeZone);
+                // Convert the time to the user's time zone
+                // $userTimeZone = $ca$carbonTimetz($userTimeZone);
+                $manage_activity->each(function ($item) {
+                    $timestamp = $item->time;
+                    $normalTime = Carbon::createFromFormat('H:i', $timestamp, 'Asia/Kolkata'); // Replace 'your_timezone' with the actual timezone of the 'time' column
+                    $utcTime = $normalTime->utc();
+                    $item->time = $utcTime->format('H:i'); // Update the 'time' value with the UTC time in 'HH:mm' format
+                    return $item;
+                });
+                $result = $manage_activity;
+                // $userIP = $request->ip(); // Get the user's IP address
+
+                // // Make a GET request to ipinfo.io
+                // $response = Http::get("https://ipinfo.io/{$userIP}/json");
+                // // Parse the JSON response
+                // $locationData = $response->json();
+                
+                // // Extract the user's time zone from the location data
+                // $userTimeZone = $locationData['timezone'];
+                
+                // $manage_activity->each(function ($item) use ($userTimeZone) {
+                //     $timestamp = $item->time;
+                //     $normalTime = Carbon::createFromFormat('H:i', $timestamp, $userTimeZone); // Replace 'your_timezone' with the actual timezone of the 'time' column
+                //     $normalTime->setTimezone($userTimeZone); // Convert to the user's time zone
+                //     $item->time = $normalTime->format('H:i'); // Update the 'time' value with the user's time zone in 'HH:mm' format
+                //     return $item;
+                // });
+                
+                // $result = $manage_activity;
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $result
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+    }
+
+
+    public function get_manage_activity_schedule() {    
+        try {
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $user_data = User::where('id',$user_id)->first();
+                $utm_source = $user_data->utm_source;
+               
+                $subscription_data = SubscriptionMaster::where('utm_plan',$utm_source)->first();
+                // dd($subscription_data);
+                $subscription_id = $subscription_data->id;
+                 $current_day = Carbon::now()->toDateString();
+                $activity_schedule = ActivityDay::where('date', '>', $current_day)
+                                                        ->where('subscription_id', $subscription_id)
+                                                       ->with('subscription')
+                                                       ->with('scheduleData', 'activityData.teacher_data')
+                                                       ->orderBy('date', 'asc')
+                                                       ->get();
+                
+                $activity_schedule->each(function ($item) {
+                    $timestamp = $item->time;
+                    $normalTime = Carbon::createFromFormat('H:i', $timestamp, 'Asia/Kolkata'); // Replace 'your_timezone' with the actual timezone of the 'time' column
+                    $utcTime = $normalTime->utc();
+                    $item->time = $utcTime->format('H:i'); // Update the 'time' value with the UTC time in 'HH:mm' format
+                    return $item;
+                });
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $activity_schedule
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("User data listing Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    }
+    
+    public function get_manage_activity_schedule_utc() {
+        try {
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $user_data = User::where('id',$user_id)->first();
+                $utm_source = $user_data->utm_source;
+                
+                $subscription_data = SubscriptionMaster::where('utm_plan',$utm_source)->first();
+                $subscription_id = $subscription_data->id;
+                 $current_day = Carbon::now()->toDateString();
+                $activity_schedule = ActivityDay::where('date', '>', $current_day)
+                                                        ->where('subscription_id', $subscription_id)
+                                                       ->with('subscription')
+                                                       ->with('scheduleData', 'activityData.teacher_data')
+                                                       ->get();
+                $activity_schedule->each(function ($item) {
+                    $timestamp = $item->time;
+                    $normalTime = Carbon::createFromFormat('H:i', $timestamp, 'Asia/Kolkata'); // Replace 'your_timezone' with the actual timezone of the 'time' column
+                    $utcTime = $normalTime->utc();
+                    $item->time = $utcTime->format('H:i'); // Update the 'time' value with the UTC time in 'HH:mm' format
+                    return $item;
+                });
+                // $activity_schedule_array = $activity_schedule->toArray();
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $activity_schedule
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("User data listing Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    }
+    public function get_schedule_id() {
+        try {
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $scheduleId = request('scheduleId');
+//                $data = User::with('user_details')->where('id', $user_id)->first()->toArray();
+
+                $activity_schedule = ActivitySchedule::with('subscription')->find($scheduleId);
+
+//                print_r($activity_schedule);exit;
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $activity_schedule
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("User data listing Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    }
+
+    public function get_manage_past_session() {
+        // try {
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $user_data = User::where('id',$user_id)->first();
+                // dd($user_data);
+                $utm_source = $user_data->utm_source;
+                // dd($utm_source);
+                
+                $subscription_data = SubscriptionMaster::where('utm_plan',$utm_source)->first();
+                $subscription_id = $subscription_data->id;
+                // dd($subscription_id);
+                $activity_data = ActivityMaster::where('subscription_id', $subscription_id)->orderBy('end_date', 'desc')->first();
+                // Calculate the cutoff date (end date + 7 days)
+                $end_date = $activity_data->end_date;
+                // dd($end_date);
+                $cutoffDate = Carbon::parse($end_date)->addDays(7);
+                // dd($cutoffDate);
+                // dd($cutoffDate,Carbon::now()->toDateString());
+                // $current_date = Carbon::now()->format('Y-m-d');
+                // $desired_date = Carbon::createFromDate(2024, 1, 2);
+                // $cutoffDate = $desired_date->format('Y-m-d');
+                // ->where('end_date','>=',$current_date)
+                // dd($desired_date_formatted);
+                
+                if(Carbon::now()->toDateString() > $cutoffDate){
+                    return response()->json([
+                            'success' => false,
+                            'message' => 'Activity has ended.',
+                        ]);
+                }
+                    
+                
+                $past_activity = ActivityMaster::where('subscription_id', $subscription_id)->where('end_date','<',$cutoffDate)->with('teacher_data')->orderBy('start_date', 'desc')->first();
+                $schedule_data = ActivitySchedule::where('activity_master_id', $past_activity['id'])->with('past_data')->orderBy('start_date', 'asc')->get()->toArray();
+                $data_schedule = [];
+                foreach ($schedule_data as $k => $val){
+                    if (empty($val['past_data'])){
+                        continue;
+                    }else{
+                        $data_schedule[] = $val;
+                    }
+                }
+                $past_activity['schedule'] = $data_schedule;
+            
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $past_activity
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        // } catch (\Exception $e) {
+        //     \Log::error("User data listing Failed: " . $e->getMessage());
+        //     return response()->json([
+        //                 'success' => false,
+        //                 'message' => 'Something went wrong.',
+        //     ]);
+        // }
+    }
+
+    public function get_manage_past_session_id() {
+        try {
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $pastSessionId = request('pastSessionId');
+                // Calculate the date 7 days before the current date
+                $seven_days_before = date('Y-m-d', strtotime('+7 days'));
+
+                // Get past sessions that occurred within 7 days before the current date
+                $passed_session = PastSession::where('created_at', '<=', $seven_days_before)
+                        ->find($pastSessionId);
+// dd($passed_session);
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $passed_session
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("User data listing Failed: " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something went wrong.',
+            ]);
+        }
+    }
+
+    public function add_session_status(Request $request) {
+        try {
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $oldUserRankings = LeaderboardMaster::with('user')
+                        ->get();
+                //get old points
+
+                $validator = Validator::make($request->all(), [
+                            'content_id' => 'required',
+                            'content_type' => 'required'
+                ]);
+                if ($validator->fails()) {
+                    return response()->json([
+                                'error' => $validator->errors()
+                                    ], 401);
+                }
+                // validation fails
+                $data = UserContentView::where('user_id', $user_id)
+                        ->whereDate('created_at', now()->toDateString())
+                        ->get();
+
+                if ($data->isNotEmpty()) {
+                    return response([
+                        'status' => "Data already exists"
+                            ], 400);
+                } else {
+                    $add_content_view = new UserContentView;
+                    $add_content_view->user_id = $user_id;
+                    $add_content_view->content_id = $request->input('content_id');
+                    $add_content_view->is_view = $request->input('content_type');
+                    $add_content_view->save();
+
+                    // Check if user exists in another table
+                    $leaderboardMaster = LeaderboardMaster::where('user_id', $user_id)->first();
+                    if ($leaderboardMaster) {
+                        // Update points if user exists
+                        $leaderboardMaster->total_score += 1;
+                        $leaderboardMaster->save();
+                    } else {
+                        // Create a new entry with 1 point if user doesn't exist
+                        LeaderboardMaster::create([
+                            'user_id' => $user_id,
+                            'total_score' => 1,
+                        ]);
+                    }
+                }
+                $newUserRanking = LeaderboardMaster::where('user_id', $user_id)->first();
+                if ($oldUserRankings && $newUserRanking) {
+                    foreach ($oldUserRankings as $ranking) {
+                        $previousTotalScore = $ranking->total_score;
+                        $currentTotalScore = $newUserRanking->total_score;
+                        if ($ranking->user_id == $user_id) {
+                            if ($previousTotalScore === null) {
+                                $ranking->progress_bar = '0'; // Initial entry
+                            } elseif ($currentTotalScore > $previousTotalScore) {
+                                $ranking->progress_bar = '0'; // Total score increased
+                                $message = "You earned 1 point!";
+                            } elseif ($currentTotalScore < $previousTotalScore) {
+                                $ranking->progress_bar = '1'; // Total score decreased
+                                $message = "Your score decreased.";
+                            } else {
+                                $ranking->progress_bar = '2'; // Total score remained the same
+                                $message = "Your score remains the same.";
+                            }
+                            $ranking->save(); // Save the updated progress_bar value
+                        }
+                    }
+
+                    return response([
+                        'status' => "Data added successfully.",
+                        'progress_bar' => $message,
+                            ], 200);
+                }
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.'
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("User data listing Failed: " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something went wrong.'
+            ]);
+        }
+    }
+    
+    public function dummy_activity(Request $request){
+        
+        
+        // try {
+        $token = readHeaderToken();
+        if ($token) {
+            $user_id = $token['sub'];
+            // dd($user_id);
+            
+            $user_data = User::where('id',$user_id)->first();
+            $utm_source = $user_data->utm_source;
+            
+            $subscription_data = SubscriptionMaster::where('utm_plan',$utm_source)->first();
+            $subscription_id = $subscription_data->id;
+            // dd($subscription_id);
+            $current_day = Carbon::now()->toDateString();
+            $manage_activity = ActivityDay::where('date', '=', $current_day)
+                            // ->where('')
+                            ->where('subscription_id', $subscription_id)
+                            ->with('subscription')
+                            ->with('faq_activity_link.faqsData')
+                            ->with('scheduleData', 'activityData.subscription')
+                            ->with('activityData.teacher_data')
+                            ->get();
+                            
+            // $userIP = $request->ip(); // Get the user's IP address
+
+            // // Make a GET request to ipinfo.io
+            // $response = Http::get("https://ipinfo.io/{$userIP}/json");
+            // // Parse the JSON response
+            
+            // $ch = curl_init("https://ipinfo.io/{$userIP}/json");
+            // curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+            // $response = curl_exec($ch);
+            // curl_close($ch);
+            
+            // $locationData = json_decode($response);
+            
+            // // Extract the user's time zone from the location data
+            // $userTimeZone = $locationData->timezone;
+            // // dd($userTimeZone);
+            // // Convert the time to the user's time zone
+            // // $userTimeZone = $ca$carbonTimetz($userTimeZone);
+            // $manage_activity->each(function ($item) {
+            //     $timestamp = $item->time;
+            //     $normalTime = Carbon::createFromFormat('H:i', $timestamp, 'Asia/Kolkata'); // Replace 'your_timezone' with the actual timezone of the 'time' column
+            //     $utcTime = $normalTime->utc();
+            //     $item->time = $utcTime->format('H:i'); // Update the 'time' value with the UTC time in 'HH:mm' format
+            //     return $item;
+            // });
+            // $result = $manage_activity;
+            $userIP = $request->ip(); // Get the user's IP address
+
+            // Make a GET request to ipinfo.io
+            $response = Http::get("https://ipinfo.io/{$userIP}/json");
+            // Parse the JSON response
+            $locationData = $response->json();
+            
+            // Extract the user's time zone from the location data
+            $userTimeZone = $locationData['timezone'];
+            
+            $manage_activity->each(function ($item) use ($userTimeZone) {
+                $timestamp = $item->time;
+                $normalTime = Carbon::createFromFormat('H:i', $timestamp, $userTimeZone); // Replace 'your_timezone' with the actual timezone of the 'time' column
+                $normalTime->setTimezone($userTimeZone); // Convert to the user's time zone
+                $item->time = $normalTime->format('H:i'); // Update the 'time' value with the user's time zone in 'HH:mm' format
+                return $item;
+            });
+            
+            $result = $manage_activity;
+            return response()->json([
+                        'success' => true,
+                        'message' => 'Data fetched successfully.',
+                        'result' => $result
+            ]);
+        } else {
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Authentication failed.',
+            ]);
+        }
+    
+    }
+
+}
diff --git a/app/Http/Controllers/API/ManageBannerController.php b/app/Http/Controllers/API/ManageBannerController.php
new file mode 100644
index 0000000..89324ba
--- /dev/null
+++ b/app/Http/Controllers/API/ManageBannerController.php
@@ -0,0 +1,40 @@
+where('id', $user_id)->first()->toArray();
+                // $data = ManageBanner::latest()->first(); // comented by: Pradyumn; Commented at: 5 july 2024; Reason: added select function;
+                $data = ManageBanner::select('id','banner_path','block_position')->orderBy('id','desc')->first();
+                return response()->json([
+                    'success' => true,
+                    'message'=> 'Data fetched successfully.',
+                    'result' => $data
+                ]); 
+            }else{
+                return response()->json([
+                    'success' => false,
+                    'message'=> 'Authentication failed.',
+                ]);
+            }
+        }catch(\Exception $e){
+             \Log::error("User data listing Failed : " .$e->getMessage());
+             return response()->json([
+                 'success' => false,
+                 'message'=> 'Something Went wrong.',
+             ]);
+         }
+   }
+}
diff --git a/app/Http/Controllers/API/ManageFeedbackController.php b/app/Http/Controllers/API/ManageFeedbackController.php
new file mode 100644
index 0000000..fe9da59
--- /dev/null
+++ b/app/Http/Controllers/API/ManageFeedbackController.php
@@ -0,0 +1,85 @@
+get();
+        // dd($data);
+        return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $data
+                ]);
+    }
+    
+    public function updateFeedback(Request $request) {
+        $token = readHeaderToken();
+        // dd($token);
+            if ($token) {
+            $user_id = $token['sub'];
+            // $user = auth()->user();
+            // dd($user_id);
+            $existingRecord = ManageFeedback::where('user_id', $user_id)->first();
+    
+            if ($existingRecord) {
+                $existingRecord->update(['message' => $request->message,'reaction' => $request->reaction]);
+                $data = $existingRecord;
+            } else {
+                $data = ManageFeedback::create([
+                    'user_id' => $user_id,
+                    'message' => $request->message,
+                    'reaction' => $request->reaction
+                ]);
+            }
+    
+            $message = $existingRecord ? 'Data updated successfully.' : 'Data created successfully.';
+    
+            return response()->json([
+                'success' => true,
+                'message' => $message,
+                'result' => $data
+            ]);
+        } else {
+            return response()->json([
+                'success' => false,
+                'message' => 'something went wrong.',
+            ]);
+        }
+    }
+    
+    // public function updateFeedback(Request $request) {
+    //     $token = readHeaderToken();
+    //     if ($token) {
+    //         $user_id = $token['sub'];
+    //         $user = auth()->user();
+    // // dd($user_id);
+    //         // Update or create ManageFeedback record
+    //         $data = ManageFeedback::updateOrCreate([
+    //             'user_id' => $user_id,
+    //             'message' => $request->message,
+    //             'reaction' => $request->reaction
+    //             ]);
+    
+    //         return response()->json([
+    //             'success' => true,
+    //             'message' => 'Data updated successfully.',
+    //             'result' => $data
+    //         ]);
+    //     } else {
+    //         return response()->json([
+    //             'success' => false,
+    //             'message' => 'something went wrong.',
+    //         ]);
+    //     }
+    // }
+
+}
diff --git a/app/Http/Controllers/API/ManageNotificationController.php b/app/Http/Controllers/API/ManageNotificationController.php
new file mode 100644
index 0000000..a1fcf9e
--- /dev/null
+++ b/app/Http/Controllers/API/ManageNotificationController.php
@@ -0,0 +1,121 @@
+where('is_read','0')->count();
+//        print_r($notification_list);
+//        exit;
+                $notification_list = NotificationUser::with('notification_master_data','user_data')->where('user_id',$user_id)->get()->toArray();
+//                echo "
";
+//                print_r($notification_list);
+//                exit;
+                return response()->json([
+                    'success' => true,
+                    'message' => 'Data Fetch Successfully!.',
+                    'notification_count' => $notification_count,
+                    'notification_list' => $notification_list
+                ]);
+            }else {
+                return response()->json([
+                    'success' => false,
+                    'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (Exception $ex) {
+            return response([
+                    'status' => "failed",
+                ], 500);
+        }
+    }
+    
+    public function update_read_status(Request $request){
+        
+        try {
+            $token = readHeaderToken();
+            if($token){
+                $user_id = $token['sub'];
+                
+                $nitification_id = $request->notification_id;
+                
+                NotificationUser::where('notification_id',$nitification_id)
+                        ->where('user_id',$user_id)
+                        ->update(['is_read' => '1']);
+                
+                return response()->json([
+                    'success' => true,
+                    'message' => 'Data Updated Successfully!.'
+                    ]);
+            }else {
+                return response()->json([
+                    'success' => false,
+                    'message' => 'Authentication failed.',
+                ]);
+            }
+            
+        } catch (Exception $ex) {
+            return response([
+                    'status' => "failed",
+                ], 500);
+        }
+    }
+    
+    public function delete_notification(Request $request){
+        
+        try{
+            $token = readHeaderToken();
+            if($token){
+                $user_id = $token['sub'];
+                $notification_id = $request->notification_id;
+                
+//                print_r($notification_id);
+//                exit;
+                NotificationUser::where('notification_id',$notification_id)
+                        ->where('user_id',$user_id)->delete();
+                
+                return response()->json([
+                    'success' => true,
+                    'message' => 'Deleted Successfully!.'
+                    ]);
+                
+            }else {
+                return response()->json([
+                    'success' => false,
+                    'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (Exception $ex) {
+
+        }
+    }
+    
+    
+    // public function delete(){
+        
+    //             $threeDaysAgo = Carbon::now()->subDays(3);
+    //             NotificationUser::where('created_at','<',$threeDaysAgo)->delete();
+                
+    //             return response()->json([
+    //                 'success' => true,
+    //                 'message' => 'Deleted Successfully!.'
+    //                 ]);
+                
+       
+    // }
+}
diff --git a/app/Http/Controllers/API/ManagePodcastController.php b/app/Http/Controllers/API/ManagePodcastController.php
new file mode 100644
index 0000000..e9634da
--- /dev/null
+++ b/app/Http/Controllers/API/ManagePodcastController.php
@@ -0,0 +1,21 @@
+inRandomOrder()->get();
+        
+        return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $data
+                ]);
+    }
+}
diff --git a/app/Http/Controllers/API/MoodOMeterController.php b/app/Http/Controllers/API/MoodOMeterController.php
new file mode 100644
index 0000000..c717416
--- /dev/null
+++ b/app/Http/Controllers/API/MoodOMeterController.php
@@ -0,0 +1,181 @@
+user();
+                $user_id = $token['sub'];
+                $oldUserRankings = LeaderboardMaster::with('user')->get();
+                $currentDate = now()->toDateString();
+                $previousDate = now()->subDay()->toDateString();
+
+                // Check if a record for the current user and current day already exists
+                $existingRecord = mood_o_meter::where('user_id', $user_id)
+//                ->whereDate('created_at', now()->toDateString())
+                        ->whereDate('updated_at', $currentDate)
+                        ->where('is_active','0')
+                        ->first();
+                if ($existingRecord) {
+                    // Update the existing mood record
+                    $existingRecord->update([
+                        'mood_o_meter' => $req->input('mood_o_meter'),
+                        'is_active' => '0',
+                    ]);
+
+                    return response([
+                        'status' => "Mood already added for today",
+                            ], 200);
+                } else {
+                // Check if a record for the current user and previous day exists
+//                $previousRecord = mood_o_meter::where('user_id', $user_id)
+//                    ->whereDate('updated_at', $previousDate)
+//                    
+//                    ->first();
+                    
+//                if ($previousRecord) {
+                    // Create a new mood record for the current day
+                    mood_o_meter::where('user_id', $user_id)
+                        ->update([
+                            'mood_o_meter' => $req->input('mood_o_meter'),
+                            'is_active' => '0'
+                        ]);
+//                } 
+//                else {
+//                    
+//                    mood_o_meter::create([
+//                        'user_id' => $user_id,
+//                        'mood_o_meter' => $req->input('mood_o_meter'),
+//                        'is_active' => '0',
+//                    ]);
+//                }
+                // Update is_active column based on the current time
+                $ranking = LeaderboardMaster::with('user')->where('user_id', $user_id)->first();
+                // Check if user exists in another table
+                $leaderboardMaster = LeaderboardMaster::where('user_id', $user_id)->first();
+                if ($leaderboardMaster) {
+                    // Update points if user exists
+                    $leaderboardMaster->increment('total_score', 1);
+                } else {
+                    // Create a new entry with 1 point if user doesn't exist
+                    LeaderboardMaster::create([
+                        'user_id' => $token['sub'],
+                        'total_score' => 1,
+                    ]);
+                }
+            
+            $newUserRanking = LeaderboardMaster::where('user_id', $user_id)->first();
+            if ($newUserRanking) {
+//                dd($oldUserRankings);
+//                $message = 'Hello World';
+                
+//                echo '
';
+//                print_r($ranking);
+//                exit();
+//                foreach ($oldUserRankings as $ranking) {
+                    $previousTotalScore = $ranking->total_score;
+                    $currentTotalScore = $newUserRanking->total_score;
+                    if ($ranking->user_id == $user_id) {
+                        if ($previousTotalScore === null) {
+                            $ranking->progress_bar = '0'; // Initial entry
+                        } elseif ($currentTotalScore > $previousTotalScore) {
+                            $ranking->progress_bar = '0'; // Total score increased
+                            $message = "You earned 1 point!";
+                        } elseif ($currentTotalScore < $previousTotalScore) {
+                            $ranking->progress_bar = '1'; // Total score decreased
+                            $message = "Your score decreased.";
+                        } else {
+                            $ranking->progress_bar = '2'; // Total score remained the same
+                            $message = "Your score remains the same.";
+                        }
+                        $ranking->save(); // Save the updated progress_bar value
+                        
+                    }
+//                }
+//             dd($userRanking,$newUserRanking);
+                return response()->json([
+                    'success' => true,
+                    'progress_bar' => $message,
+                ]);
+                
+            }
+            return response([
+                'status' => "Success",
+                    ], 200);
+        }
+    }
+        } catch (Exception $ex) {
+            return response([
+                'status' => "failed",
+                    ], 500);
+        }
+    }
+
+    
+    public function get_mood_o_meter() {
+        try {
+//            print_r(User::first()->user);exit;
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $data = mood_o_meter::where('user_id', $user_id)->value('is_active');
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $data
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("User data listing Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    }
+    
+    public function get_mood_o_meter_mood() {
+        try {
+//            print_r(User::first()->user);exit;
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $data = mood_o_meter::where('user_id', $user_id)->value('mood_o_meter');
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $data
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("User data listing Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    }
+
+}
diff --git a/app/Http/Controllers/API/NewsAndArticleController.php b/app/Http/Controllers/API/NewsAndArticleController.php
new file mode 100644
index 0000000..4ae8c6b
--- /dev/null
+++ b/app/Http/Controllers/API/NewsAndArticleController.php
@@ -0,0 +1,39 @@
+where('is_active','1')->inRandomOrder()->get();
+        // dd($data);
+        return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $data
+                ]);
+    }
+    
+
+    
+    public function search(Request $request)
+    {
+        $result = ManageNewsArticles::where('article_name', 'LIKE', '%' . $request->article_name . '%')->where('category_id',$request->category_id)->where('is_active','1')->get();
+        // dd($result);
+
+        if (count($result) > 0) {
+            return response()->json([
+                'success' => true,
+                'message' => 'Data fetched successfully.',
+                'result' => $result]);
+        } else {
+            return response()->json(['Result' => 'No Data found'], 200);
+        }
+    }
+    
+}
diff --git a/app/Http/Controllers/API/PeriodDatesController.php b/app/Http/Controllers/API/PeriodDatesController.php
new file mode 100644
index 0000000..5b1f135
--- /dev/null
+++ b/app/Http/Controllers/API/PeriodDatesController.php
@@ -0,0 +1,88 @@
+all();
+            // dd($data);
+            // $datetime = $data['datetime'];
+            $predicted_dates = $data['predicted_dates'];
+            $fertile_dates = $data['fertile_dates'];
+            $ovulating_dates = $data['ovulating_dates'];
+            $pickerdateRange = $data['pickerdateRange'];
+            
+            // $jsonEncodedDateTimeArray = json_encode($datetime);
+            $jsonEncodedPredictedDatesArray = json_encode($predicted_dates);
+            $jsonEncodedFertileDatesArray = json_encode($fertile_dates);
+            $jsonEncodedOvulatingDatesArray = json_encode($ovulating_dates);
+            $jsonEncodedPickerDteRangeArray = json_encode($pickerdateRange);
+            
+            PeriodDate::updateOrCreate( ['user_id'=>$user_id],
+                                        [
+                                            'predicted_dates'=>$jsonEncodedPredictedDatesArray,
+                                            'fertile_dates'=>$jsonEncodedFertileDatesArray,
+                                            'ovulating_dates'=>$jsonEncodedOvulatingDatesArray,
+                                            'pickerdateRange'=>$jsonEncodedPickerDteRangeArray,
+                                            'period_cycle_length'=>$request->period_cycle_length
+                                        ]);
+            
+             return response()->json([
+                        'success' => true,
+                        'message' => 'Data Added Successfully'
+                    ],200);
+        }else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+    }
+    
+    public function getPeriodDates(){
+        
+        $token = readHeaderToken();
+        if($token){
+            $user_id = $token['sub'];
+            
+            $data = PeriodDate::where('user_id',$user_id)->first();
+            
+            $result['predictedDates'] = json_decode($data->predicted_dates);
+            $result['fertileDates'] = json_decode($data->fertile_dates);
+            $result['ovulatingDates'] = json_decode($data->ovulating_dates);
+            $result['pickerdateRange'] = json_decode($data->pickerdateRange);
+            $result['period_cycle_length'] = $data->period_cycle_length;
+            
+            return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $result
+                ]);
+        }
+        
+    }
+    
+    public function deletePeriodDates(){
+        $token = readHeaderToken();
+        if($token){
+            $user_id = $token['sub'];
+            // dd($user_id);
+            $data = PeriodDate::where('user_id',$user_id)->delete();
+            return response()->json([
+                            'success' => true,
+                            'message' => 'Data delete successfully.',
+                            'result' => $data
+            ]);
+        }
+    }
+}
diff --git a/app/Http/Controllers/API/ProfileController.php b/app/Http/Controllers/API/ProfileController.php
new file mode 100644
index 0000000..b4f7dcf
--- /dev/null
+++ b/app/Http/Controllers/API/ProfileController.php
@@ -0,0 +1,194 @@
+user();
+//                print_r($user);exit;
+                // check validation
+                $validator = Validator::make($request->all(), [
+                            'full_name'=>'required',
+                            'bio' => 'required|string|min:6',
+                            'description' => 'required|string|min:6',
+                            'gender' => 'required|in:male,female',
+                            'age' => 'required',
+                            'full_address' => 'required',
+                            'city' => 'required',
+                            'height' => 'required',
+//                            'weight' => 'required',
+//                          'profile_picture' => 'required|image|mimes:jpg,png,jpeg,gif',
+                ]);
+                if ($validator->fails()) {
+                    return response()->json([
+                                'success' => false,
+                                'error' => $validator->errors()], 401);
+                }
+
+                $profile_completed_status = User::select('status')->find($user_id);
+                if ($profile_completed_status->status == 0) {
+                    $UserDetail = new UserDetail;
+                    $UserDetail->user_id = $user_id;
+                    $UserDetail->user_bio = $request->input('bio');
+                    $UserDetail->description = $request->input('description');
+                    $UserDetail->gender = $request->input('gender');
+                    $UserDetail->age = $request->input('age');
+                    $UserDetail->full_address = $request->input('full_address');
+                    $UserDetail->city = $request->input('city');
+                    $UserDetail->height = $request->input('height');
+//                    $UserDetail->weight = $request->input('weight');
+                    if ($request->hasFile('profile_picture')) {
+                        $file = $request->file('profile_picture');
+                        $ext = $file->extension();
+                        $file_name = time() . '.' . $ext;
+                        $path = public_path() . '/uploads/profile_images/';
+                        $file->move($path, $file_name);
+                        $UserDetail->profile_picture = url('/public/uploads/profile_images/' . $file_name);
+                    }
+                    $UserDetail->save();
+                    User::where('id', $user_id)->update(array('status' => '1'));
+                    $msg = "Profile Completed Successfully.";
+                } else {
+                    $user = UserDetail::where('user_id', $user_id)->first();
+                    // $file_name = $user->profile_picture;
+                    $UserDetails = UserDetail::where('user_id', $user_id)->first();
+                            
+                    $UserDetails->user_bio = $request->input('bio');
+                    $UserDetails->description = $request->input('description');
+                    $UserDetails->gender = $request->input('gender');
+                    $UserDetails->age = $request->input('age');
+                    $UserDetails->full_address = $request->input('full_address');
+                    $UserDetails->city = $request->input('city');
+                    $UserDetails->height = $request->input('height');
+//                                'weight' => $request->input('weight'),
+                    if ($request->hasFile('profile_picture')) {
+                        $file = $request->file('profile_picture');
+                        $ext = $file->extension();
+                        $file_name = time() . '.' . $ext;
+                        $path = public_path() . '/uploads/profile_images/';
+                        $file->move($path, $file_name);
+                        // delete previous file
+                        $previous_image = public_path('/uploads/profile_images/' . $user->profile_picture);
+                        $delete_prv_image = File::delete($previous_image);
+                        $UserDetails->profile_picture = url('/public/uploads/profile_images/' . $file_name);
+                    }
+                    // $UserDetails->profile_picture = url('/public/uploads/profile_images/' . $file_name);
+                    $UserDetails->save();
+                    User::where('id', $user_id)->update(array('full_name' => $request->input('full_name')));
+                    $msg = "Profile Updated Successfully.";
+                }
+                
+                $user = User::with('user_detail')->where('id', $user_id)->first()->toArray();
+                //        $user = User::select('id','full_name','contact_number','email_id','status')->where('id',$user->id)->first()->toArray();
+                        return response()->json([
+                                'success' => true,
+                                'status' => true,
+                                'message'=> $msg,
+                                'authorisation' => [
+                                    'token' => null,
+                                    'user_data' =>$user,
+                                    'type' => 'bearer',
+                                ]
+                            ],200);
+//                return response()->json([
+//                            'success' => true,
+//                            'status' => true,
+//                            'message' => $msg,
+//                            'authorisation' => [
+//                                'token' => null,
+//                                'user_detail' =>$user,
+//                                'type' => 'bearer',
+//                            ],
+//                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("Update Complete/Update Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    }
+
+    /**
+     * Created By : Pradyumn Dwivedi
+     * Created at : 06 Feb 2023
+     * Use : To display list of User data
+     */
+    
+    public function index() {
+        try {
+//            print_r(User::first()->user);exit;
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $data = User::with('user_detail')->where('id', $user_id)->first();
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'authorisation' => [
+                            'user_data' => $data 
+                        ]         
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("User data listing Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    }
+
+    public function viewProfile() {
+        try {
+//            print_r(User::first()->user);exit;
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $data = User::with('user_detail')->get();
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $data
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("User data listing Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    }
+
+}
diff --git a/app/Http/Controllers/API/QuizController.php b/app/Http/Controllers/API/QuizController.php
new file mode 100644
index 0000000..02c8981
--- /dev/null
+++ b/app/Http/Controllers/API/QuizController.php
@@ -0,0 +1,131 @@
+where('is_active', '1')->where('schedule_timing', '=', $currentDateTime)->inRandomOrder()->limit(3)->get()->toArray();
+    //     // $data = $data = ManageQuizQuestion::with('answer')->where('is_active', '1')->inRandomOrder()->limit(3)->get()->toArray();
+        
+        
+    //     if (empty($data)) {
+    //     return response()->json([
+    //         'success' => false,
+    //         'message' => 'No quiz found.',
+    //         'result' => []
+    //         ]);
+    //     }
+    
+    //     return response()->json([
+    //             'success' => true,
+    //             'message' => 'Data fetched successfully.',
+    //             'result' => $data
+    //         ]);
+
+    // }
+    
+    public function getQuiz() {
+    $currentDateTime = now();
+
+    $todayQuizzes = ManageQuizQuestion::with('answer')->where('is_active', '1')->whereDate('schedule_timing', '=', $currentDateTime)->latest()->limit(3)->get()->toArray();
+    
+    // If there are no quizzes scheduled for today or if any one quiz is inactive, fetch past quizzes
+    if (count($todayQuizzes) === 0 || count($todayQuizzes) < 3) {
+        $remainingSlots = 3 - count($todayQuizzes);
+        
+        $pastQuizzes = ManageQuizQuestion::with('answer')->where('is_active', '1')->whereDate('schedule_timing', '<', $currentDateTime)->inRandomOrder()->limit($remainingSlots)->get()->toArray();
+        
+        // Merge today's and past quizzes
+        $data = array_merge($todayQuizzes, $pastQuizzes);
+    } else {
+        // If there are quizzes scheduled for today, use those
+        $data = $todayQuizzes;
+    }
+
+    if (empty($data)) {
+        return response()->json([
+            'success' => true,
+            'message' => 'No quiz found.',
+            'result' => []
+        ]);
+    }
+    
+    return response()->json([
+        'success' => true,
+        'message' => 'Data fetched successfully.',
+        'result' => $data
+    ]);
+}
+
+    
+    public function storeQuizPoints(Request $request){
+        
+        $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $currentDate = now()->toDateString(); // Extracting only the date part
+                // dd($currentDate);
+                
+                $existingRecord = UserQuizPoints::whereDate('created_at', $currentDate)
+                    ->where('user_id', $user_id)
+                    ->first();
+                // dd($existingRecord);
+                $points = $request->points*10;
+                if ($existingRecord == null) {
+                    UserQuizPoints::create(['user_id'=>$user_id,'quize_points'=>$points,'is_active'=>'1']);
+                    $leaderboard = LeaderboardMaster::where('user_id', $user_id)->first();
+                    $leaderboard->total_score += $points;
+                    $leaderboard->save();
+                    return response()->json([
+                        'success' => true,
+                        'message' => 'Points Adeed Succefully'
+                    ]);
+                }else{
+                    return response()->json([
+                        'success' => true,
+                        'message' => 'Points Already Added'
+                    ]);
+                }
+            }else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+            
+        
+    }
+    
+    public function getUerQuizpoints(){
+        
+        $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $currentDate = now()->toDateString(); // Extracting only the date part
+                // dd($currentDate);
+                
+                $userQuizPoints = UserQuizPoints::whereDate('created_at', $currentDate)
+                    ->where('user_id', $user_id)->get();
+                    return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $userQuizPoints
+                ]);
+                // dd($existingRecord);
+            }else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+    }
+}
diff --git a/app/Http/Controllers/API/RateUsController.php b/app/Http/Controllers/API/RateUsController.php
new file mode 100644
index 0000000..c82f15d
--- /dev/null
+++ b/app/Http/Controllers/API/RateUsController.php
@@ -0,0 +1,58 @@
+get();
+        return response()->json([
+            'success' => true,
+            'message' => 'Data fetched successfully.',
+            'result' => $result
+        ]);
+    }
+    
+    public function updateRateUs(Request $request) {
+    $token = readHeaderToken();
+
+        if ($token) {
+            $user_id = $token['sub'];
+            $user = auth()->user();
+    
+            $existingRecord = ManageRateUs::where('user_id', $user_id)->first();
+    
+            if ($existingRecord) {
+                // If the record exists, update it
+                $existingRecord->update(['rate_us' => $request->rate_us]);
+                $data = $existingRecord;
+            } else {
+                $data = ManageRateUs::create([
+                    'user_id' => $user_id,
+                    'rate_us' => $request->rate_us,
+                ]);
+            }
+    
+            $message = $existingRecord ? 'Data updated successfully.' : 'Data created successfully.';
+    
+            return response()->json([
+                'success' => true,
+                'message' => $message,
+                'result' => $data
+            ]);
+        } else {
+            return response()->json([
+                'success' => false,
+                'message' => 'Something went wrong.',
+            ]);
+        }
+    }
+
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/API/RegisterController.php b/app/Http/Controllers/API/RegisterController.php
new file mode 100644
index 0000000..d51ad1b
--- /dev/null
+++ b/app/Http/Controllers/API/RegisterController.php
@@ -0,0 +1,56 @@
+all(),[
+            'full_name'=> 'required',
+            'contact_number'=> 'required',
+            'email_id'=> 'required|unique:users,email_id',
+            'password'=> 'required|confirmed',
+            'address'=> 'required',
+            'fitness_goal'=> 'required',
+            'hear_about_us'=> 'required',
+        ]);
+        if ($validator->fails()) { 
+            return response()->json([
+                'error'=>$validator->errors()], 401);
+            }  
+        $data = new User;
+        $data->full_name = $request->input('full_name');
+        $data->contact_number = $request->input('contact_number');
+        $data->email_id = $request->input('email_id');
+        $data->password	 = Hash::make($request->input('password'));
+        $data->address	 = $request->input('address');
+        $data->fitness_goal = $request->input('fitness_goal');
+        $data->hear_about = $request->input('hear_about_us');
+        $register = $data->save();
+       if($register == 1){
+        return response()->json([
+            'success' => true,
+            'status'=>200,
+            'message'=> 'User Register Successfully',
+        ]);
+       }else{
+        return response()->json([
+            'success' => true,
+            'error'=>400,
+            'message'=> 'Please Try Again',
+        ]);
+       }
+        
+
+    }  
+    
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/API/ShareYourThoughtsController.php b/app/Http/Controllers/API/ShareYourThoughtsController.php
new file mode 100644
index 0000000..d9c7e6d
--- /dev/null
+++ b/app/Http/Controllers/API/ShareYourThoughtsController.php
@@ -0,0 +1,81 @@
+user();
+//                print_r($user);exit;
+
+                // check validation
+//                $validator = Validator::make($request->all(), [
+//                     'rating' => 'required|integer|min:1|max:5',
+//                ]);
+//                if ($validator->fails()) {
+//                    return response()->json([
+//                                'error' => $validator->errors()], 401);
+//                }
+                
+               $thoughts = new ShareYourThought;
+               $thoughts->rating = $request->input('rating');
+               $thoughts->user_id = $user_id;
+               $thoughts->save();
+               $msg = "Thank You Review Added Successfully.";
+                return response()->json([
+                            'success' => true,
+                            'message' => $msg,
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("Update Complete/Update Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    }
+
+    public function get_thought_id() {
+        try {
+//            print_r(User::first()->user);exit;
+            $token = readHeaderToken();
+            if ($token) {
+//                $user_id = $token['sub'];
+                $data = UserThought::where('is_active', '1')->inRandomOrder()->get();
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $data
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("User data listing Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    }
+}
diff --git a/app/Http/Controllers/API/ShortClipsController.php b/app/Http/Controllers/API/ShortClipsController.php
new file mode 100644
index 0000000..deca914
--- /dev/null
+++ b/app/Http/Controllers/API/ShortClipsController.php
@@ -0,0 +1,220 @@
+all(), [
+//                    'video_title' => 'required',
+//                    'video_description' => 'required',
+//                    'video_url' => 'required',
+//        ]);
+//        if ($validator->fails()) {
+//            return response()->json([
+//                        'error' => $validator->errors()], 401);
+//        }
+//        $shortclips = new ManageShortClips();
+//        $shortclips->video_title = $req->input('video_title');
+//        $shortclips->video_description = $req->input('video_description');
+//        $shortclips->video_url = $req->input('video_url');
+//        $shortclips->thumbnail = $req->input('thumbnail');
+//        $storeclips = $shortclips->save();
+//        if ($storeclips == 1) {
+//            return response()->json([
+//                        'success' => true,
+//                        'status' => 200,
+//                        'message' => 'Short Clips Added Successfully',
+//            ]);
+//        } else {
+//            return response()->json([
+//                        'success' => true,
+//                        'error' => 400,
+//                        'message' => 'Please Try Again',
+//            ]);
+//        }
+//    }
+
+    public function like_short_clips(Request $request) {
+        try {
+//            print_r(User::first()->user);exit;
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+//                dd($user_id);
+                // check validation
+                $validator = Validator::make($request->all(), [
+                            'short_clips_id' => 'required',
+                ]);
+                if ($validator->fails()) {
+                    return response()->json([
+                                'error' => $validator->errors()], 401);
+                }
+                // check validation end
+                $like = ShortClipsLikes::where('user_id', $user_id)
+                        ->where('short_clips_id', $request->short_clips_id)
+                        ->first();
+
+                if (!empty($like)) {
+                    if ($like->is_like == '0') {
+                        $like->is_like = '1';
+                        $like->is_active = '0';
+                        $like->update();
+                        $manage_likes = ManageShortClips::where('id', $request->short_clips_id)->first();
+                        if ($manage_likes->likes > 0) {
+                            $manage_likes->likes = $manage_likes->likes - 1;
+                            $manage_likes->update();
+                        }
+                        
+                        return response()->json([
+                                    'message' => 'you unliked'
+                                        ], 200);
+                    } else {
+                        $like->is_like = '0';
+                        $like->is_active = '1';
+                        $like->update();
+                        $manage_likes = ManageShortClips::where('id', $request->short_clips_id)->first();
+                        $manage_likes->likes = $manage_likes->likes + 1;
+                        $manage_likes->update();
+                        
+                       
+
+                        return response()->json([
+                                    'message' => 'you liked'
+                                        ], 200);
+                    }
+                } else {
+                    $like = new ShortClipsLikes();
+                    $like->user_id = $user_id;
+                    $like->is_active = '1';
+                    $like->short_clips_id = $request->short_clips_id;
+                    if ($like->save()) {
+                        $manage_likes = ManageShortClips::where('id', $request->short_clips_id)->first();
+                        $manage_likes->likes = $manage_likes->likes + 1;
+                        $manage_likes->update();
+                        return response()->json([
+                                    'message' => 'You Like a post',
+                                        ], 201);
+                    } else {
+                        return response()->json([
+                                    'message' => "please try again"
+                                        ], 500);
+                    }
+                }
+                return response()->json([
+                            'success' => true,
+                            'message' => 'likes added successfully.',
+                            'result' => $data
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("User data listing Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    }
+    
+
+    public function get_short_clips_by_id($id) {
+//        print_r("dfghjk");
+        $get_short_clips = ManageShortClips::find($id);
+        // print_r($get_short_clips);
+        // exit;
+    }
+
+    public function update_short_clips(Request $request) {
+
+        $validator = Validator::make($request->all(), [
+                    'likes' => 'required',
+        ]);
+        if ($validator->fails()) {
+            return response()->json([
+                        'error' => $validator->errors()], 401);
+        }
+        $shortclips = ManageShortClips();
+        $shortclips->likes = $req->input('likes');
+
+        $storeclips = $shortclips->save();
+        if ($storeclips == 1) {
+            return response()->json([
+                        'success' => true,
+                        'status' => 200,
+                        'message' => 'Short Clips Added Successfully',
+            ]);
+        } else {
+            return response()->json([
+                        'success' => true,
+                        'error' => 400,
+                        'message' => 'Please Try Again',
+            ]);
+        }
+    }
+
+    public function get_short_clips() {
+        $token = readHeaderToken();
+        if ($token) {
+//            $userid = auth()->user();
+
+            $shortdata = ManageShortClips::where('is_active','1')->get();
+
+            foreach ($shortdata as $k => $val) {
+
+                $shortdata[$k]['thumbnail'] = ListingImageUrl('short_clips', $val['thumbnail']);
+            }
+//            print_r($shortdata);
+//            exit;
+            return response([
+                'user' => $shortdata,
+                    //  'token' => $user->createToken('secret')->plainTextToken
+                    ], 200);
+        }
+    }
+    
+    public function get_short_clips_likes(){
+        //  try {
+//            print_r(User::first()->user);exit;
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                
+                $data = ShortClipsLikes::with('shortClicpLikes')->where('user_id', $user_id)->where('is_active','1')->get();
+                
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $data
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        // } catch (\Exception $e) {
+        //     \Log::error("User data listing Failed : " . $e->getMessage());
+        //     return response()->json([
+        //                 'success' => false,
+        //                 'message' => 'Something Went wrong.',
+        //     ]);
+        // }
+    }
+
+
+}
diff --git a/app/Http/Controllers/API/StepCountController.php b/app/Http/Controllers/API/StepCountController.php
new file mode 100644
index 0000000..40a361d
--- /dev/null
+++ b/app/Http/Controllers/API/StepCountController.php
@@ -0,0 +1,124 @@
+step_count);
+        $token = readHeaderToken();
+        if ($token) {
+            $stepCount = $request->step_count;
+            $userId = $token['sub'];
+            // dd($userId);
+            $server_date = Carbon::now()->toDateString();
+            $user_date = $request->date;
+            
+            if($user_date == null){
+                $date = $server_date;
+            }else{
+                $date = $user_date;
+            }
+            
+            $dailyStepCount = DailyStepsCount::where('user_id', $userId)
+                ->where('date', $date)
+                ->first();
+            // dd($dailyStepCount);
+                Log::info("dailyStepCount found at that date");
+            // dd($dailyStepCount->step_count);
+            
+            if ($dailyStepCount) {
+                $oldStepCounts = $dailyStepCount->step_count;
+                $oldPoints = $dailyStepCount->points;
+                
+                // if($oldStepCounts > $stepCount){
+                //     $stepCount = $oldStepCounts + $stepCount;
+                // }
+                
+                // if($device !== "android") {
+                    // if($stepCount>$oldStepCounts){
+                        $dailyStepCount->update(['step_count' => $stepCount]);
+                //     }  
+                // }else{
+                //     $dailyStepCount->update(['step_count' => $stepCount]);
+                // }
+               
+                
+                $latestSteps = $dailyStepCount->step_count;
+                // Update the step count for the current date and update points
+                
+                $latestPoints = intval(floor($latestSteps/1000));
+                if($latestPoints > $oldPoints){
+                    $currentPoints = $latestPoints - $oldPoints;
+                    
+                    //update points 
+                    $dailyStepCount->update(['points' => $latestPoints]);
+                    
+                    $leaderboardMaster = LeaderboardMaster::where('user_id', $userId)->first();
+                    
+                    if ($leaderboardMaster) {
+                        // $latestPoints = $latestPoints*5;
+                        $leaderboardMaster->total_score += 5*$currentPoints;
+                        $leaderboardMaster->save();
+                    }
+                    
+                } 
+                
+                $updated_step_counts = $points = intval(floor($dailyStepCount->step_count/1000));
+                $updated_points = $dailyStepCount->points;
+                if($updated_step_counts < $updated_points){
+                    $leaderboardMaster = LeaderboardMaster::where('user_id', $userId)->first();
+                    if ($leaderboardMaster) {
+                        
+                        $leaderboardMaster->total_score -= 5*$updated_points;
+                        $leaderboardMaster->total_score += 5*$updated_step_counts;
+                        $leaderboardMaster->save();
+                    }
+                    $dailyStepCount->update(['points' => $updated_step_counts]);
+                }
+                
+                    
+                
+            } else {
+                
+                 Log::info("New user Creating");
+                // Create a new record for the new day
+                $points = intval(floor($stepCount/1000));
+                $newDailyStepCount = new DailyStepsCount([
+                    'user_id' => $userId,
+                    'date' => $date,
+                    'step_count' => $stepCount,
+                    'points' => $points,
+                ]);
+        
+                $newDailyStepCount->save();
+                
+                $leaderboardMaster = LeaderboardMaster::where('user_id', $userId)->first();
+                if ($leaderboardMaster) {
+                    
+                    $leaderboardMaster->total_score += 5*$points;
+                    $leaderboardMaster->save();
+                }
+            }
+            
+        return response(['status' => "Success"], 200);    
+            
+        } else {
+            return response()->json([
+                'success' => false,
+                'message' => 'Authentication failed.',
+            ]);
+        }
+        
+    }
+}
diff --git a/app/Http/Controllers/API/TestimonialController.php b/app/Http/Controllers/API/TestimonialController.php
new file mode 100644
index 0000000..fd7306f
--- /dev/null
+++ b/app/Http/Controllers/API/TestimonialController.php
@@ -0,0 +1,76 @@
+inRandomOrder()->get();
+            // echo "
";
+            // print_r($testdata);
+            // exit;
+            // foreach ($testdata as  $val) {
+                
+            //     foreach($val['testimonial_data'] as $k =>$image){
+            //         $testdata[$k]['image'] = ListingImageUrl('testimonial', $val['image']);
+            //     }
+                
+            // }
+            return response([
+                'user' => $testdata,
+                    ], 200);
+        }
+    }
+    
+    public function store_testimonial(Request $req) {
+
+        $validator = Validator::make($req->all(), [
+                    'user_name' => 'required',
+                    'image' => 'required|image|mimes:jpg,png,jpeg,gif',
+                    'title' => 'required',
+                    'description' => 'required',
+                    'rating' => 'required',
+        ]);
+        if ($validator->fails()) {
+            return response()->json([
+                        'error' => $validator->errors()], 401);
+        }
+        $testimonials = new Testimonial();
+        $testimonials->user_name = $req->input('user_name');
+//        $testimonials->image = $req->input('image');
+        $testimonials->title = $req->input('title');
+        $testimonials->description = $req->input('description');
+        $testimonials->rating = $req->input('rating');
+        if ($req->hasFile('image')) {
+                        $file = $req->file('image');
+                        $ext = $file->extension();
+                        $file_name = time() . '.' . $ext;
+                        $path = public_path() . '/uploads/testimonial/';
+                        $file->move($path, $file_name);
+                        $testimonials->image = url('/public/uploads/testimonial/' . $file_name);
+                    }
+        $storetestimonial = $testimonials->save();
+        if ($storetestimonial == 1) {
+            return response()->json([
+                        'success' => true,
+                        'status' => 200,
+                        'message' => 'Testimonial Added Successfully',
+            ]);
+        } else {
+            return response()->json([
+                        'success' => true,
+                        'error' => 400,
+                        'message' => 'Please Try Again',
+            ]);
+        }
+    }
+}
diff --git a/app/Http/Controllers/API/UserController.php b/app/Http/Controllers/API/UserController.php
new file mode 100644
index 0000000..73af95a
--- /dev/null
+++ b/app/Http/Controllers/API/UserController.php
@@ -0,0 +1,73 @@
+where('is_active', '0')->first(['id', 'utm_source', 'start_date', 'end_date']);
+            if ($result) {
+                return response()->json([
+                    'success' => true,
+                    'message' => 'Data fetched successfully.',
+                    'result' => $result
+                ]);
+            } else {
+                return response()->json([
+                    'success' => false,
+                    'message' => 'User not found.'
+                ], 404);
+            }
+        } else {
+            return response()->json([
+                'success' => false,
+                'message' => 'Token not provided.'
+            ], 401);
+        }
+    }
+    
+    public function delete_user() {
+        $token = readHeaderToken();
+        if ($token) {
+            $user_id = $token['sub'];
+            // dd($user_id);
+            $user = User::find($user_id);
+            // dd($user);
+            if ($user) {
+                $data = $user->delete();
+                if ($data) {
+                    return response()->json([
+                        'success' => true,
+                        'message' => 'User deleted successfully.',
+                        'result' => $user
+                    ]);
+                } else {
+                    return response()->json([
+                        'success' => false,
+                        'message' => 'Failed to delete user.'
+                    ], 500);
+                }
+            } else {
+                return response()->json([
+                    'success' => false,
+                    'message' => 'User not found.'
+                ], 404);
+            }
+        } else {
+            return response()->json([
+                'success' => false,
+                'message' => 'Token not provided.'
+            ], 401);
+        }
+    }
+}
diff --git a/app/Http/Controllers/API/UserOverviewController.php b/app/Http/Controllers/API/UserOverviewController.php
new file mode 100644
index 0000000..37a3a53
--- /dev/null
+++ b/app/Http/Controllers/API/UserOverviewController.php
@@ -0,0 +1,329 @@
+toDateString();
+                // dd($todaysDate);
+                $oldUserRankings = LeaderboardMaster::with('user')->get();
+                $result = UserOverView::where("user_id", $user_id)
+                        ->where('created_at', $todaysDate)
+                        // ->orderBy('created_at', 'desc')
+                        ->exists();
+                if ($result) {
+                    $lastOverview = UserOverView::where('user_id', $user_id)
+                        ->orderBy('created_at', 'desc')
+                        // ->skip(1)
+                        ->first();
+                    UserOverView::where('user_id', $user_id)
+                        ->whereDay('created_at', now()->day)
+                        ->update([
+                            "muscle_rate" => $req->muscle_rate,
+                            "body_fat" => $req->body_fat,
+                            "skeletal_muscle" => $req->skeletal_muscle,
+                            "protein" => $req->protein,
+                            "bmr" => $req->bmr,
+                            "water" => $req->water,
+                            "age" => $req->age,
+                            "weight" => $req->weight,
+                        ]);
+                    $points = (100 - $req->body_fat) + $req->muscle_rate;
+                    
+                    $leaderboard = LeaderboardMaster::where('user_id', $user_id)->first();
+                    if ($leaderboard) {
+                        // $lastOverview = UserOverView::where('user_id', $user_id)
+                        //     ->orderBy('created_at', 'desc')
+                        //     // ->skip(1)
+                        //     ->first();
+                        if ($lastOverview) {
+                            $pointsToDeduct = (100 - $lastOverview->body_fat) + $lastOverview->muscle_rate;
+                            $leaderboard->total_score -= $pointsToDeduct;
+                            // dd($leaderboard);
+                            // Ensure total_score is not negative
+                            if ($leaderboard->total_score < 0) {
+                                $leaderboard->total_score = 0;
+                            }
+                        }
+                        
+                        $leaderboard->total_score += $points;
+                        
+                        
+                    }
+                    $leaderboard->save();
+                    
+                    $msg = "User Overview Updated Successfully.";
+                } else {
+                    $tellobj = new UserOverView();
+                    $tellobj->user_id = $user_id;
+                    $tellobj->muscle_rate = $req->muscle_rate;
+                    $tellobj->body_fat = $req->body_fat;
+                    $tellobj->skeletal_muscle = $req->skeletal_muscle;
+                    $tellobj->protein = $req->protein;
+                    $tellobj->bmr = $req->bmr;
+                    $tellobj->water = $req->water;
+                    $tellobj->age = $req->age;
+                    $tellobj->weight = $req->weight;
+                    $tellobj->save();
+
+                    // Calculate points based on body_fat and muscle_rate
+                    $points = (100 - $req->body_fat) + $req->muscle_rate ;
+                    
+                    $userDetails = UserDetail::where('user_id', $user_id)->first();
+                    if ($userDetails && $userDetails->gender == 'female') {
+                        $points += 25;
+                    }else{
+                        $points += 1;
+                    }
+                    
+                    $leaderboard = LeaderboardMaster::where('user_id', $user_id)->first();
+                    if ($leaderboard) {
+                        // Deduct points from yesterday's overview
+                        $lastOverview = UserOverView::where('user_id', $user_id)
+                            ->orderBy('created_at', 'desc')
+                            ->skip(1)
+                            ->first();
+                        if ($lastOverview) {
+                            $pointsToDeduct = (100 - $lastOverview->body_fat) + $lastOverview->muscle_rate ;
+                            $leaderboard->total_score -= $pointsToDeduct; 
+                            // Ensure total_score is not negative
+                            if ($leaderboard->total_score < 0) {
+                                $leaderboard->total_score = 0;
+                            }
+                        }
+    
+                        $leaderboard->total_score += $points;
+                    } else {
+                        $leaderboard = new LeaderboardMaster();
+                        $leaderboard->user_id = $user_id;
+                        $leaderboard->total_score = $points;
+                    }
+                      
+                    $leaderboard->save();
+                
+                    $msg = "User Overview Added Successfully.";
+                }
+
+                // Decrease 5 point for every 3 days since the previous overview
+            $lastOverview = UserOverView::where('user_id', $user_id)
+                ->orderBy('created_at', 'desc')
+                ->skip(1)
+                ->first();
+
+            if ($lastOverview) {
+                $daysSinceLastOverview = $lastOverview->created_at->diffInDays(now());
+                $pointsToDeduct = floor($daysSinceLastOverview / 3);
+
+                $leaderboard = LeaderboardMaster::where('user_id', $user_id)->first();
+                if ($leaderboard) {
+                    $leaderboard->total_score -= $pointsToDeduct;
+                    $leaderboard->save();
+                }
+            }
+             $newUserRanking = LeaderboardMaster::where('user_id',$user_id)->first();
+              if ($oldUserRankings && $newUserRanking) {
+                foreach ($oldUserRankings as $ranking) {
+                    $previousTotalScore = $ranking->total_score;
+                    $currentTotalScore = $newUserRanking->total_score;
+                   if($ranking->user_id==$user_id){
+                    if ($previousTotalScore === null) {
+                        $ranking->progress_bar = '0'; // Initial entry
+                    } elseif ($currentTotalScore > $previousTotalScore) {
+                        $ranking->progress_bar = '0'; // Total score increased
+                         $message = "You earned 1 point!";
+                    } elseif ($currentTotalScore < $previousTotalScore) {
+                        $ranking->progress_bar = '1'; // Total score decreased
+                         $message = "Your score decreased.";
+                    } else {
+                        $ranking->progress_bar = '2'; // Total score remained the same
+                        $message = "Your score remains the same.";
+                    }
+
+                    $ranking->save(); // Save the updated progress_bar value
+                    }
+
+                }
+//             dd($userRanking,$newUserRanking);
+                return response()->json([
+                            'success' => true,
+                            'message' => $msg,
+                            'progress_bar' => $message,
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        }
+        }catch (\Exception $e) {
+            \Log::error("Update Complete/Update Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    }
+
+    public function get_user_overview_by_id() {
+        try {
+//            print_r(User::first()->user);exit;
+            $token = readHeaderToken();
+            if ($token) {
+                $user_id = $token['sub'];
+                $data = UserOverView::where('user_id', $user_id)->get();
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'result' => $data
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("User data listing Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    }
+
+    public function show_user_overview(Request $request) {
+        // dd($request->created_at);
+        // try {
+
+            $token = readHeaderToken();
+            if ($token) {
+                // dd($request->created_at);
+                $user_id = $token['sub'];
+                if($request->created_at)
+                {
+                    $data = UserOverView::where('user_id',$user_id)->where('created_at', $request->created_at)->first();
+                }else{
+                    $data = UserOverView::where('user_id',$user_id)->get();
+                }
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'authorisation' => [
+                                'user_data' => $data
+                            ]
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        // } catch (\Exception $e) {
+        //     \Log::error("User data listing Failed : " . $e->getMessage());
+        //     return response()->json([
+        //                 'success' => false,
+        //                 'message' => 'Something Went wrong.',
+        //     ]);
+        // }
+    }
+    
+    public function showUserOverview_new(Request $request){
+        
+        // dd($request->created_at);
+        try {
+
+            $token = readHeaderToken();
+            if ($token) {
+                // dd($request->created_at);
+                $user_id = $token['sub'];
+                if($request->created_at)
+                {
+                    $data = UserOverView::where('user_id',$user_id)->where('created_at', $request->created_at)->first();
+                }else{
+                    
+                    if($request->data == "week"){
+                        $last7Days = Carbon::now()->subDays(7);
+                        $data = UserOverView::where('user_id',$user_id)->where('created_at','>=',$last7Days)->get();
+                    }elseif($request->data == "month"){
+                        $last30Days = Carbon::now()->subDays(30);
+                        $data = UserOverView::where('user_id',$user_id)->where('created_at','>=',$last30Days)->get();
+                    }elseif($request->data == "year"){
+                        $lastYear = Carbon::now()->subYear();
+                        // dd($lastYear);
+                        $data = UserOverView::where('user_id',$user_id)->where('created_at','>=',$lastYear)->get();
+                    }
+                }
+                    
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Data fetched successfully.',
+                            'authorisation' => [
+                                'user_data' => $data
+                            ]
+                ]);
+            } else {
+                return response()->json([
+                            'success' => false,
+                            'message' => 'Authentication failed.',
+                ]);
+            }
+        } catch (\Exception $e) {
+            \Log::error("User data listing Failed : " . $e->getMessage());
+            return response()->json([
+                        'success' => false,
+                        'message' => 'Something Went wrong.',
+            ]);
+        }
+    
+    }
+    
+    public function resetPoints(){
+        
+        $currentDate = date('Y-m-d');
+        $activityData = ActivityMaster::orderBy('id','desc')->first();
+        if($activityData){
+            $start_date = $activityData->start_date;
+            if($currentDate < $start_date){
+                $leaderBoaradData = LeaderboardMaster::all();
+                // dd($leaderBoaradData);
+                foreach($leaderBoaradData as $data){
+                    LeaderboardMaster::where('user_id',$data->user_id)->update(['total_score' => 0]);
+                }
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Reset Succefully'
+                        ],200);
+            }else{
+                return response()->json([
+                            'success' => true,
+                            'message' => 'Season is not end yet!'
+                        ],201);
+            }
+        }else{
+            return response()->json([
+                            'success' => flase,
+                            'message' => 'No Activity Found'
+                        ],404);
+        }
+        
+    }
+
+}
diff --git a/app/Http/Controllers/API/ViewDevicesOneSignalController.php b/app/Http/Controllers/API/ViewDevicesOneSignalController.php
new file mode 100644
index 0000000..f00d48f
--- /dev/null
+++ b/app/Http/Controllers/API/ViewDevicesOneSignalController.php
@@ -0,0 +1,20 @@
+request('GET', 'https://onesignal.com/api/v1/players?app_id=1be4b99b-8faa-45b8-ad82-c66225d77bf4&limit=10&offset=0', [
+        'headers' => [
+            'Authorization' => 'Basic MWM2NGEyODUtN2U5MS00MzlkLWJhYmItZGUyODRjYTlmNGJm',
+            'accept' => 'text/plain',
+            ],
+        ]);
+        return $response->getBody();
+    }
+}
diff --git a/app/Http/Controllers/Admin/AboutUsController.php b/app/Http/Controllers/Admin/AboutUsController.php
new file mode 100644
index 0000000..0b9ce51
--- /dev/null
+++ b/app/Http/Controllers/Admin/AboutUsController.php
@@ -0,0 +1,48 @@
+manageAboutUsService = $manageAboutUsService;
+    } 
+
+    public function view_about_us(){
+
+        $about_us['about_us'] = $this->manageAboutUsService->view_about_us()->toArray();
+        // echo "
";
+        // print_r($about_us);
+        // echo "
";exit; + + // dd($about_us); + return view('Admin.Pages.manage_cms.about_us.about_us',$about_us); + } + + public function edit_about_us($id) + { + $about_us['about_us'] = $this->manageAboutUsService->edit_about_us($id)->toArray(); + // echo "
";
+        // print_r($about_us);
+        // echo "
";exit; + return view('Admin.Pages.manage_cms.about_us.edit_about_us',$about_us); + } + + public function update_about_us(Request $request) + { + $edit_about_us = $this->manageAboutUsService->update_about_us($request); + if(!empty($edit_about_us)) + { + return response()->json(['success' => true , 'status' => 200]); + } + else{ + return response()->json(['success' => false , 'status' => 422]); + } + + } +} diff --git a/app/Http/Controllers/Admin/ActivityDaysController.php b/app/Http/Controllers/Admin/ActivityDaysController.php new file mode 100644 index 0000000..39d1c23 --- /dev/null +++ b/app/Http/Controllers/Admin/ActivityDaysController.php @@ -0,0 +1,305 @@ +with('scheduleData','activityData') +//// ->where('start_date', '<=',$current_day) +//// ->where('end_date', '>=',$current_day) +//// ->where() +// ->get() +// ->toArray(); +//// echo "
"; print_r($manage_activity_day);exit;
+//        return view('Admin.Pages.manage_activities.activity_days.activity_days')->with(['manage_activity_day' => $manage_activity_day]);
+//    }
+
+    public function show($id) {
+        $current_day = now()->format('Y-m-d'); // Get the current date in the format "YYYY-MM-DD"
+
+        $manage_activity_day = ActivityDay::where('activity_schedule_id', $id)
+                ->with('scheduleData', 'activityData')
+                ->where('date', 'LIKE', "%$current_day%") // Check if the current date is present in the "days" column
+                ->get()
+                ->toArray();
+
+        return view('Admin.Pages.manage_activities.activity_days.activity_days')->with(['manage_activity_day' => $manage_activity_day]);
+    }
+
+    public function add($id) {
+        // dd($id);
+        $get_single_schedule = ActivitySchedule::find($id)->toArray();
+        // echo '
';print_r($get_single_schedule);exit;
+        // dd($get_single_schedule);
+        $subcription = SubscriptionMaster::all()->toArray();
+        return view('Admin.Pages.manage_activities.activity_days.add_activity_days')->with(['get_schedule_data' => $get_single_schedule, 'subcriptions' => $subcription]);
+    }
+    
+    public function add_upcoming($id) {
+
+        $get_single_schedule = ActivitySchedule::find($id)->toArray();
+        // echo '
';print_r($get_single_schedule);exit;
+
+        $subcription = SubscriptionMaster::all()->toArray();
+        return view('Admin.Pages.manage_activities.activity_days.add_upcoming_activity_day')->with(['get_schedule_data' => $get_single_schedule, 'subcriptions' => $subcription]);
+    }
+    
+    public function add_data(Request $request) {
+
+//        echo '
';
+//        print_r($request->all());
+//        exit;
+        $rules = [
+            'myFile' => 'required|file|max:400', // 400 KB
+        ];
+    
+        $validator = Validator::make($request->all(),$rules);
+ 
+        if ($validator->fails()) {
+            if ($request->expectsJson()) {
+                return response()->json(['success' => false , 'status' => 422]);
+            }
+        }
+        else {
+            $file = $request->file('myFile');
+            $ext = $file->extension();
+            $file_name = time() . '.' . $ext;
+            $path = public_path() . '/uploads/activity_banner_images/activity_day';
+            $file->move($path, $file_name);
+        }
+        $activity_day = new ActivityDay;
+        $activity_day->activity_master_id = $request->input('activity_id');
+        $activity_day->activity_schedule_id = $request->input('schedule_id');
+        $activity_day->activity_name = $request->input('main_activity_name');
+        $activity_day->activity_teaser = url('/public/uploads/activity_banner_images/activity_day/' . $file_name);
+        $activity_day->activity_duration = $request->input('activity_duration');
+        $activity_day->description = $request->input('description');
+        $activity_day->date = $request->input('date');
+        $activity_day->day = $request->input('day');
+        $activity_day->time = $request->input('time');
+        $activity_day->zoom_link = $request->input('zoom_link');
+        $activity_day->subscription_id = $request->input('subscription_id');
+        
+        $date = strtotime($request->input('date'));
+        // Retrieve the ActivityMaster record
+        $activity_schedule = ActivitySchedule::find($request->input('schedule_id'));
+
+        $activity_shedule_start_date = strtotime($activity_schedule->start_date);
+        $activity_shedule_end_date = strtotime($activity_schedule->end_date);
+        if ($date >= $activity_shedule_start_date && $date <= $activity_shedule_end_date) {
+            $activity_day->save();
+            return response()->json([
+                        'schedule_data' => $activity_day->activity_schedule_id,
+                        'success' => true,
+                        'status' => 200,
+            ]);
+        } else {
+            return response()->json([
+                        'error_msg' => 'Start date or end date is not within the activity master range.',
+                        'success' => false,
+                        'status' => 400,
+            ]);
+        }
+    }
+    
+     public function add_upcoming_data(Request $request) {
+
+//        echo '
';
+//        print_r($request->all());
+//        exit;
+        $rules = [
+            'myFile' => 'required|file|max:400', // 400 KB
+        ];
+    
+        $validator = Validator::make($request->all(),$rules);
+ 
+        if ($validator->fails()) {
+            if ($request->expectsJson()) {
+                return response()->json(['success' => false , 'status' => 422]);
+            }
+        }
+        else {
+            $file = $request->file('myFile');
+            $ext = $file->extension();
+            $file_name = time() . '.' . $ext;
+            $path = public_path() . '/uploads/activity_banner_images/activity_day';
+            $file->move($path, $file_name);
+        }
+
+        $activity_day = new ActivityDay;
+        $activity_day->activity_master_id = $request->input('activity_id');
+        $activity_day->activity_schedule_id = $request->input('schedule_id');
+        $activity_day->activity_name = $request->input('main_activity_name');
+        $activity_day->activity_teaser = url('/public/uploads/activity_banner_images/activity_day/' . $file_name);
+        $activity_day->activity_duration = $request->input('activity_duration');
+        $activity_day->description = $request->input('description');
+        $activity_day->date = $request->input('date');
+        $activity_day->day = $request->input('day');
+        $activity_day->time = $request->input('time');
+        $activity_day->subscription_id = $request->input('subscription_id');
+        $activity_day->zoom_link = $request->input('zoom_link');
+
+        $date = strtotime($request->input('date'));
+        // Retrieve the ActivityMaster record
+        $activity_schedule = ActivitySchedule::find($request->input('schedule_id'));
+
+        $activity_shedule_start_date = strtotime($activity_schedule->start_date);
+        $activity_shedule_end_date = strtotime($activity_schedule->end_date);
+        if ($date >= $activity_shedule_start_date && $date <= $activity_shedule_end_date) {
+            $activity_day->save();
+            return response()->json([
+                        'schedule_data' => $activity_day->activity_schedule_id,
+                        'success' => true,
+                        'status' => 200,
+            ]);
+        } else {
+            return response()->json([
+                        'error_msg' => 'Start date or end date is not within the activity master range.',
+                        'success' => false,
+                        'status' => 400,
+            ]);
+        }
+    }
+
+    public function edit_activity_day($id) {
+        $manage_activity_day = ActivityDay::where('id', $id)->with('scheduleData', 'activityData')
+                ->get()
+                ->toArray();
+                // echo "
"; print_r($manage_activity_day);exit;
+//        return view('Admin.Pages.manage_activities.activity_days.activity_days')->with(['manage_activity_day' => $manage_activity_day]);
+//    }
+
+        $subcription = SubscriptionMaster::all()->toArray();
+        
+        return view('Admin.Pages.manage_activities.activity_days.edit_activity_days')->with(['manage_activity_day' => $manage_activity_day, 'subcriptions' => $subcription]);
+    }
+    
+    //upcoming edit 
+    
+    public function edit_upcoming_activity_day($id) {
+        $manage_activity_day = ActivityDay::where('id', $id)->with('scheduleData', 'activityData')
+                ->get()
+                ->toArray();
+
+        $subcription = SubscriptionMaster::all()->toArray();
+        return view('Admin.Pages.manage_activities.activity_days.edit_upcoming_activity_day')->with(['manage_activity_day' => $manage_activity_day, 'subcriptions' => $subcription]);
+    }
+    
+    public function edit_activity_day_data(Request $request) {
+
+//        echo '
';
+//        print_r($request->all());
+//        exit;
+        $activity_day = ActivityDay::find($request->edit_main_activity_id);
+        $activity_day->activity_name = $request->input('activity_name');
+        if ($request->file('activity_teaser')) {
+            $rules = [
+                'activity_teaser' => 'required|file|max:400', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+     
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return response()->json(['success' => false , 'status' => 422]);
+                }
+            }
+            else {
+                $file = $request->file('activity_teaser');
+                $ext = $file->extension();
+                $file_name = time() . '.' . $ext;
+                $path = public_path() . '/uploads/activity_banner_images/activity_day/';
+                $file->move($path, $file_name);
+                $file_name_store = url('/public/uploads/activity_banner_images/activity_day/' . $file_name);
+                $activity_day->activity_teaser = url('/public/uploads/activity_banner_images/activity_day/' . $file_name);
+            }
+//        print_r($file_name_store);exit;
+        }
+        $activity_day->activity_duration = $request->input('activity_duration');
+        $activity_day->description = $request->input('description');
+        $activity_day->date = $request->input('date');
+        $activity_day->day = $request->input('day');
+        $activity_day->time = $request->input('time');
+        $activity_day->zoom_link = $request->input('zoom_link');
+        $activity_day->subscription_id = $request->input('subscription_id');
+        $activity_day->save();
+        return response()->json(['success' => true, 'status' => 200,'day_data'=>$request->activity_schedule_master_id]);
+    }
+    
+    public function edit_upcoming_activity_day_data(Request $request) {
+
+//        echo '
';
+//        print_r($request->all());
+//        exit;
+        $activity_day = ActivityDay::find($request->edit_main_activity_id);
+        $activity_day->activity_name = $request->input('activity_name');
+        if ($request->activity_teaser) {
+            $rules = [
+                'activity_teaser' => 'required|file|max:400', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+     
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return response()->json(['success' => false , 'status' => 422]);
+                }
+            }
+            else {
+                $file = $request->file('activity_teaser');
+                $ext = $file->extension();
+                $file_name = time() . '.' . $ext;
+                $path = public_path() . '/uploads/activity_banner_images/activity_day/';
+                $file->move($path, $file_name);
+                $file_name_store = url('/public/uploads/activity_banner_images/activity_day/' . $file_name);
+                $activity_day->activity_teaser = url('/public/uploads/activity_banner_images/activity_day/' . $file_name);
+            }
+//        print_r($file_name_store);exit;
+        }
+        $activity_day->activity_duration = $request->input('activity_duration');
+        $activity_day->description = $request->input('description');
+        $activity_day->date = $request->input('date');
+        $activity_day->day = $request->input('day');
+        $activity_day->time = $request->input('time');
+        
+        $activity_day->zoom_link = $request->input('zoom_link');
+        $activity_day->subscription_id = $request->input('subscription_id');
+        $activity_day->save();
+        return response()->json(['success' => true, 'status' => 200,'day_data'=>$request->activity_schedule_master_id]);
+    }
+
+    public function upcomimg_days_show($id) {
+        $current_day = now()->format('Y-m-d'); // Get the current date in the format "YYYY-MM-DD"
+
+        $manage_activity_day = ActivityDay::where('activity_schedule_id', $id)
+                ->with('scheduleData', 'activityData')
+                ->where('date', '>', "$current_day") // Check if the current date is present in the "days" column
+                ->get()
+                ->toArray();
+
+        return view('Admin.Pages.manage_activities.activity_days.upcoming_activity_days')->with(['manage_activity_day' => $manage_activity_day]);
+    }
+    
+    public function delete_activity_days($id) {
+        // print_r($id);
+        // exit;
+        $manage_activity_days = ActivityDay::find($id)->delete();
+    }
+
+}
diff --git a/app/Http/Controllers/Admin/DashboardController.php b/app/Http/Controllers/Admin/DashboardController.php
new file mode 100644
index 0000000..adb4639
--- /dev/null
+++ b/app/Http/Controllers/Admin/DashboardController.php
@@ -0,0 +1,36 @@
+with(['user_count' => $userCount]);
+//    }
+    
+    public function view_dashboard() {
+        // dd(Auth::user());
+        $manage_dashboard = LeaderboardMaster::with('user')
+                            ->whereHas('user')
+                            ->orderBy('total_score', 'desc') // Use 'asc' for ascending order
+                            ->get()
+                            ->toArray();
+//            echo "
";
+//            print_r($manage_dashboard);
+//            exit();
+
+        // Sort the $manage_dashboard array by the 'total_score' attribute in descending order
+            // usort($manage_dashboard, function($a, $b) {
+            //     return $b['total_score'] <=> $a['total_score'];
+            // });
+        return view('Admin.dashboard')->with(['manage_dashboard' => $manage_dashboard]);
+
+    }
+}
diff --git a/app/Http/Controllers/Admin/DirectUserController.php b/app/Http/Controllers/Admin/DirectUserController.php
new file mode 100644
index 0000000..b99255d
--- /dev/null
+++ b/app/Http/Controllers/Admin/DirectUserController.php
@@ -0,0 +1,46 @@
+get()->toArray();
+        
+        // dd($data);
+        return view('Admin.Pages.direct_users.direct_user')->with(['user_data'=> $data]);
+    }
+    
+    public function import(Request $request)
+    {
+        try {
+            $validation = $request->validate([
+                'csv_file' => 'required|mimes:csv,txt,xlsx',
+            ]);
+            // dd($request->all());
+            // Use try-catch to handle exceptions thrown by Excel::import
+            // try {
+                Excel::import(new UserImport, $request->file('csv_file'));
+                return response()->json(['success' => true, 'status' => 200]);
+            // } catch (ValidationException $e) {
+            //     // Catch the validation exception and extract errors
+            //     $errors = $e->validator->errors()->toArray();
+
+            //     return response()->json(['errors' => $errors], 422); // 422 Unprocessable Entity
+            // }
+
+            
+        } catch (\Exception $e) {
+            return response()->json(['error' => 'Error importing data: ' . $e->getMessage()], 500);
+        }
+    }
+}
+
diff --git a/app/Http/Controllers/Admin/LoginController.php b/app/Http/Controllers/Admin/LoginController.php
new file mode 100644
index 0000000..fbc35fa
--- /dev/null
+++ b/app/Http/Controllers/Admin/LoginController.php
@@ -0,0 +1,346 @@
+"; print_r($data);exit;
+        return view('Admin.two_steps',$data);
+    }
+
+//    public function sendOtp(Request $request) 
+//    {
+//        try {
+//            $msg_data = array();
+//            $validationErrors = $this->validateLogin($request);
+//            if (count($validationErrors)) {
+//                \Log::error("Auth Exception: " . implode(", ", $validationErrors->all()));
+//                $msg_data['data'] = array("success" => '0', "message" => implode("\n", $validationErrors->all()));
+//                return response()->json($msg_data);
+//            }
+//            $email = trim(strtolower($request->email));
+//            //check admin exist with this email or not
+//            $admin_exits = AdminMaster::where('email_id', $email)->get();
+//            // echo "
";
+//            // print_r($admin_exits[0]->password);
+//            // die;
+//            if (empty($admin_exits)) {
+//                $msg_data['data'] = array(
+//                    "success" => '0',
+//                    "message" => "Admin does not exist");
+//                return response()->json($msg_data);
+//            }
+//            //verifying password from table
+//            $password = md5($request->password);
+//           
+//            // print_r($admin_exit."
"); +// if ($password == $admin_exits[0]->password) +// { +// $admin_data = AdminMaster::where('email_id', $email)->where('pin', $request->digit_pin)->first(); +// if (empty($admin_data)) +// { +// \Log::error("Admin not found with this email id and pin is incorrect."); +// $msg_data['data'] = array("success" => '0', "message" => "Please enter correct pin!"); +// return response()->json($msg_data); +// } +// +// if ($admin_data->is_active == 1) { +// // print_r($admin_data->is_active); +// // die; +// // \Log::info("Login Successful!"); +// $enc_data = Crypt::encrypt($email); +// // print_r($enc_data); +// // die; +// //update otp to table +// $otp_data = array(); +// $otp_data['otp'] = $otp = generateRandomOTP(); +// $checkOtp = AdminMaster::where('email_id', $email)->first(); +// $update_otp = AdminMaster::find($checkOtp->id); //->update($otp_data); +// $update_otp->otp = $otp; +// $update_otp->save(); +// // print_r($update_otp); +// // die; +// +// //send email otp section start +// // $body = "Login Verification, please use the verification code to sign in Code " . $otp; +// // Mail::send("Admin.auth.send_otp", ['body'=> $body], function ($message) use ($email) { +// // $message->from('pradyumn@wdimails.com', 'WOKA'); +// // $message->to($email, 'WOKA')->subject('Woka Sign in OTP'); +// // }); +// +// $msg_data['data'] = array("success" => '1', "message" => "OTP has been sent to your mails. " . $otp, "redirect" => "two_step", "email" => $enc_data); +// return response()->json($msg_data); +// } else { +// \Log::error("Account Suspended."); +// $msg_data['data'] = array("success" => '0', "message" => 'Account is suspended.'); +// return response()->json($msg_data); +// } +// return response()->json($msg_data); +// } else +// { +// $msg_data['data'] = array("success" => '0', "message" => 'Incorrect Password.'); +// return response()->json($msg_data); +// } +// return response()->json($msg_data); +// } catch (\Exception $e) { +// \Log::error("Login failed: " . $e->getMessage()); +// return response()->json(array("success" => '0', "message" => 'Something Went Wrong.')); +// } +// } + + public function sendOtp(Request $request) + { + try { + $msg_data = array(); + $validationErrors = $this->validateLogin($request); +// print_r($validationErrors); exit; + if (count($validationErrors)) { + \Log::error("Auth Exception: " . implode(", ", $validationErrors->all())); + $msg_data['data'] = array("success" => '0', "message" => implode("\n", $validationErrors->all())); + return response()->json($msg_data); + } + + $email = trim(strtolower($request->email)); + //check admin exist with this email or not + $admin_exits = AdminMaster::where('email_id', $email)->first(); +// print_r($admin_exits); exit; + if (empty($admin_exits)){ + $msg_data['data'] = array( + "success" => '0', + "message" => "Admin does not exist!"); + return response()->json($msg_data); + } + //verifying password from table +// print_r($admin_exits->password);exit; +//dd( (Hash::check(trim($request->password), $admin_exits->password) ) +// ,$request->password,$admin_exits->password); + $verify_pass = Hash::check($request->password,$admin_exits->password); +// print_r($verify_pass); exit; + if ($verify_pass){ + $admin_data = AdminMaster::where([['email_id', $email], ['pin', $request->digit_pin]])->first(); + if (empty($admin_data)) { + \Log::error("Admin not found with this email id and pin is incorrect."); + $msg_data['data'] = array("success" => '0', "message" => "Please enter correct pin!"); + return response()->json($msg_data); + } + + if ($admin_data->is_active == 1) { + // \Log::info("Login Successful!"); + $enc_data = Crypt::encrypt($email); + + //update otp to table + $now = Carbon::now('Asia/Kolkata')->format('Y-m-d H:i:s'); + $otp_data = array(); + // generateRandomOTP(); + $otp_data['otp'] = $otp = 1234; + $checkOtp = AdminMaster::where('email_id', $email)->first(); + $update_otp = AdminMaster::find($checkOtp->id);//->update($otp_data); + $update_otp->otp = $otp; + $update_otp->updated_at = $now; + $update_otp->save(); + + //send email otp section start + $body = $otp; + $mail = Mail::send("Admin.Templates.sign_in_otp", ['body'=> $body], function ($message) use ($email) { + $message->from('getsetfit@gmail.com', 'GSF'); + $message->to($email, 'GSF')->subject('Gsf Sign in OTP'); + }); + if ($mail){ + $msg_data['data'] = array("success" => '1', "message" => "OTP has been sent to your mail.", "redirect" => "two_step", "email_id" => $enc_data); + return response()->json($msg_data); + }else{ + $msg_data['data'] = array("success" => '0', "message" => "Failed to send OTP. Please try again later."); + return response()->json($msg_data); + } + } + else { + \Log::error("Account Suspended."); + $msg_data['data'] = array("success" => '0', "message" => 'Account is suspended.'); + return response()->json($msg_data); + } + return response()->json($msg_data); + } + $msg_data['data'] = array("success" => '0', "message" => 'Incorrect Password!'); + return response()->json($msg_data); + } catch (\Exception $e) { + \Log::error("Login failed: " . $e->getMessage()); + $msg_data['data'] = array("success" => '0', "message" => 'Something Went Wrong!'); + return response()->json($msg_data); + } + } +// * Uses : Validates input login request + public function validateLogin(Request $request) + { + return \Validator::make($request->all(), + [ + 'email' => 'required|email|string', + 'password' => 'required|string', + 'digit_pin' => 'required|digits:4' + ], + [ + 'email.required' => 'Please enter your email.', + 'password.required' => 'Please enter your password.', + 'pin.required' => 'Please enter your pin.', + 'digit_pin.digits' => 'Pin must be 4 digit only.' + ])->errors(); + } + + public function verifyLogin(Request $request) + { +// print_r($request->all);exit; + try{ + $msg_data = array(); + $validationErrors = $this->validateVerifyLoginRequest($request); + if (count($validationErrors)) { + \Log::error("Auth Exception: " . implode(", ", $validationErrors->all())); + $msg_data['data'] = array("success" => '0', "message" => implode("\n", $validationErrors->all())); + return response()->json($msg_data); + } + + $email = trim(strtolower(decrypt($request->d))); + // print_r($request->otp); + // die; + // $email = decrypt($request->email); + $admin_data = AdminMaster::where([['email_id', $email],['otp', $request->otp]])->first(); + if(empty($admin_data)){ + $msg_data['data'] = array("success" => '0', "message" => 'Invalid OTPd.'); + return response()->json($msg_data); + } + + // convert UTc time zone to local + $datetime = new DateTime($admin_data->updated_at); + $timezone = new DateTimeZone('Asia/Kolkata'); // or whatever zone you're after + $datetime->setTimezone($timezone); + $update_datetime = $datetime->format('Y-m-d H:i:s'); + + //add 5 minut to updated at + $minutes_to_add = 5; + $time = new DateTime($update_datetime); + $time->add(new DateInterval('PT' . $minutes_to_add . 'M')); + $timestamp = $time->format('Y-m-d H:i:s'); + + //current time + $now = Carbon::now('Asia/Kolkata')->format('Y-m-d H:i:s'); + + if($admin_data){ + if($now > $timestamp){ + $msg_data = array("success" => '0', "message" => 'OTP has been expired.'); + return response()->json($msg_data); + } + else{ + // if(!empty($admin_data)){ + //creating session if otp is verified + $data = array( + "id"=>$admin_data->id, + "email_id"=>$email, + ); + // print_r($data); + // die; + // session_start(); + // $request->session()->put('data',$data); +// $sessionDetails = Session::put('data', $data); + Session::put('data', $data); + $request->session()->put('data',$data); +// $sessionDetails= session(['data' => $data]); + +// dd($data,$sessionDetails); + // \Session::save(); + +// print_r(session('data'));exit; + // die; + $msg_data['data'] = array("success" => '1', "message" => 'Sign In Successfully.', "redirect" => "dashboard"); + return response()->json($msg_data); + } + }else{ + $msg_data = array("success" => '0', "message" => 'Invalid OTP.'); + return response()->json($msg_data); + } + + }catch (\Exception $e) { + \Log::error("Login failed: " . $e->getMessage()); + return response()->json(array("success" => '0', "message" => 'Something Went Wrong.')); + } + } + + public function validateVerifyLoginRequest(Request $request) + { + return \Validator::make($request->all(), + [ + 'otp' => 'required|digits:4', + ], + [ + 'otp.required' => 'Please enter 4 digit OTP.', + 'otp.digits' => 'OTP must be 4 digit.' + ])->errors(); + } + + public function adminPostLogin(Request $request) + { + // print_r($request->all()); + // exit; + $request->validate([ + 'email' => 'required', + 'password' => 'required', + ]); + + $credentials = $request->only('email', 'password'); + + $admins = AdminMaster::where('email_id', $request->email)->first(); + // dd($admins); + // $loginInfo = AdminMaster::where('email_id',$request->email)->first(); + // dd($credentials,Auth::attempt($credentials)); + // dd(Auth::login($admins)); + // Auth::attempt(['email_id' => $request->email,'password' => $request->password]); + // dd(Auth::attempt(['email_id' => $request->email,'password'=> $request->password])); + if ($admins && Auth::guard('admin')->attempt(['email_id' => $request->email,'password'=> $request->password])) { + + + + // dd(Auth::guard('admin')->attempt(['email_id' => $request->email,'password'=> $request->password])); + $user = Auth::guard('admin')->user(); + // dd($user); + // $token = JWTAuth::fromUser($user); // Generate JWT token for the admin + + // Store the token in the session + // Session::put('admin_token', $token); + + + + return response(['success'=>true, 'message'=>"You Have Logged in Successfully"]); + // ->withHeaders(['X-admin-token' => $token]); + + // return redirect()->intended('dashboard')->withSuccess('You have Successfully logged in'); + }else{ + + return response(['success'=>false, 'message'=>"Invalid! Email or Password "]); + } + // return redirect()->route('login')->with('error', 'ddddInvalid email or password.'); + // return redirect("login"); + } + +} diff --git a/app/Http/Controllers/Admin/ManageActivitiesController.php b/app/Http/Controllers/Admin/ManageActivitiesController.php new file mode 100644 index 0000000..139c04a --- /dev/null +++ b/app/Http/Controllers/Admin/ManageActivitiesController.php @@ -0,0 +1,403 @@ +toDateString(); + + $manage_activity_schedule = ActivitySchedule::where('activity_master_id', $id) + ->where('start_date', '<=',$current_day) + ->where('end_date', '>=',$current_day) + ->get() + ->toArray(); +// echo "
"; print_r($manage_activity_schedule);exit;
+        return view('Admin.Pages.manage_activities.summer_sweats.summer_sweat')->with(['manage_activity_schedule' => $manage_activity_schedule]);
+    }
+    
+    public function show_upcoming_schedule($id) {
+        
+        $current_day = Carbon::now()->toDateString();
+
+        $manage_activity_schedule = ActivitySchedule::with('subscription')
+                                                    ->where('activity_master_id', $id)
+                                                    ->where('end_date', '>=',$current_day)
+                                                    ->get()
+                                                    ->toArray();
+//                echo "
"; print_r($manage_activity_schedule);exit;
+        return view('Admin.Pages.manage_activities.summer_sweats.upcoming_summer_sweat')->with(['manage_activity_schedule' => $manage_activity_schedule]);
+    }
+//    public function index() {
+//        $add_past_session = PastSession::all()->toArray();
+////        echo "
"; print_r($add_past_session);exit;
+//        $manage_activity = ActivityMaster::with('subscription','schedule')->get()->toArray();
+////        echo "
";print_r($manage_activity);exit;
+//        $act_sch = array_column($manage_activity,'schedule');
+////         echo "
"; print_r($act_sch);exit;
+//        return view('Admin.Pages.manage_activities.manage_activity')->with(['data' => $manage_activity,'act_sch'=>$act_sch,'past_session'=>$add_past_session]);
+//    }
+
+    public function index() {
+        $add_past_session = PastSession::all()->toArray();
+        $currentDate = date('Y-m-d');
+        $schedule_data= [];
+        $manage_upcoming_activity = ActivityMaster::with('subscription', 'schedule')
+                // ->where('start_date', '<=', $currentDate)
+                ->where('end_date', '>=', $currentDate)
+                ->get()
+                ->toArray();
+        $manage_live_activity = ActivityMaster::with('subscription', 'schedule')
+                ->where('start_date', '<=', $currentDate)
+                ->where('end_date', '>=', $currentDate)
+                ->get()
+                ->toArray();
+//        $act_sch = array_column($manage_activity, 'schedule');
+//        if($manage_activity){
+//        $activity_master_id = $manage_activity[0]['id'];
+//        $manage_activity_upcomimg = ActivitySchedule::with('subscription')
+//                        ->where('activity_master_id',$activity_master_id)
+//                        ->where('start_date', '>=' , $currentDate)
+//                        ->get()
+//                        ->toArray();
+        
+        $manage_past_activity = ActivityMaster::with('subscription')
+                        ->where('start_date','<=',$currentDate)
+                        ->get()
+                        ->toArray();
+//        }
+//        echo "
";print_r($manage_activity_past);exit;
+//        $past_data = [];
+//        foreach ($schedule_data as $value){
+//            
+//            $past_data[$value['id']] = PastSession::where('activity_schedule_id',$value['id'])->get()->toArray();
+////            print_r($past_data);
+////            exit;
+//            
+//        }
+//        echo '
';print_r($past_data);exit;
+//        echo "
";print_r($manage_activity_upcomimg);exit;
+        return view('Admin.Pages.manage_activities.manage_activity')
+                        ->with(['data' => $manage_upcoming_activity,'past_session' => $manage_past_activity,'live_data' => $manage_live_activity]);
+    }
+
+    public function insert_main_activity(Request $request) {
+        
+        // dd($request->all());
+        $rules = [
+            'myFile' => 'required|file|max:400', // 400 KB
+        ];
+    
+        $validator = Validator::make($request->all(),$rules);
+        
+        //for benifit null value validation
+        foreach($request->benefits as $benefit){
+            if (is_null($benefit)) {
+                return response()->json(['success' => false,'status' => 403]);
+            }
+        }
+        
+        //for pre_requisites null value validation
+        foreach($request->pre_requisites as $pre_requisites){
+            if (is_null($pre_requisites)) {
+                return response()->json(['success' => false,'status' => 402]);
+            }
+        }
+        if ($validator->fails()) {
+            if ($request->expectsJson()) {
+                return response()->json([
+                    'success' => false,
+                    'status' => 422]);
+            }
+        }
+        else {
+            $file = $request->file('myFile');
+            $ext = $file->extension();
+            $file_name = time() . '.' . $ext;
+            $path = public_path() . '/uploads/activity_banner_images';
+            $file->move($path, $file_name);
+        }
+
+        $activity_master = new ActivityMaster;
+        $activity_master->activity_name = $request->input('activity_name');
+        $activity_master->title = $request->input('activity_title');
+        $activity_master->main_activity_banner = url('/public/uploads/activity_banner_images/' . $file_name);
+        $activity_master->description = $request->input('description');
+        $activity_master->start_date = $request->input('start_date');
+        $activity_master->end_date = $request->input('end_date');
+        $activity_master->teacher_id = $request->input('teacher_id');
+        // $activity_master->teaser_url = $request->input('video_teaser_url');
+        $activity_master->benefits = json_encode($request->input('benefits'));
+        $activity_master->pre_requisites = json_encode($request->input('pre_requisites'));
+        $activity_master->subscription_id = $request->input('subscription_id');
+        $activity_master->save();
+        
+        // dd($activity_master->id);
+        foreach ($request->input('faq_id') as $faq_id) {
+            $faqs_activity_Ids = new LinkFaqActivityMasterIds;
+            $faqs_activity_Ids->faqs_id = $faq_id;
+            $faqs_activity_Ids->activity_master_id = $activity_master->id;
+            $faqs_activity_Ids->save();
+        }
+
+        return response()->json([
+                    'activity_data' => $activity_master->id,
+                    'success' => true,
+                    'status' => 200]);
+    }
+
+    public function create_main_activity() {
+        $subcription = SubscriptionMaster::all()->toArray();
+        $teacher = Teacher::all()->toArray();
+        $faqs = ManageFaq::all()->toArray();
+        return view('Admin.Pages.manage_activities.add_new_main_activities')->with(['subcriptions' => $subcription, 'teacher' => $teacher, 'faqs' => $faqs,]);
+    }
+
+    public function edit_main_activity($id) {
+        $subcription = SubscriptionMaster::all()->toArray();
+        $teacher_data = Teacher::all()->toArray();
+        $faqs_data = ManageFaq::all()->toArray();
+        $get_manage_activity = ActivityMaster::with('faq_activity_link')->where('id', $id)->first()->toArray();
+        $act_faq = array_column($get_manage_activity['faq_activity_link'], 'faqs_id');
+
+        //        for benefits
+        $get_manage_activity['benefits_array'] = json_decode($get_manage_activity['benefits']);
+        //        for benefits end
+        //        for pre_requisites
+        $get_manage_activity['Pre_requisites_array'] = json_decode($get_manage_activity['pre_requisites']);
+        //        for pre_requisites end
+
+
+        return view('Admin.Pages.manage_activities.edit_main_activities')->with(['get_manage_activity' => $get_manage_activity, 'subcriptions' => $subcription, 'teacher_datas' => $teacher_data, 'faqs_datas' => $faqs_data, 'act_faq' => $act_faq]);
+    }
+    
+     public function edit_upcoming_main_activity($id) {
+         
+        //  dd($id);
+        $subcription = SubscriptionMaster::all()->toArray();
+        $teacher_data = Teacher::all()->toArray();
+        $faqs_data = ManageFaq::all()->toArray();
+        $get_manage_activity = ActivityMaster::with('faq_activity_link')->where('id', $id)->first()->toArray();
+        $act_faq = array_column($get_manage_activity['faq_activity_link'], 'faqs_id');
+
+        //        for benefits
+        $get_manage_activity['benefits_array'] = json_decode($get_manage_activity['benefits']);
+        //        for benefits end
+        //        for pre_requisites
+        $get_manage_activity['Pre_requisites_array'] = json_decode($get_manage_activity['pre_requisites']);
+        //        for pre_requisites end
+
+
+        return view('Admin.Pages.manage_activities.edit_upcoming_main_activities')->with(['get_manage_activity' => $get_manage_activity, 'subcriptions' => $subcription, 'teacher_datas' => $teacher_data, 'faqs_datas' => $faqs_data, 'act_faq' => $act_faq]);
+    }
+
+    public function update_main_activity(Request $request) {
+
+//              echo "
";print_r($request->all());
+
+        //for benifit null value validation
+        foreach($request->benefits as $benefit){
+            if (is_null($benefit)) {
+                return response()->json(['success' => false,'status' => 403]);
+            }
+        }
+        
+        //for pre_requisites null value validation
+        foreach($request->pre_requisites as $pre_requisites){
+            if (is_null($pre_requisites)) {
+                return response()->json(['success' => false,'status' => 402]);
+            }
+        }
+        $activity_master_id = $request->edit_main_activity_id;
+        $link_master_id = LinkFaqActivityMasterIds::where('activity_master_id', $request->edit_main_activity_id)->delete();
+
+        foreach ($request->input('faq_id') as $faq_id) {
+            $faqs_activity_Ids = new LinkFaqActivityMasterIds;
+            $faqs_activity_Ids->faqs_id = $faq_id;
+            $faqs_activity_Ids->activity_master_id = $request->edit_main_activity_id;
+            $faqs_activity_Ids->save();
+        }
+        if ($request->main_activity_banner) {
+            $rules = [
+                'main_activity_banner' => 'required|file|max:400', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+        
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return response()->json(['success' => false, 'status' => 422]);
+                }
+            }
+            else {
+                $file = $request->file('main_activity_banner');
+                $ext = $file->extension();
+                $file_name = time() . '.' . $ext;
+                $path = public_path() . '/uploads/activity_banner_images/';
+                $file->move($path, $file_name);
+                $file_name_store = url('/public/uploads/activity_banner_images/' . $file_name);
+            }
+            // print_r($file_name_store);
+            // exit;
+        } else {
+            $file_name_store = $request->db_image;
+        }
+        // dd($file_name_store);
+        $activity_master = ActivityMaster::find($request->edit_main_activity_id);
+        $activity_master->activity_name = $request->input('activity_name');
+        $activity_master->title = $request->input('activity_title');
+        $activity_master->description = $request->input('description');
+        $activity_master->start_date = $request->input('start_date');
+        $activity_master->end_date = $request->input('end_date');
+        $activity_master->teacher_id = $request->input('teacher_id');
+        $activity_master->subscription_id = $request->input('subscription_id');
+        $activity_master->benefits = $request->input('benefits');
+        $activity_master->pre_requisites = $request->input('pre_requisites');
+        $activity_master->main_activity_banner = $file_name_store;
+        $activity_master->save();
+
+        ActivitySchedule::where('activity_master_id',$request->edit_main_activity_id)->update(['subscription_id'=>$request->input('subscription_id')]);
+        ActivityDay::where('activity_master_id',$request->edit_main_activity_id)->update(['subscription_id'=>$request->input('subscription_id')]);
+        return response()->json(['success' => true, 'status' => 200]);
+    }
+    
+    public function update_upcoming_main_activity(Request $request) {
+
+//              echo "
";print_r($request->all());
+        $activity_master_id = $request->edit_main_activity_id;
+        $link_master_id = LinkFaqActivityMasterIds::where('activity_master_id', $request->edit_main_activity_id)->delete();
+
+        foreach ($request->input('faq_id') as $faq_id) {
+            $faqs_activity_Ids = new LinkFaqActivityMasterIds;
+            $faqs_activity_Ids->faqs_id = $faq_id;
+            $faqs_activity_Ids->activity_master_id = $request->edit_main_activity_id;
+            $faqs_activity_Ids->save();
+        }
+        if ($request->main_activity_banner) {
+            $file = $request->file('main_activity_banner');
+            $ext = $file->extension();
+            $file_name = time() . '.' . $ext;
+            $path = public_path() . '/uploads/activity_banner_images/';
+            $file->move($path, $file_name);
+            $file_name_store = url('/public/uploads/activity_banner_images/' . $file_name);
+            // print_r($file_name_store);
+            // exit;
+        } else {
+            $file_name_store = $request->db_image;
+        }
+        // dd($file_name_store);
+        $activity_master = ActivityMaster::find($request->edit_main_activity_id);
+        $activity_master->activity_name = $request->input('activity_name');
+        $activity_master->title = $request->input('activity_title');
+        $activity_master->description = $request->input('description');
+        $activity_master->start_date = $request->input('start_date');
+        $activity_master->end_date = $request->input('end_date');
+        $activity_master->teacher_id = $request->input('teacher_id');
+        $activity_master->subscription_id = $request->input('subscription_id');
+        $activity_master->teaser_url = $request->input('video_teaser_url');
+        $activity_master->benefits = $request->input('benefits');
+        $activity_master->pre_requisites = $request->input('pre_requisites');
+        $activity_master->main_activity_banner = $file_name_store;
+        $activity_master->save();
+        
+        ActivitySchedule::where('activity_master_id',$request->edit_main_activity_id)->update(['subscription_id'=>$request->input('subscription_id')]);
+        ActivityDay::where('activity_master_id',$request->edit_main_activity_id)->update(['subscription_id'=>$request->input('subscription_id')]);
+        return response()->json(['success' => true, 'status' => 200]);
+    }
+
+    public function delete_main_activity($id) {
+        $manage_activity = ActivityMaster::find($id)->delete();
+        if($manage_activity){
+            ActivitySchedule::where('activity_master_id',$id)->delete();
+            ActivityDay::where('activity_master_id',$id)->delete();
+        }
+        
+        return response()->json(['success' => true,'status' => 200]);
+    }
+
+    public function edit_past_session($id) {
+        $pass_session = PastSession::find($id)->toArray();
+//        echo '
';print_r($pass_session);exit;
+        return view('Admin.Pages.manage_activities.past_session.edit_past_session')->with(['get_pass_session' => $pass_session]);
+    }
+
+    public function update(Request $request) {
+//        echo "
";
+//        print_r($request->all());
+//        exit;
+        $currentDate = date('Y-m-d');
+        $past_session = $request->past_id;
+        $past_schedule_id = $request->schedule_id;
+//        print_r($past_schedule_id);
+//        exit;
+        $past_session = PastSession::find($request->past_id);
+
+        if ($request->hasFile('myFile')) {
+            $rules = [
+                'myFile' => 'required|file|max:400', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+     
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return response()->json([
+                        'success' => false,
+                        'status' => 422]);
+                }
+            }
+            else {
+                $path = public_path() . '/uploads/past_session';
+                File::delete($path . $past_session->image);
+                $file = $request->file('myFile');
+                $ext = $file->extension();
+                $file_name_main_image_old = time() . '.' . $ext;
+                $file_name_main_image = url('/public/uploads/past_session/' . $file_name_main_image_old);
+                $file->move($path, $file_name_main_image);
+            }
+        } else {
+            $file_name_main_image = $request->input('db_image');
+        }
+
+        // for image upload end
+        $past_session->activity_name = $request->input('activity_name');
+        $past_session->url = $request->input('video_teaser_url');
+        $past_session->image = $file_name_main_image;
+        $past_session->duration = $request->input('activity_duration');
+        $past_session->date = $request->input('date');
+        $past_session->day = $request->input('day');
+        
+        $date = strtotime($request->input('date'));
+        if ($date <= $currentDate) {
+            $past_session->save();
+
+            return response()->json(['success' => true, 'status' => 200,'id' => $past_schedule_id]);
+        } else {
+            return response()->json([
+                        'error_msg' => 'Date is not greter than current date.',
+                        'success' => false,
+                        'status' => 400,
+            ]);
+        }
+    }
+
+    public function delete_past_session($id) {
+        $past_session = PastSession::find($id)->delete();
+    }
+
+}
diff --git a/app/Http/Controllers/Admin/ManageBannerController.php b/app/Http/Controllers/Admin/ManageBannerController.php
new file mode 100644
index 0000000..d8306db
--- /dev/null
+++ b/app/Http/Controllers/Admin/ManageBannerController.php
@@ -0,0 +1,37 @@
+manageBannerService = $manageBannerService;
+    } 
+
+    public function create(){
+        $get_manage_banner['get_single_banner'] = $this->manageBannerService->view_manage_banner()->toArray();
+        // dd($get_manage_banner);
+        $manage_banner = $this->manageBannerService->view_manage_banner()->toArray();
+        return view('Admin.Pages.manage_cms.banner.manage_cms_banner', $get_manage_banner);
+    }
+
+    public function insert_manage_bannner(Request $request)
+    { 
+        $manage_banner = $this->manageBannerService->insert_manage_bannner($request);
+        if(!empty($manage_banner)){
+            return response()->json(['success' => true , 'status' => 200]);  
+        }
+        else{
+            return response()->json(['success' => false , 'status' => 422]);
+        }
+        return response()->json(['success' => true, 'status'=>200]);
+    }
+    
+}
diff --git a/app/Http/Controllers/Admin/ManageCmsController.php b/app/Http/Controllers/Admin/ManageCmsController.php
new file mode 100644
index 0000000..a2f16a1
--- /dev/null
+++ b/app/Http/Controllers/Admin/ManageCmsController.php
@@ -0,0 +1,16 @@
+get();
+        // dd($data);
+        $data['article'] = ManageNewsArticles::all();
+        
+        return view('Admin.Pages.manage_cms.news_and_articles.manage_cms_news_article',$data);
+   }
+      public function add_manage_cms_news_article(){
+            $data['category'] = NewsArticlesCategory::all();
+            return view('Admin.Pages.manage_cms.news_and_articles.add_news_article',$data);
+   }
+   public function edit_manage_cms_news_article($id){
+       
+       $data['category'] = NewsArticlesCategory::get();
+       $data['article'] = ManageNewsArticles::where('id',$id)->first();
+    //   dd($data);
+       return view('Admin.Pages.manage_cms.news_and_articles.edit_news_and_articles',$data);
+   }
+   
+    //Category Start from here
+    public function addCategoriesData(Request $request){
+        
+        // dd($request->all());
+        $category = NewsArticlesCategory::create(['category_name'=>$request->categoryName]);
+        if($category){
+            return response()->json([
+                    'messages' => "Categories Is Added Successfully",
+                    'success' => true,
+                    'status' => 200]);
+        }
+        
+    }
+    
+    public function editCategoriesData(Request $request){
+        
+        $updatecategory = NewsArticlesCategory::where('id',$request->editCatId)->update(['category_name'=>$request->editCatName]);
+        if($updatecategory){
+            return response()->json([
+                    'messages' => "Categories Is Updated Successfully",
+                    'success' => true,
+                    'status' => 200]);
+        }
+    }
+    
+    public function deleteCategoriesData(Request $request){
+        
+        $deleteCat = NewsArticlesCategory::where('id',$request->deleteId)->delete();
+        if($deleteCat){
+            return response()->json([
+                    'messages' => "Category Is Deleted successfully",
+                    'success' => true,
+                    'status' => 200]);
+        }
+    }
+    
+    public function updatCatStatus(Request $request){
+        
+        $status = NewsArticlesCategory::where('id',$request->catId)->update(['is_active'=> $request->status]);
+        return response()->json([
+                'messages' => "Status Updated Successfully",
+                'success' => true,
+                'status' => 200]);   
+        
+    }
+    //Category End from here
+    
+    //Article Starts Here
+    
+    public function addArticleData(Request $request){
+        
+        $addArticle = new ManageNewsArticles;
+        // $rules = [
+        //     'articleThumbnailImage' => 'required|file|max:1000', // 400 KB
+        // ];
+    
+        // $validator = Validator::make($request->all(),$rules);
+ 
+        // if ($validator->fails()) {
+        //     if ($request->expectsJson()) {
+        //         return response()->json(['success' => false , 'status' => 422,'message'=>'Image should be Less Than 1 MB']);
+        //     }
+        // }else {
+        //     $file = $request->file('articleThumbnailImage');
+        //     $ext = $file->extension();
+        //     $file_name = time() . '.' . $ext;
+        //     $path = public_path() . '/uploads/news_articles/thumbnail_image';
+        //     $file->move($path, $file_name);
+        //     $addArticle->thumbnail_path = url('/public/uploads/news_articles/thumbnail_image/' . $file_name);
+        // }
+        
+        $rules = [
+            'articleImage' => 'required|file|max:1000', // 400 KB
+        ];
+    
+        $validator = Validator::make($request->all(),$rules);
+ 
+        if ($validator->fails()) {
+            if ($request->expectsJson()) {
+                return response()->json(['success' => false , 'status' => 422,'message'=>'Image should be Less Than 1 MB']);
+            }
+        }else {
+            $file = $request->file('articleImage');
+            $ext = $file->extension();
+            $file_name = time() . '.' . $ext;
+            $path = public_path() . '/uploads/news_articles/image';
+            $file->move($path, $file_name);
+            $addArticle->image_upload = url('/public/uploads/news_articles/image/' . $file_name);
+        }
+        
+        $addArticle->category_id = $request->articleCatId;
+        $addArticle->article_name = $request->articleName;
+        $addArticle->short_text = $request->articleShortText;
+        $addArticle->description = $request->articleDescription;
+        
+        // $addArticle->video_url = $request->articleUrl;
+        // $addArticle->tags = $request->articleTags;
+        $addArticle->save();
+        if($addArticle){
+            return response()->json([
+                'messages' => "Article Added Successfully",
+                'success' => true,
+                'status' => 200]); 
+        }
+    }
+    
+    public function editArticleData(Request $request){
+        
+        // dd($request->all());
+        $editArticle = ManageNewsArticles::find($request->articleId);
+        // dd($editArticle);
+        // if($request->file('articleThumbnailImage')){
+        //     $rules = [
+        //         'articleThumbnailImage' => 'required|file|max:1000', // 400 KB
+        //     ];
+        
+        //     $validator = Validator::make($request->all(),$rules);
+     
+        //     if ($validator->fails()) {
+        //         if ($request->expectsJson()) {
+        //             return response()->json(['success' => false , 'status' => 422,'message'=>'Image should be Less Than 2 MB']);
+        //         }
+        //     }else {
+        //         $file = $request->file('articleThumbnailImage');
+        //         $ext = $file->extension();
+        //         $file_name = time() . '.' . $ext;
+        //         $path = public_path() . '/uploads/news_articles/thumbnail_image';
+        //         $file->move($path, $file_name);
+        //         $editArticle->thumbnail_path = url('/public/uploads/news_articles/thumbnail_image/' . $file_name);
+        //     }
+        // }
+        if($request->file('articleImage')){
+            $rules = [
+                'articleImage' => 'required|file|max:1000', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+     
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return response()->json(['success' => false , 'status' => 422,'message'=>'Image should be Less Than 1 MB']);
+                }
+            }else {
+                $file = $request->file('articleImage');
+                $ext = $file->extension();
+                $file_name = time() . '.' . $ext;
+                $path = public_path() . '/uploads/news_articles/image';
+                $file->move($path, $file_name);
+                $editArticle->image_upload = url('/public/uploads/news_articles/image/' . $file_name);
+            }
+        }
+        $editArticle->category_id = $request->articleCatId;
+        $editArticle->article_name = $request->articleName;
+        $editArticle->short_text = $request->articleShortText;
+        $editArticle->description = $request->articleDescription;
+        
+        // $editArticle->video_url = $request->articleUrl;
+        // $editArticle->tags = $request->articleTags;
+        $editArticle->save();
+        if($editArticle){
+            return response()->json([
+                'messages' => "Article Added Successfully",
+                'success' => true,
+                'status' => 200]); 
+        }
+    }
+    
+    public function updatArticleStatus(Request $request){
+        
+        // dd($request->all());
+        $status = ManageNewsArticles::where('id',$request->catId)->update(['is_active'=> $request->status]);
+        return response()->json([
+                'messages' => "Status Updated Successfully",
+                'success' => true,
+                'status' => 200]);   
+        
+    }
+    
+    
+    public function deleteArticlesData(Request $request){
+        
+        $deleteCat = ManageNewsArticles::where('id',$request->deleteId)->delete();
+        if($deleteCat){
+            return response()->json([
+                    'messages' => "Category Is Deleted successfully",
+                    'success' => true,
+                    'status' => 200]);
+        }
+    }
+    //Article ends Here
+}
diff --git a/app/Http/Controllers/Admin/ManageCompanyUserController.php b/app/Http/Controllers/Admin/ManageCompanyUserController.php
new file mode 100644
index 0000000..e3bf400
--- /dev/null
+++ b/app/Http/Controllers/Admin/ManageCompanyUserController.php
@@ -0,0 +1,27 @@
+manageContactService = $manageContactService;
+    }
+
+    public function create() {
+        return view('Admin.Pages.manage_contact.manage_contact');
+    }
+
+    public function view_contact(Request $req) {
+        $manage_contact = $this->manageContactService->view_contact();
+        return view('Admin.Pages.manage_contact.manage_contact')->with(['manage_contact' => $manage_contact]);
+    }
+
+    public function deleted(Request $request) {
+        $deleted_contact = $this->manageContactService->delete_contact();
+        return view('Admin.Pages.manage_contact.manage_contact_deleted')->with(['deleted_contact' => $deleted_contact]);
+    }
+
+    public function delete_contact($id) {
+        ContactUs::find($id)->delete();
+    }
+
+    public function sendManageContact(Request $request) {
+
+        $contact = $this->manageContactService->send_mail($request);
+        return response()->json([
+                    'status' => 200
+        ]);
+    }
+
+    public function exportUser() 
+    {
+//        return Excel::download(new UsersExport, 'users.xlsx');
+//        return Excel::download(new UsersExport, 'user.xlsx', \Maatwebsite\Excel\Excel::XLSX);
+//    return Excel::download(new UsersExport, 'user.xlsx');
+    return Excel::download(new UsersExport, 'user.xlsx');
+
+    }
+}
diff --git a/app/Http/Controllers/Admin/ManageDietPlanController.php b/app/Http/Controllers/Admin/ManageDietPlanController.php
new file mode 100644
index 0000000..46cf165
--- /dev/null
+++ b/app/Http/Controllers/Admin/ManageDietPlanController.php
@@ -0,0 +1,155 @@
+manageDietPlanService = $manageDietPlanService;
+    } 
+    
+    public function create(Request $req) {
+        $manage_diet_plan = $this->manageDietPlanService->create();
+//                 echo "
"; print_r($manage_diet_plan);exit;
+        return view('Admin.Pages.manage_diet_plans.manage_diet_plan')->with(['manage_diet_plan' => $manage_diet_plan]);
+    }
+    
+     public function create_diet_plan()
+    {
+         return view('Admin.Pages.manage_diet_plans.add_diet_plan');
+    }
+    
+    public function insert_diet_plan(Request $request)
+    {
+        $dietCategories = $request->input('diet_categories');
+        $bmrRangeFrom = $request->input('bmr_range_from');
+        $bmrRangeTo = $request->input('bmr_range_to');
+        $rules = [
+            'myFile' => 'required|file|max:2048', // 2048 KB
+        ];
+    
+        $validator = Validator::make($request->all(),$rules);
+        if ($validator->fails()) {
+            if ($request->expectsJson()) {
+                return response()->json(['success' => false , 'status' => 422]);
+            }
+        }
+        else {
+            
+            // Validate input if necessary
+            
+            $oldDietPlan = DietPlan::where('diet_categories', $dietCategories)
+                ->where('bmr_range_from', $bmrRangeFrom)
+                ->where('bmr_range_to', $bmrRangeTo)
+                ->exists();
+            // dd($oldDietPlan);
+            if ($oldDietPlan == true) {
+                return response()->json(['success' => false, 'status' => 403]);
+            }else{
+                $file = $request->file('myFile');
+                $ext = $file->extension();
+                $file_name = time() . '.' . $ext;
+                $path = public_path() . '/uploads/diet_plan';
+                $file->move($path, $file_name);
+        
+                // for image upload end
+        
+                $add_diet_plan = new DietPlan;
+                $add_diet_plan->image = url('/public/uploads/diet_plan/'.$file_name);
+                $add_diet_plan->diet_categories = $request->input('diet_categories');
+                $add_diet_plan->bmr_range_from = $request->input('bmr_range_from');
+                $add_diet_plan->bmr_range_to = $request->input('bmr_range_to');
+        
+                $add_diet_plan->save();
+                
+                return response()->json(['success' => true, 'status' => 200]);
+            }
+            
+        }
+    
+    }
+    
+    public function edit_diet_plan($id)
+    {
+        $diet_plan = DietPlan::find($id)->toArray();
+        return view('Admin.Pages.manage_diet_plans.edit_diet_plan')->with(['get_diet_plan' => $diet_plan]);
+    }
+    
+//    public function update_diet_plan(Request $request)
+//    {
+//       $diet_plan = $request->diet_id;  
+//        $diet_plan = DietPlan::find($request->id);
+//       
+//        if ($request->hasFile('image')) {
+//            $path = public_path() . '/uploads/diet_plan';
+//            $file = $request->file('image');
+//            $ext = $file->extension();
+//            $file_name_main_image = time() . '.' . $ext;
+//            $file->move($path, $file_name_main_image);
+//        } else {
+//            $file_name_main_image = $diet_plan->image;
+//        }
+//
+//        // for image upload end
+//        
+//        $update_diet_plan->image = url('/public/uploads/diet_plan/'.$file_name_main_image);
+//        $update_diet_plan->diet_categories = $request->input('diet_categories');
+//        $update_diet_plan->bmr_range_from = $request->input('bmr_range_from');
+//        $update_diet_plan->bmr_range_to = $request->input('bmr_range_to');
+//        $update_diet_plan->save();
+//        
+//        return response()->json(['success' => true, 'status' => 200]);
+//    }
+//    
+    public function update_diet_plan(Request $request) {
+        // dd($request);
+        if($request->image){
+            $rules = [
+                'image' => 'required|file|max:2048', // 2048 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return response()->json(['success' => false , 'status' => 422]);
+                }
+            }
+            else{
+                $file = $request->file('image');
+        //        print_r($file); exit;
+                $ext = $file->extension();
+                $file_name = time() . '.' . $ext;
+                $path = public_path() . '/uploads/diet_plan';
+                $file->move($path, $file_name);
+                $image_name = url('/public/uploads/diet_plan/'.$file_name);
+            }
+        }
+        else{
+           $image_name=$request->db_image; 
+        }
+         
+        $dietPlanId = $request->diet_id;
+        $update_diet_plan = DietPlan::find($request->diet_id);
+        $update_diet_plan->diet_categories = $request->input('diet_categories');
+        $update_diet_plan->bmr_range_from = $request->input('bmr_range_from');
+        $update_diet_plan->bmr_range_to = $request->input('bmr_range_to');
+        $update_diet_plan->image = $image_name;
+        $update_diet_plan->save();
+        return response()->json(['success' => true, 'status' => 200]);
+    }
+    
+     public function delete_diet_plan($id) {
+        $delete_diet_plan = DietPlan::find($id)->delete();
+    }
+}
diff --git a/app/Http/Controllers/Admin/ManageDirectUserController.php b/app/Http/Controllers/Admin/ManageDirectUserController.php
new file mode 100644
index 0000000..2eb7e7d
--- /dev/null
+++ b/app/Http/Controllers/Admin/ManageDirectUserController.php
@@ -0,0 +1,60 @@
+get()->toArray();
+        return view('Admin.Pages.manage_direct_users.manage_direct_users')->with(['user_data'=> $data]);
+    }
+    public function index(){
+        return view('Admin.Pages.manage_direct_users.users-profile-two');
+    }
+    
+    public function edit_user($id){
+        
+        $get_single_user = User::with('user_detail')
+                           ->where('id', $id)
+                           ->first()
+                           ->toArray();
+                        //   dd($get_single_user);
+        $subcription = SubscriptionMaster::all()->toArray();
+        return view('Admin.Pages.manage_direct_users.users-profile-two')->with(['get_single_user_data'=> $get_single_user , 'subcriptions' => $subcription]);;
+    }
+    
+    public function destroy_user($id){
+        // dd($id);
+        ShortClipsLikes::where('user_id',$id)->delete();
+        $delete_user = User::find($id)->delete();
+        LeaderboardMaster::where('user_id',$id)->delete();
+        return response()->json(['success' => true,'status' => 200]);
+    }
+    
+    public function update_age_height(Request $request){
+        //   dd($request->all());
+        
+        UserDetail::where('user_id',$request->user_id)->update(['age'=>$request->age,'height'=>$request->height]);
+        return response()->json(['success' => true,'status' => 200]);
+    }
+    
+    public function updateSubPlan(Request $request){
+        
+        // dd($request->id);
+        $data = User::where('id', $request->id)->update(['utm_source' => $request->data]);
+        if($data == 1){
+            return response()->json(['success' => true,'status' => 200]);   
+        }else{
+            return response()->json(['success' => true,'status' => 500]); 
+        }
+        
+    }
+}
diff --git a/app/Http/Controllers/Admin/ManageFaqController.php b/app/Http/Controllers/Admin/ManageFaqController.php
new file mode 100644
index 0000000..e5ed62e
--- /dev/null
+++ b/app/Http/Controllers/Admin/ManageFaqController.php
@@ -0,0 +1,99 @@
+manageFaqService = $manageFaqService;
+    }
+
+    // public function create(){
+    //     return view('Admin.Pages.manage_cms.manage_faq.manage_faqs');
+    // }
+
+    public function insert_faq_categories(Request $request)
+    {
+        // dd($request);
+        $faq_categories = $this->manageFaqService->insert_faq_categories($request);
+        return response()->json(['success' => true,'status'=>200]);
+
+    }
+
+    public function view_faq_category()
+    {
+        $faq_categories['faq_categories'] = $this->manageFaqService->view_faq_category();
+        $faq['faq'] = $this->manageFaqService->view_faq();
+
+        // echo "
";
+        // print_r($faq_categories);
+        // print_r($faq);
+        // echo "
"; + // exit; + return view('Admin.Pages.manage_cms.manage_faq.manage_faqs',$faq_categories,$faq); + } + + public function delete_faq_category($id) + { + $faq_categories = ManageFaqCategory::find($id)->delete(); + } + + public function update_faq_category(Request $request) + { + $faq_categories = $this->manageFaqService->update_faq_categories($request); + return response()->json(['success2' => true,'status'=>200]); + } + + public function change_faq_catg_Status_(Request $request) + { + // dd($request->faq_catag_id); + $status = ManageFaqCategory::find($request->faq_catag_id); + $status->is_active = $request->status; + $status->save(); + return response()->json(['success'=>'Status change successfully.']); + + } + + // ================================================================================================================= + + public function insert_faq(Request $request) + { + $faq_categories = ManageFaqCategory::all(); + + $faq = $this->manageFaqService->insert_faq($request); + + return response()->json(['success' => true, 'status'=>200, 'faq_categories'=>$faq_categories]); + + } + + public function delete_faq($id) + { + $faq = ManageFaq::find($id)->delete(); + } + + public function update_faq(Request $request) + { + $faq_categories = $this->manageFaqService->update_faq($request); + return response()->json(['success' => true,'status'=>200]); + } + + + public function change_faq_Status(Request $request) + { + // dd($request->faq_catag_id); + $status = ManageFaq::find($request->faq_id); + $status->is_active = $request->status; + $status->save(); + return response()->json(['success'=>'Status change successfully.']); + + } + + +} diff --git a/app/Http/Controllers/Admin/ManageFeedbackController.php b/app/Http/Controllers/Admin/ManageFeedbackController.php new file mode 100644 index 0000000..41795db --- /dev/null +++ b/app/Http/Controllers/Admin/ManageFeedbackController.php @@ -0,0 +1,24 @@ +where('is_active','0')->get(); + // dd($feedback); + return view('Admin.Pages.manage_feedback.manage_feedback',compact('feedback')); + } + + public function delete_feedback($id){ + $data = ManageFeedback::find($id)->delete(); + // dd($data); + } +} diff --git a/app/Http/Controllers/Admin/ManageNotificationController.php b/app/Http/Controllers/Admin/ManageNotificationController.php new file mode 100644 index 0000000..d2aab92 --- /dev/null +++ b/app/Http/Controllers/Admin/ManageNotificationController.php @@ -0,0 +1,41 @@ +all()); +// exit; + $user = User::get(); + +// NotificationMaster::create[] + $notification_master = new NotificationMaster; + $notification_master->title = $request->title; + $notification_master->messages = $request->message; + $notification_master->save(); + + $notification_id = $notification_master->id; + + foreach ($user as $user_data){ + + $notification_user = new NotificationUser; + $notification_user->notification_id = $notification_id; + $notification_user->user_id = $user_data->id; + $notification_user->save(); + } + + return response()->json(['success' => true,'status' => 200]); + } +} diff --git a/app/Http/Controllers/Admin/ManagePastSessionContoller.php b/app/Http/Controllers/Admin/ManagePastSessionContoller.php new file mode 100644 index 0000000..31435c0 --- /dev/null +++ b/app/Http/Controllers/Admin/ManagePastSessionContoller.php @@ -0,0 +1,116 @@ +where('activity_master_id',$id) + ->where('start_date','<=',$currentDate) + ->orderBy('start_date', 'DESC') + ->get() + ->toArray(); + return view('Admin.Pages.manage_activities.past_session.past_schedules')->with(['manage_activity_schedule' => $manage_past_activity]); + } + public function create_past_session($id) + { +// print_r($id); +// exit; + + $get_single_activity = ActivitySchedule::find($id)->toArray(); +// echo "
"; print_r($get_single_activity);exit;
+        return view('Admin.Pages.manage_activities.past_session.add_past_session')->with(['get_data' => $get_single_activity]);
+//        return view('Admin.Pages.manage_activities.past_session.add_past_session');
+    }
+    
+    public function insert_past_session(Request $request)
+    {
+//        echo '
';
+//        print_r($request->all());
+//        exit;
+        $currentDate = date('Y-m-d');
+        $rules = [
+            'myFile' => 'required|file|max:400', // 400 KB
+        ];
+    
+        $validator = Validator::make($request->all(),$rules);
+ 
+        if ($validator->fails()) {
+            if ($request->expectsJson()) {
+                return response()->json(['success' => false , 'status' => 422]);
+            }
+        }
+        else {
+            
+            $file = $request->file('myFile');
+            $ext = $file->extension();
+            $file_name = time() . '.' . $ext;
+            $path = public_path() . '/uploads/past_session';
+            $file->move($path, $file_name);
+        }
+        // for image upload end
+
+        $add_past_session = new PastSession;
+        $add_past_session->activity_master_id = $request->input('activity_id');
+        $add_past_session->activity_schedule_id = $request->input('schedule_id');
+        $add_past_session->activity_name = $request->input('activity_name');
+        $add_past_session->url = $request->input('video_teaser_url');
+        $add_past_session->duration = $request->input('activity_duration');
+        $add_past_session->image = url('/public/uploads/past_session/'.$file_name);
+        $add_past_session->date = $request->input('date');
+        $add_past_session->day = $request->input('day');
+        
+        $date = strtotime($request->input('date'));
+        // Retrieve the ActivityMaster record
+//        $activity_schedule = ActivitySchedule::find($request->input('schedule_id'));
+
+//        $activity_shedule_start_date = strtotime($activity_schedule->start_date);
+//        $activity_shedule_end_date = strtotime($activity_schedule->end_date);
+        if ($date <= $currentDate) {
+            $add_past_session->save();
+
+            return response()->json(['success' => true, 'status' => 200,'id' =>$request->input('schedule_id')]);
+        } else {
+            return response()->json([
+                        'error_msg' => 'Date is not greter than current date.',
+                        'success' => false,
+                        'status' => 400,
+            ]);
+        }
+    }
+    
+    public function past_days_show($id){
+        
+//        print_r($id);
+//        exit;
+        $current_day = now()->format('Y-m-d');
+        $past_data = PastSession::where('activity_schedule_id',$id)
+                                ->where('date','<=',$current_day)
+                                ->get()
+                                ->toArray();
+//        echo '
';
+//        print_r($past_data);
+//        exit;
+        return view('Admin.Pages.manage_activities.past_session.past_activity_day')->with(['manage_activity_day' => $past_data]);
+    }
+    
+    
+}
diff --git a/app/Http/Controllers/Admin/ManagePlanController.php b/app/Http/Controllers/Admin/ManagePlanController.php
new file mode 100644
index 0000000..f1dbb0b
--- /dev/null
+++ b/app/Http/Controllers/Admin/ManagePlanController.php
@@ -0,0 +1,61 @@
+managePlanService = $managePlanService;
+    } 
+    
+    public function view_plan(Request $req) {
+        $manage_plan = $this->managePlanService->view_plan();
+//                 echo "
"; print_r($manage_plan);exit;
+        return view('Admin.Pages.manage_plan.manage_plan')->with(['manage_plan' => $manage_plan]);
+    }
+    
+    public function create_plan() {
+        return view('Admin.Pages.manage_plan.add_plan');
+    }
+    
+    public function insert_plan(Request $request)
+    { 
+        try {            
+                $plan = $this->managePlanService->insert_plan($request);
+                return response()->json(['status' => 200, 'message' => 'Plan added successfully']);            
+            }   
+        catch (Exception $e) {
+                echo 'Message: ' .$e->getMessage();
+            }
+    }
+    
+    public function edit($id)
+    {
+        $data = $this->managePlanService->edit_plan($id);
+        return view('Admin.Pages.manage_plan.edit_plan')->with(['plan_data'=>$data]);     
+    }
+    
+    public function delete_plan($id) {
+        // print_r($id);die;
+        $plan = SubscriptionMaster::find($id)->delete();
+        $plan = SubscriptionPlanPackage::where('subscription_master_id', $id)->delete();
+        $plan = SubscriptionPackageDescription::where('subscription_master_id', $id)->delete();
+
+    }
+    
+    public function update_plan(Request $request)
+    {
+       $plan_update = $this->managePlanService->update_plan($request);
+       return response()->json(['success' => true,'status'=>200]);
+       
+    }
+
+}
diff --git a/app/Http/Controllers/Admin/ManagePodcastController.php b/app/Http/Controllers/Admin/ManagePodcastController.php
new file mode 100644
index 0000000..18f079a
--- /dev/null
+++ b/app/Http/Controllers/Admin/ManagePodcastController.php
@@ -0,0 +1,144 @@
+get();
+        // dd($data['podcast']);
+        return view('Admin.Pages.manage_cms.manage_podcast.manage_podcast',$data);
+    }
+    public function add_manage_podcast(){
+        return view('Admin.Pages.manage_cms.manage_podcast.add_manage_podcast');
+    }
+    
+    public function addData(Request $request){
+        
+        // dd($request->all());
+        $rules = [
+            'image' => 'required|file|max:1000'// 1000 kb
+        ];
+    
+        $validator = Validator::make($request->all(),$rules);
+ 
+        if ($validator->fails()) {
+            if ($request->expectsJson()) {
+                return response()->json(['success' => false , 'status' => 422]);
+            }
+        }
+        else {
+            $file = $request->file('image');
+            $ext = $file->extension();
+            $file_name = time() . '.' . $ext;
+            $path = public_path() . '/uploads/manage_podcast';
+            $file->move($path, $file_name);
+        }
+        
+        $podcastFile = $request->file('url');
+        $podcastFileName = time() . '.' . $podcastFile->getClientOriginalExtension();
+        $path = public_path() . '/uploads/manage_podcast/podcasts';
+        $podcastFile->move($path, $podcastFileName);
+
+        $addPodcast = new ManagePodcast;
+        $addPodcast->title = $request->title;
+        $addPodcast->description = $request->description;
+        $addPodcast->podcast_url = url('/public/uploads/manage_podcast/podcasts/' . $podcastFileName);
+        // $addPodcast->podcast_url = $mp3File;
+        $addPodcast->banner_image = url('/public/uploads/manage_podcast/' . $file_name);
+        $addPodcast->save();
+        
+        if($addPodcast){
+            return response()->json([
+                        'message' => "Podcast Added Succesfully",
+                        'success' => true,
+                        'status' => 200,
+            ]);
+        }else{
+           return response()->json([
+                        'message' => "Something Went Wrong",
+                        'success' => true,
+                        'status' => 500,
+            ]); 
+        }
+        
+    }
+    
+    public function updateData(Request $request){
+        
+        $updatepodcast = ManagePodcast::find($request->id);
+        // dd($request->image);
+        if($request->file('image')){
+            $rules = [
+                'image' => 'required|file|max:400', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+     
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return response()->json(['success' => false , 'status' => 422]);
+                }
+            }else {
+                $file = $request->file('image');
+                $ext = $file->extension();
+                $file_name = time() . '.' . $ext;
+                $path = public_path() . '/uploads/manage_podcast';
+                $file->move($path, $file_name);
+                $updatepodcast->banner_image = url('/public/uploads/manage_podcast/' . $file_name);
+            }
+        }
+        if($request->file('url')){
+            
+            $podcastFile = $request->file('url');
+            $podcastFileName = time() . '.' . $podcastFile->getClientOriginalExtension();
+            $path = public_path() . '/uploads/manage_podcast/podcasts';
+            $podcastFile->move($path, $podcastFileName);
+            $updatepodcast->podcast_url = url('/public/uploads/manage_podcast/podcasts/' . $podcastFileName);
+        }
+        $updatepodcast->title = $request->title;
+        $updatepodcast->description = $request->description;
+        // $updatepodcast->podcast_url = $request->url;
+        $updatepodcast->save();
+        if($updatepodcast){
+            return response()->json([
+                        'message' => "Podcast Updated Succesfully",
+                        'success' => true,
+                        'status' => 200,
+            ]);
+        }else{
+           return response()->json([
+                        'message' => "Something Went Wrong",
+                        'success' => true,
+                        'status' => 500,
+            ]); 
+        }
+    }
+    
+    public function deleteData(Request $request){
+        
+        $deletePodcast = ManagePodcast::find($request->id)->delete();
+        if($deletePodcast){
+            return response()->json([
+                        'message' => "Podcast Deleted Succesfully",
+                        'success' => true,
+                        'status' => 200,
+            ]);
+        }
+    }
+    
+    public function updatePodcastStatus(Request $request){
+        
+        // dd($request->all());
+        $status = ManagePodcast::where('id',$request->queId)->update(['is_active'=> $request->status]);
+        return response()->json([
+                'messages' => "Status Updated Successfully",
+                'success' => true,
+                'status' => 200]);
+    }
+}
diff --git a/app/Http/Controllers/Admin/ManagePreRecordedController.php b/app/Http/Controllers/Admin/ManagePreRecordedController.php
new file mode 100644
index 0000000..2d3ebb0
--- /dev/null
+++ b/app/Http/Controllers/Admin/ManagePreRecordedController.php
@@ -0,0 +1,25 @@
+get()->toArray();
+        // dd($data['quiz']);
+        return view('Admin.Pages.manage_cms.manage_quiz.manage_quiz',$data);
+    }
+    public function add_quiz(){
+        return view('Admin.Pages.manage_cms.manage_quiz.add_quiz');
+    }
+    public function edit_quiz($id){
+        
+        // dd($id);
+        $data['question'] = ManageQuizQuestion::where('id',$id)->get()->toArray();
+        $data['answer'] = QuizQuestionsAnswer::where('question_id',$id)->get()->toArray();
+        // dd($data);
+        return view('Admin.Pages.manage_cms.manage_quiz.edit_quiz',$data);
+    }
+    
+    public function add_quiz_data(Request $request){
+        
+        // dd($request->answer);
+        
+        // Create and store the question
+        if($request->schedule_time == null){
+            $question = ManageQuizQuestion::create(['questions'=> $request->question,'is_active'=>'1']);
+        }else{
+            $question = ManageQuizQuestion::create(['questions'=> $request->question,'schedule_timing'=>$request->schedule_time,'is_active'=>'0']);
+        }
+        
+        if($question){
+            // Create and store the answers
+            $answersArr = [
+                'A' => $request->ans_a,
+                'B' => $request->ans_b,
+                'C' => $request->ans_c,
+                'D' => $request->ans_d,
+            ];
+            foreach ($answersArr as $option => $content) {
+                $isCorrect = ($request->answer == $option) ? '1' : '0';
+                
+                QuizQuestionsAnswer::create([
+                        'question_id' => $question->id,
+                        'answers'=> $content,
+                        'is_active' => $isCorrect
+                    ]);
+                
+            }
+            
+            return response()->json([
+                    'messages' => "Question And Answer Is Added successfully",
+                    'success' => true,
+                    'status' => 200]);
+        }
+    }
+    
+    public function updateQueStatus(Request $request){
+        
+        $status = ManageQuizQuestion::where('id',$request->queId)->update(['is_active'=> $request->status]);
+        return response()->json([
+                'messages' => "Status Updated Successfully",
+                'success' => true,
+                'status' => 200]);
+    }
+    
+    public function updateQueAnsFormData(Request $request){
+        
+        // dd($request->answer);
+        
+        $question = ManageQuizQuestion::where('id',$request->queId)->update(['questions'=>$request->question,'schedule_timing' => $request->schedule_time]);
+        
+        $rightAnsId = $request->answer;
+        foreach($request->input('answers') as $option => $content){
+            $isCorrect = ($option == $rightAnsId) ? '1' : '0';
+            
+            $request = QuizQuestionsAnswer::where('id',$option)->update([
+                    'answers' => $content['content'],
+                    'is_active' => $isCorrect,
+                ]);
+        }
+        
+        return response()->json([
+                    'messages' => "Question And Answer Is Updated successfully",
+                    'success' => true,
+                    'status' => 200]);
+    }
+    
+    public function deleteQueAnsData($id){
+        
+        $deleteQue = ManageQuizQuestion::find($id)->delete();
+        $deleteAnswer = QuizQuestionsAnswer::where('question_id',$id)->delete();
+        return response()->json([
+                    'messages' => "Question And Answer Is Deleted successfully",
+                    'success' => true,
+                    'status' => 200]);
+    }
+}
diff --git a/app/Http/Controllers/Admin/ManageReportsController.php b/app/Http/Controllers/Admin/ManageReportsController.php
new file mode 100644
index 0000000..888008b
--- /dev/null
+++ b/app/Http/Controllers/Admin/ManageReportsController.php
@@ -0,0 +1,26 @@
+manageShortClipsService = $manageShortClipsService;
+    }
+
+    public function create_short_clips()
+    {
+        return view('Admin.Pages.manage_short_clips.add_short_clips');
+    }
+
+    public function insert(Request $request)
+    { 
+        try {            
+                $shortClips = $this->manageShortClipsService->insert_short_clips($request);
+                if(!empty($shortClips))
+                {
+                    return response()->json(['success' => true , 'status' => 200]);        
+                }
+                else{
+                    return response()->json(['success' => false , 'status' => 422]);
+                }       
+            }   
+        catch (Exception $e) {
+                echo 'Message: ' .$e->getMessage();
+            }
+    }
+
+    public function index(Request $request)
+    {
+        $data = $this->manageShortClipsService->get_all_short_clips();
+        return view('Admin.Pages.manage_short_clips.manage_short_clips')->with(['data'=>$data]);
+    }
+   
+    public function destroy($id)
+    {
+        ManageShortClips::find($id)->delete();
+    }
+
+    public function edit_short_clips($id)
+    {
+        $data = $this->manageShortClipsService->edit_short_clips($id)->toArray();
+        return view('Admin.Pages.manage_short_clips.edit_short_clips')->with(['data'=>$data]);
+        
+    }
+
+    public function update(Request $request)
+    {
+        try {            
+                $data = $this->manageShortClipsService->update_short_clips($request);
+                if(!empty($data))
+                {
+                    return response()->json(['success' => true , 'status' => 200]);        
+                }
+                else{
+                    return response()->json(['success' => false , 'status' => 422]);
+                } 
+            }   
+        catch (Exception $e) {
+                echo 'Message: ' .$e->getMessage();
+            }
+
+    }
+
+    public function changestatus(Request $request)
+    {
+        // print_r($request->status);
+        // exit;
+        $status = ManageShortClips::find($request->user_id);
+        $status->is_active = $request->status;
+        $status->save();
+        
+     
+        $changesSatus = ShortClipsLikes::where('short_clips_id', $request->user_id)->update(['is_active' => $request->status]);
+        
+        return response()->json(['success'=>'Status change successfully.']);
+
+    }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/Admin/ManageSubAdminController.php b/app/Http/Controllers/Admin/ManageSubAdminController.php
new file mode 100644
index 0000000..8bbc812
--- /dev/null
+++ b/app/Http/Controllers/Admin/ManageSubAdminController.php
@@ -0,0 +1,13 @@
+manageThoughtsService = $manageThoughtsService;
+    }
+    
+    public function view_manage_thoughts(Request $request)
+    {
+        $manage_thoughts =$this->manageThoughtsService->view_manage_thoughts($request);
+        // dd($manage_thoughts);
+        return view('Admin.Pages.manage_cms.manage_thoughts.manage_thoughts')->with(['manage_thought'=>$manage_thoughts]);
+    }
+    
+     public function insert_thoughts(Request $request)
+    {
+        // dd($request);
+        $thoughts = $this->manageThoughtsService->insert_thoughts($request);
+        return response()->json(['success' => true,'status'=>200]);
+    }
+    
+    
+    public function update_thought(Request $request)
+    {
+        $updateThought = $this->manageThoughtsService->update_thought($request);
+        return response()->json(['success2' => true,'status'=>200]);
+    }
+
+    public function change_manage_thoughts_Status(Request $request)
+    {
+        $status = UserThought::find($request->thought_id);
+        $status->is_active = $request->status;
+        $status->save();
+        return response()->json(['success'=>'Status change successfully.']);
+    }
+    
+     public function delete_thought($id)
+    {
+        $Thoughts = UserThought::find($id)->delete();
+    }
+}
+
diff --git a/app/Http/Controllers/Admin/ManageTransactionController.php b/app/Http/Controllers/Admin/ManageTransactionController.php
new file mode 100644
index 0000000..8357f17
--- /dev/null
+++ b/app/Http/Controllers/Admin/ManageTransactionController.php
@@ -0,0 +1,16 @@
+manageVideoService = $manageVideoService;
+    }
+
+    public function create(){
+        return view('Admin.Pages.manage_cms.manage_video.manage_video');
+    }
+
+    public function add_manage_video(){
+        return view('Admin.Pages.manage_cms.manage_video.add_manage_video');
+    }
+
+    public function view_manage_video(Request $request)
+    {
+        $manage_free_video =$this->manageVideoService->view_manage_video($request);
+        // dd($manage_free_video);
+        return view('Admin.Pages.manage_cms.manage_video.manage_video')->with(['manage_video'=>$manage_free_video]);
+    }
+
+    public function insert_manage_video(Request $request)
+    { 
+        $manage_free_video = $this->manageVideoService->insert_manage_video($request);
+        return response()->json(['success' => true,'status'=>200]);
+    }
+
+    public function edit_manage_video($id){
+        $manage_free_video = $this->manageVideoService->edit_manage_video($id);
+        // echo "
";
+        // print_r($manage_free_video);
+        // echo "
";exit; + + return view('Admin.Pages.manage_cms.manage_video.edit_manage_video')->with(['manage_free_video_getById'=>$manage_free_video]); + } + + public function delete_manage_video($id) + { + $manage_free_video = ManageFreeVideo::find($id); + $manage_free_video->delete(); + $path = public_path().'/uploads/'; + File::delete($path.$manage_free_video->video_cover_image); + return response()->json([ + 'status'=> 200, + 'message'=> 'student Deleted Successfully', + ]); + } + + public function update_mange_video(Request $request) + { + $manage_free_video = $this->manageVideoService->update_mange_video($request); + return response()->json(['success' => true,'status'=>200]); + } + + public function change_manage_video_Status(Request $request) + { + // dd($request->faq_catag_id); + $status = ManageFreeVideo::find($request->manage_thought_id); + $status->is_active = $request->status; + $status->save(); + return response()->json(['success'=>'Status change successfully.']); + + } + +} diff --git a/app/Http/Controllers/Admin/SummerSweatController.php b/app/Http/Controllers/Admin/SummerSweatController.php new file mode 100644 index 0000000..d65b3e8 --- /dev/null +++ b/app/Http/Controllers/Admin/SummerSweatController.php @@ -0,0 +1,321 @@ +toArray(); +//// echo "
"; print_r($manage_activity_schedule);exit;
+//        return view('Admin.Pages.manage_activities.summer_sweats.summer_sweat')->with(['manage_activity_schedule' => $manage_activity_schedule]);
+//    }
+
+    public function add_create(Request $request) {
+
+        $get_single_activity = ActivityMaster::find($request->id)->toArray();
+        $subcription = SubscriptionMaster::all()->toArray();
+//         echo "
"; print_r($get_single_activity);exit;
+        return view('Admin.Pages.manage_activities.summer_sweats.add_summer_sweat')->with(['get_data' => $get_single_activity, 'subcriptions' => $subcription]);
+    }
+    public function add_upcoming_create(Request $request) {
+
+        $get_single_activity = ActivityMaster::find($request->id)->toArray();
+        $subcription = SubscriptionMaster::all()->toArray();
+//         echo "
"; print_r($get_single_activity);exit;
+        return view('Admin.Pages.manage_activities.summer_sweats.add_upcoming_summer_sweat')->with(['get_data' => $get_single_activity, 'subcriptions' => $subcription]);
+    }
+
+    public function insert_summer_sweat(Request $request) {
+//        echo "
";print_r($request->all());die;
+        // for image upload start
+        // dd($request->all());
+        $rules = [
+            'myFile' => 'required|file|max:400', // 400 KB
+        ];
+    
+        $validator = Validator::make($request->all(),$rules);
+ 
+        if ($validator->fails()) {
+            if ($request->expectsJson()) {
+                return response()->json(['success' => false , 'status' => 422]);
+            }
+        }
+        else {
+            $file = $request->file('myFile');
+            $ext = $file->extension();
+            $file_name = time() . '.' . $ext;
+            $path = public_path() . '/uploads/activity_banner_images/activity_schedule';
+            $file->move($path, $file_name);
+        }
+
+        // for image upload end
+        $activity_schedule = new ActivitySchedule;
+        $activity_schedule->activity_master_id = $request->input('url_id');
+        $activity_schedule->activity_teaser = $file_name;
+        $activity_schedule->activity_name = $request->input('main_activity_name');
+        $activity_schedule->description = $request->input('description');
+        $activity_schedule->start_date = $request->input('start_date');
+        $activity_schedule->end_date = $request->input('end_date');
+        $activity_schedule->subscription_id = $request->input('subscription_id');
+        
+        $start_date = strtotime($request->input('start_date'));
+        $end_date = strtotime($request->input('end_date'));
+
+        // Retrieve the ActivityMaster record
+        $activity_master = ActivityMaster::find($request->input('url_id'));
+
+        $activity_master_start = strtotime($activity_master->start_date);
+        $activity_master_end = strtotime($activity_master->end_date);
+
+        // Check if start date and end date are within the activity master range
+        if ($start_date >= $activity_master_start && $end_date <= $activity_master_end) {
+            $activity_schedule->start_date = date('Y-m-d', $start_date);
+            $activity_schedule->end_date = date('Y-m-d', $end_date);
+
+            $activity_schedule->save();
+            return response()->json([
+                        'schedule_data' => $request->input('url_id'),
+                        'success' => true,
+                        'status' => 200,
+            ]);
+        } else {
+            return response()->json([
+                        'error_msg' => 'Start date or end date is not within the activity master range.',
+                        'success' => false,
+                        'status' => 400,
+            ]);
+        }
+    }
+    
+    public function insert_upcoming_summer_sweat(Request $request) {
+//        echo "
";print_r($request->all());die;
+        // for image upload start
+        $rules = [
+            'myFile' => 'required|file|max:400', // 400 KB
+        ];
+    
+        $validator = Validator::make($request->all(),$rules);
+ 
+        if ($validator->fails()) {
+            if ($request->expectsJson()) {
+                return response()->json(['success' => false , 'status' => 422]);
+            }
+        }
+        else {
+            $file = $request->file('myFile');
+            $ext = $file->extension();
+            $file_name = time() . '.' . $ext;
+            $path = public_path() . '/uploads/activity_banner_images/activity_schedule';
+            $file->move($path, $file_name);
+        }
+
+        // for image upload end
+
+        $activity_schedule = new ActivitySchedule;
+        $activity_schedule->activity_master_id = $request->input('url_id');
+        $activity_schedule->activity_teaser = $file_name;
+        $activity_schedule->activity_name = $request->input('main_activity_name');
+        $activity_schedule->description = $request->input('description');
+        $activity_schedule->start_date = $request->input('start_date');
+        $activity_schedule->end_date = $request->input('end_date'); 
+        $activity_schedule->subscription_id = $request->input('subscription_id');
+        
+        $start_date = strtotime($request->input('start_date'));
+        $end_date = strtotime($request->input('end_date'));
+
+        // Retrieve the ActivityMaster record
+        $activity_master = ActivityMaster::find($request->input('url_id'));
+
+        $activity_master_start = strtotime($activity_master->start_date);
+        $activity_master_end = strtotime($activity_master->end_date);
+
+        // Check if start date and end date are within the activity master range
+        if ($start_date >= $activity_master_start && $end_date <= $activity_master_end) {
+            $activity_schedule->start_date = date('Y-m-d', $start_date);
+            $activity_schedule->end_date = date('Y-m-d', $end_date);
+
+            $activity_schedule->save();
+            return response()->json([
+                        'schedule_data' => $request->input('url_id'),
+                        'success' => true,
+                        'status' => 200,
+            ]);
+        } else {
+            return response()->json([
+                        'error_msg' => 'Start date or end date is not within the activity master range.',
+                        'success' => false,
+                        'status' => 400,
+            ]);
+        }
+    }
+    public function edit_summer_sweat($id) {
+        $subcription = SubscriptionMaster::all()->toArray();
+        $get_manage_activity_schedule = ActivitySchedule::find($id)->toArray();
+        // dd($get_manage_activity_schedule);
+        return view('Admin.Pages.manage_activities.summer_sweats.edit_summer_sweat')->with(['get_manage_activity' => $get_manage_activity_schedule, 'subcriptions' => $subcription,]);
+    }
+    public function edit_upcoming_summer_sweat($id) {
+        $subcription = SubscriptionMaster::all()->toArray();
+        $get_manage_activity_schedule = ActivitySchedule::find($id)->toArray();
+    // dd($get_manage_activity_schedule);
+        return view('Admin.Pages.manage_activities.summer_sweats.edit_upcoming_summer_sweat')->with(['get_manage_activity' => $get_manage_activity_schedule, 'subcriptions' => $subcription,]);
+    }
+
+    public function update_summer_sweat(Request $request) {
+        // for image upload start
+        
+        if ($request->activity_teaser) {
+            $rules = [
+                'activity_teaser' => 'required|file|max:400', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+     
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return response()->json(['success' => false , 'status' => 422]);
+                }
+            }
+            else {
+                $file = $request->file('activity_teaser');
+                $ext = $file->extension();
+                $file_name = time() . '.' . $ext;
+                $path = public_path() . '/uploads/activity_banner_images/activity_schedule';
+                $file->move($path, $file_name);
+                $file_name_store = url('/public/uploads/activity_banner_images/activity_schedule/' . $file_name);
+            }
+//        print_r($file_name_store);exit;
+        } else {
+            $file_name_store = $request->db_image;
+        }
+//        $file = $request->file('myFile');
+//        $ext = $file->extension();
+//        $file_name = time() . '.' . $ext;   
+//        $path = public_path() . '/uploads/activity_banner_images/activity_schedule';
+//        $file->move($path, $file_name);
+        // for image upload end
+        
+        $activity_master_id = $request->edit_schedule_id;
+        $activity_schedule = ActivitySchedule::find($request->edit_schedule_id);
+        $activity_schedule->activity_teaser = $file_name_store;
+        $activity_schedule->activity_name = $request->input('activity_name');
+        $activity_schedule->description = $request->input('description');
+        $activity_schedule->start_date = $request->input('start_date');
+        $activity_schedule->end_date = $request->input('end_date');
+        $activity_schedule->subscription_id = $request->input('subscription_id');
+        
+        //End Date of schedule is not greater than activity end date logic
+        $start_date = strtotime($request->input('start_date'));
+        $end_date = strtotime($request->input('end_date'));
+        
+        // Retrieve the ActivityMaster record
+        $activity_master = ActivityMaster::find($request->input('activity_master_id'));
+
+        $activity_master_start = strtotime($activity_master->start_date);
+        $activity_master_end = strtotime($activity_master->end_date);
+        
+        if ($start_date >= $activity_master_start && $end_date <= $activity_master_end) {
+            $activity_schedule->save();
+
+            return response()->json(['schedule_data' => $request->input('activity_master_id'),'success' => true, 'status' => 200]);
+        
+        } else {
+            return response()->json([
+                        'error_msg' => 'Start date or end date is not within the activity master range.',
+                        'success' => false,
+                        'status' => 400,
+            ]);
+        }
+    }
+    
+    public function update_upcoming_summer_sweat(Request $request) {
+        // for image upload start
+//        echo "
"; print_r($request->all());exit;
+        if ($request->activity_teaser) {
+            $rules = [
+                'activity_teaser' => 'required|file|max:400', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+     
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return response()->json(['success' => false , 'status' => 422]);
+                }
+            }
+            else {
+                $file = $request->file('activity_teaser');
+                $ext = $file->extension();
+                $file_name = time() . '.' . $ext;
+                $path = public_path() . '/uploads/activity_banner_images/activity_schedule';
+                $file->move($path, $file_name);
+                $file_name_store = url('/public/uploads/activity_banner_images/activity_schedule/' . $file_name);
+            }
+//        print_r($file_name_store);exit;
+        } else {
+            $file_name_store = $request->db_image;
+        }
+//        $file = $request->file('myFile');
+//        $ext = $file->extension();
+//        $file_name = time() . '.' . $ext;   
+//        $path = public_path() . '/uploads/activity_banner_images/activity_schedule';
+//        $file->move($path, $file_name);
+        // for image upload end
+        
+        $activity_master_id = $request->edit_schedule_id;
+        $activity_schedule = ActivitySchedule::find($request->edit_schedule_id);
+        $activity_schedule->activity_teaser = $file_name_store;
+        $activity_schedule->activity_name = $request->input('activity_name');
+        $activity_schedule->description = $request->input('description');
+        $activity_schedule->start_date = $request->input('start_date');
+        $activity_schedule->end_date = $request->input('end_date');
+        $activity_schedule->subscription_id = $request->input('subscription_id');
+        
+        //End Date of schedule is not greater than activity end date logic
+        $start_date = strtotime($request->input('start_date'));
+        $end_date = strtotime($request->input('end_date'));
+        
+        // Retrieve the ActivityMaster record
+        $activity_master = ActivityMaster::find($request->input('activity_master_id'));
+
+        $activity_master_start = strtotime($activity_master->start_date);
+        $activity_master_end = strtotime($activity_master->end_date);
+        
+        if ($start_date >= $activity_master_start && $end_date <= $activity_master_end) {
+            $activity_schedule->save();
+
+            return response()->json(['schedule_data' => $request->input('activity_master_id'),'success' => true, 'status' => 200]);
+        
+        } else {
+            return response()->json([
+                        'error_msg' => 'Start date or end date is not within the activity master range.',
+                        'success' => false,
+                        'status' => 400,
+            ]);
+        }
+    }
+    
+    
+    public function delete_schedule($id) {
+        
+        // dd($id);
+        $manage_schedule = ActivitySchedule::find($id)->delete();
+        // dd($manage_schedule);
+        // if($manage_schedule == true){
+            ActivityDay::where('activity_schedule_id',$id)->delete();
+        // }
+    }
+
+}
diff --git a/app/Http/Controllers/Admin/TeacherController.php b/app/Http/Controllers/Admin/TeacherController.php
new file mode 100644
index 0000000..87bcd33
--- /dev/null
+++ b/app/Http/Controllers/Admin/TeacherController.php
@@ -0,0 +1,78 @@
+toArray();
+//        echo "
"; dd($manage_teacher);exit;
+        return view('Admin.Pages.manage_teachers.manage_teacher')->with(['data' => $manage_teacher]);
+    }
+
+    public function create() {
+        return view('Admin.Pages.manage_teachers.add_manage_teacher');
+    }
+
+    public function insert(Request $request) {
+        // for image upload start
+
+        $file = $request->file('teacher_image');
+        $ext = $file->extension();
+        $file_name = time() . '.' . $ext;
+        $path = public_path() . '/uploads/teacher_images';
+        $file->move($path, $file_name);
+
+        // for image upload end
+
+        $add_teacher = new Teacher;
+        $add_teacher->teacher_title = $request->input('teacher_title');
+        $add_teacher->teacher_sub_title = $request->input('teacher_sub_title');
+        $add_teacher->description = $request->input('teacher_description');
+        $add_teacher->address = $request->input('teacher_address');
+        $add_teacher->teacher_image = $file_name;
+        $add_teacher->contact_number = $request->input('teacher_contact_number');
+        $add_teacher->save();
+        return response()->json(['success' => true, 'status' => 200]);
+    }
+
+    public function delete_teacher($id) {
+        $manage_teacher = Teacher::find($id)->delete();
+    }
+
+    public function edit_teacher($id) {
+        $manage_teacher = Teacher::find($id)->toArray();
+        return view('Admin.Pages.manage_teachers.edit_manage_teacher')->with(['manage_teacher' => $manage_teacher]);
+    }
+
+    public function update_teacher(Request $request) {
+
+        $teacher_data = Teacher::find($request->teacher_id);
+        if ($request->hasFile('teacher_image')) {
+            $path = public_path() . '/uploads/teacher_images';
+            File::delete($path . $teacher_data->teacher_image);
+            $file = $request->file('teacher_image');
+            $ext = $file->extension();
+            $file_name_main_image = time() . '.' . $ext;
+            $file->move($path, $file_name_main_image);
+        } else {
+            $file_name_main_image = $teacher_data->teacher_image;
+        }
+
+        
+        $teacher_data->teacher_title = $request->input('teacher_title');
+        $teacher_data->teacher_sub_title = $request->input('teacher_sub_title');
+        $teacher_data->description = $request->input('teacher_description');
+        $teacher_data->teacher_image = url('/public/uploads/teacher_images/' . $file_name_main_image);
+        $teacher_data->address = $request->input('teacher_address');
+        $teacher_data->contact_number = $request->input('teacher_contact_number');
+        $teacher_data->save();
+        return response()->json(['success' => true, 'status' => 200]);
+    }
+
+}
diff --git a/app/Http/Controllers/Admin/TestimonialController.php b/app/Http/Controllers/Admin/TestimonialController.php
new file mode 100644
index 0000000..ece44c6
--- /dev/null
+++ b/app/Http/Controllers/Admin/TestimonialController.php
@@ -0,0 +1,81 @@
+manageTestimonialService = $manageTestimonialService;
+    }
+ 
+    public function create_testimonial()
+    {
+        return view('Admin.Pages.manage_cms.testimonial.add_testimonial');
+    }
+    
+    public function insert_testimonial(Request $request)
+    { 
+
+        try {     
+                $testimonial = $this->manageTestimonialService->insert_testimonial($request);
+                
+                if(!empty($testimonial))
+                {
+                    return response()->json(['success' => true , 'status' => 200]);        
+                }
+                else{
+                    return response()->json(['success' => false , 'status' => 422]);
+                }
+                    
+            }   
+        catch (Exception $e) {
+                echo 'Message: ' .$e->getMessage();
+            }
+    }
+
+    public function view_testimonial(Request $request) {
+        $testimonials = $this->manageTestimonialService->view_testimonial($request)->toArray();
+        // echo "
"; print_r($testimonials);exit;
+        return view('Admin.Pages.manage_cms.testimonial.testimonial')->with(['data' => $testimonials]);
+        // return response()->json(['success' => true,'status'=>200]);
+    }
+
+    public function delete_testimonial($id) {
+        // print_r($id);die;
+        $testimonials = Testimonial::find($id)->delete();
+    }
+
+    public function edit_testimonial($id)
+    {
+        $data = $this->manageTestimonialService->edit_testimonial($id)->toArray();
+        // dd($data);
+        return view('Admin.Pages.manage_cms.testimonial.edit_testimonial')->with(['data'=>$data]);
+        
+    }
+    
+     public function update_testimonial(Request $request)
+    {
+        try {            
+                $data = $this->manageTestimonialService->update_testimonial($request);
+                if(!empty($data)){
+                    return response()->json(['success' => true , 'status' => 200]);  
+                }
+                else{
+                    return response()->json(['success' => false , 'status' => 422]);
+                }
+            }   
+        catch (Exception $e) {
+                echo 'Message: ' .$e->getMessage();
+            }
+
+    }
+
+}
diff --git a/app/Http/Controllers/Admin/UserOverviewController.php b/app/Http/Controllers/Admin/UserOverviewController.php
new file mode 100644
index 0000000..026e781
--- /dev/null
+++ b/app/Http/Controllers/Admin/UserOverviewController.php
@@ -0,0 +1,24 @@
+all());
+        // $date = $request->date;
+        // $data = UserOverView::whereDate('created_at', $date)->get();
+        return Excel::download(new DataExport, 'dataoverview.xlsx');
+    }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/Auth/ConfirmPasswordController.php b/app/Http/Controllers/Auth/ConfirmPasswordController.php
new file mode 100644
index 0000000..138c1f0
--- /dev/null
+++ b/app/Http/Controllers/Auth/ConfirmPasswordController.php
@@ -0,0 +1,40 @@
+middleware('auth');
+    }
+}
diff --git a/app/Http/Controllers/Auth/ForgotPasswordController.php b/app/Http/Controllers/Auth/ForgotPasswordController.php
new file mode 100644
index 0000000..465c39c
--- /dev/null
+++ b/app/Http/Controllers/Auth/ForgotPasswordController.php
@@ -0,0 +1,22 @@
+middleware('guest')->except('logout');
+    }
+}
diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php
new file mode 100644
index 0000000..ed1a5e0
--- /dev/null
+++ b/app/Http/Controllers/Auth/RegisterController.php
@@ -0,0 +1,73 @@
+middleware('guest');
+    }
+
+    /**
+     * Get a validator for an incoming registration request.
+     *
+     * @param  array  $data
+     * @return \Illuminate\Contracts\Validation\Validator
+     */
+    protected function validator(array $data)
+    {
+        return Validator::make($data, [
+            'name' => ['required', 'string', 'max:255'],
+            'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
+            'password' => ['required', 'string', 'min:8', 'confirmed'],
+        ]);
+    }
+
+    /**
+     * Create a new user instance after a valid registration.
+     *
+     * @param  array  $data
+     * @return \App\Models\User
+     */
+    protected function create(array $data)
+    {
+        return User::create([
+            'name' => $data['name'],
+            'email' => $data['email'],
+            'password' => Hash::make($data['password']),
+        ]);
+    }
+}
diff --git a/app/Http/Controllers/Auth/ResetPasswordController.php b/app/Http/Controllers/Auth/ResetPasswordController.php
new file mode 100644
index 0000000..b1726a3
--- /dev/null
+++ b/app/Http/Controllers/Auth/ResetPasswordController.php
@@ -0,0 +1,30 @@
+middleware('auth');
+        $this->middleware('signed')->only('verify');
+        $this->middleware('throttle:6,1')->only('verify', 'resend');
+    }
+}
diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php
new file mode 100644
index 0000000..a0a2a8a
--- /dev/null
+++ b/app/Http/Controllers/Controller.php
@@ -0,0 +1,13 @@
+middleware('auth');
+    }
+
+    /**
+     * Show the application dashboard.
+     *
+     * @return \Illuminate\Contracts\Support\Renderable
+     */
+    public function index()
+    {
+        return view('home');
+    }
+}
diff --git a/app/Http/Controllers/TransformAndBeyondBeginnersController.php b/app/Http/Controllers/TransformAndBeyondBeginnersController.php
new file mode 100644
index 0000000..361c0fd
--- /dev/null
+++ b/app/Http/Controllers/TransformAndBeyondBeginnersController.php
@@ -0,0 +1,10 @@
+ $req->full_name,
+            'email_id' => $req->email,
+            'subject' => $req->subject,
+            'type' => $req->subject,
+            'message' => $req->message,
+            'is_reply' => '0',
+            'is_active' => '1',
+            );
+            
+        $data = ContactUs::create($contactdata);
+        $mail_details = [
+            'email' => $req->email,
+            'subject' => $req->subject,
+            'body' => $req->message
+        ];
+        $mail = Mail::to(['Support@Getsetfit.Co'])->send(new ContactUsForm($mail_details));
+        // dd($mail);
+        if ($mail) {
+            
+            return response()->json(['success' => true, 'message' => 'Message Send Successfully', 'status' => 200]);
+        }
+        return response()->json(['success' => false, 'message' => 'Message failed to send', 'status' => 500]);
+        
+    }
+}
diff --git a/app/Http/Controllers/Website/DownloadController.php b/app/Http/Controllers/Website/DownloadController.php
new file mode 100644
index 0000000..cf78244
--- /dev/null
+++ b/app/Http/Controllers/Website/DownloadController.php
@@ -0,0 +1,14 @@
+all());
+//        exit;
+$cread=$request->only('email','password');
+
+        $credentials = ['email_id' => $request->email,'password' => $request->password
+        ];
+
+        // Retrieve the user by their email or ID (you can use any identifier)
+        $user = User::where('email_id', $request->input('email'))->first();
+//        print_r(!$user);
+//        exit;
+        if(!$user) {
+            return response()->json(['success' => false, 'message' => 'Invalid Email', 'status' => 404]);
+        }else{
+            if (Hash::check($credentials['password'], $user->password)) { 
+                
+                $login = Auth::login($user);
+                $userData = Auth::user();
+                $todaysDate = Carbon::now()->toDateString();
+                $subscriptionEndDate = $userData->end_date;
+                $subscriptionEndDate = Carbon::parse($subscriptionEndDate);
+
+                $subscriptionEndsIn7Days = $subscriptionEndDate->addDays(7)->toDateString();
+                if($subscriptionEndsIn7Days == null || $subscriptionEndsIn7Days < $todaysDate)
+                {
+                    return response()->json(['success' => true, 'message' => 'Your subscription has ended.', 'status' => 201]);
+                }
+                return response()->json(['success' => true, 'message' => 'Login Succefully', 'status' => 200]);
+            } else {
+                return response()->json(['success' => false, 'message' => 'Wrong Password', 'status' => 401]);
+            }
+            
+        }
+    }
+}
diff --git a/app/Http/Controllers/Website/OurServicesController.php b/app/Http/Controllers/Website/OurServicesController.php
new file mode 100644
index 0000000..b5f87b9
--- /dev/null
+++ b/app/Http/Controllers/Website/OurServicesController.php
@@ -0,0 +1,86 @@
+ip(); // Get user's IP address
+        
+        // $client = new Client();
+        // $response = $client->get("http://api.ipstack.com/{$ip}?access_key={$apiKey}");
+        $userIP = $request->ip(); // Get the user's IP address
+
+        // Make a GET request to ipinfo.io
+        $response = Http::get("https://ipinfo.io/{$userIP}/json");
+        // Parse the JSON response
+        $data = $response->json();
+        // $data = json_decode($response->getBody(), true);
+        // Get user's country code from the API response
+        $userCountry['data'] = $data['country'];
+        
+        // dd($userCountry);
+        
+        return view('website.pages.transform_beyond_beginner',$userCountry);
+    }
+    
+    //gsf exclusive
+    public function gsf_exclusive(Request $request){
+        
+        // $apiKey = "bdf20639fab33d6dc265da0f6926a491";
+        // $ip = $request->ip(); // Get user's IP address
+        
+        // $client = new Client();
+        // $response = $client->get("http://api.ipstack.com/{$ip}?access_key={$apiKey}");
+        $userIP = $request->ip(); // Get the user's IP address
+
+        // Make a GET request to ipinfo.io
+        $response = Http::get("https://ipinfo.io/{$userIP}/json");
+        // Parse the JSON response
+        $data = $response->json();
+        // $data = json_decode($response->getBody(), true);
+        // Get user's country code from the API response
+        $userCountry['data'] = $data['country'];
+        
+        // dd($userCountry);
+        
+        return view('website.pages.gsf_exclusive',$userCountry);
+    }
+    
+    // get set eat
+    public function get_set_eat(Request $request){
+        
+        // $apiKey = "bdf20639fab33d6dc265da0f6926a491";
+        // $ip = $request->ip(); // Get user's IP address
+        
+        // $client = new Client();
+        // $response = $client->get("http://api.ipstack.com/{$ip}?access_key={$apiKey}");
+        $userIP = $request->ip(); // Get the user's IP address
+
+        // Make a GET request to ipinfo.io
+        $response = Http::get("https://ipinfo.io/{$userIP}/json");
+        // Parse the JSON response
+        $data = $response->json();
+        // $data = json_decode($response->getBody(), true);
+        // Get user's country code from the API response
+        $userCountry['data'] = $data['country'];
+        
+        // dd($userCountry);
+        
+        return view('website.pages.get_set_eat',$userCountry);
+    }
+}
diff --git a/app/Http/Controllers/Website/TransformBeyondController.php b/app/Http/Controllers/Website/TransformBeyondController.php
new file mode 100644
index 0000000..f31db8b
--- /dev/null
+++ b/app/Http/Controllers/Website/TransformBeyondController.php
@@ -0,0 +1,35 @@
+ip(); // Get user's IP address
+        
+        // $client = new Client();
+        // $response = $client->get("http://api.ipstack.com/{$ip}?access_key={$apiKey}");
+        
+        $userIP = $request->ip(); // Get the user's IP address
+
+        // Make a GET request to ipinfo.io
+        $response = Http::get("https://ipinfo.io/{$userIP}?token=fb9b51b5a3bbd9");
+        // Parse the JSON response
+        $data = $response->json();
+        // dd($data);
+        // $data = json_decode($response->getBody(), true);
+        // Get user's country code from the API response
+        $userCountry['data'] = $data['country'];
+        
+        // dd($userCountry);
+
+        return view('website.pages.transform_beyond',$userCountry);
+    }
+}
diff --git a/app/Http/Controllers/Website/YourActivityController.php b/app/Http/Controllers/Website/YourActivityController.php
new file mode 100644
index 0000000..f3f5c7f
--- /dev/null
+++ b/app/Http/Controllers/Website/YourActivityController.php
@@ -0,0 +1,161 @@
+format('Y-m-d'); // Get the current date in the format "YYYY-MM-DD"
+        $user_data = Auth::user();
+        $userIP =  \Request::ip();
+        
+        // $access_token = 'fb9b51b5a3bbd9';
+        // $client = new IPinfo($access_token);
+        // $ip_address = $userIP ;
+        // $details = $client->getDetails($ip_address);
+        
+        // dd($details);
+        $response = Http::get("https://ipinfo.io/{$userIP}?token=fb9b51b5a3bbd9");
+        $locationData = $response->json();
+        $userTimeZone = $locationData['timezone'];
+        
+        $user_data = Auth::user();
+        $utm_source = $user_data->utm_source;
+        $subscription_data = SubscriptionMaster::where('utm_plan',$utm_source)->first();
+        $subscription_id = $subscription_data->id;
+        $data['live_activity'] = ActivityDay::where('subscription_id', $subscription_id)
+                                               ->where('date', 'LIKE', "%$current_day%")
+                                               ->with('scheduleData', 'activityData')
+                                               ->get();
+                                            //   dd($data['live_activity']);
+                            
+        // dd($data['live_activity']);                                   
+        // if($data['live_activity']->isEmpty()){
+        //     $data['data']  = ['0'];
+        //     dd($data);
+        //     return view('website.pages.your_activity',compact('data'));
+        // }else{
+        if(!$data['live_activity']->isEmpty()){
+            $timestamp = $data['live_activity'][0]['time'];
+            // dd($timestamp);
+            $gettimezone = $userTimeZone;
+            // $datetime = "2016-02-01 00:00:01";
+            // Target timezone based on the user's IP address
+            $targetTimeZone = new DateTimeZone($userTimeZone);
+            
+            // Create a DateTime object for the original timestamp in India timezone
+            $given = new DateTime($timestamp, new DateTimeZone('Asia/Kolkata'));
+            
+            // Set the target timezone
+            $given->setTimezone($targetTimeZone);
+            // $given = new DateTime($timestamp, new DateTimeZone($gettimezone));
+            // $given->setTimezone(new DateTimeZone("UTC"));
+            $output = $given->format("H:i"); 
+            $data['live_activity'][0]['time']=$output;
+        }
+        $data['subscription_data'] = SubscriptionMaster::where('utm_plan',$utm_source)->first();
+        // return $data;
+        //past data
+        $subscription_data = SubscriptionMaster::where('utm_plan',$utm_source)->first();
+        $subscription_id = $subscription_data->id;
+        
+        // dd($subscription_id);
+        // Calculate the cutoff date (end date + 7 days)
+        $activity_data = ActivityMaster::where('subscription_id', $subscription_id)->orderBy('end_date', 'desc')->first();
+        // return $activity_data;
+        // dd($activity_data);
+        $end_date = $activity_data->end_date; 
+        // dd($end_date);
+        $cutoffDate = Carbon::parse($end_date)->addDays(7)->toDateString();
+        // dd($cutoffDate);
+        // $desired_date = Carbon::createFromDate(2024, 1, 2);
+        // $cutoffDate = $desired_date->format('Y-m-d');
+        $current_date = Carbon::now()->format('Y-m-d');
+        $data['data'] = [];
+        // dd($cutoffDate);
+        // Check if the current date is past the cutoff date
+        if (Carbon::now()->toDateString() > $cutoffDate) {
+            
+            $data['data']  = ['0'];
+            // dd($data);
+            return view('website.pages.your_activity',compact('data'));
+        }
+        
+        $data['past_activity'] = ActivityMaster::where('subscription_id', $subscription_id)->where('end_date','<',$cutoffDate)->with('teacher_data')->orderBy('start_date', 'desc')->first();
+        // dd($data['past_activity']);
+        if ($data['past_activity'] !== null) {
+            $schedule_data = ActivitySchedule::where('activity_master_id', $data['past_activity']['id'])->with('past_data')->orderBy('start_date', 'asc')->get()->toArray();
+            // dd($schedule_data);
+        } else {
+            $data['past_activity'] = [];
+            $schedule_data = []; // Set an empty array when $data['past_activity'] is null
+        }
+                        
+            
+            $data_schedule = [];
+            foreach ($schedule_data as $k => $val){
+                if (empty($val['past_data'])){
+                    continue;
+                }else{
+                    $data_schedule[] = $val;
+                }
+            }
+            
+            $data['past_activity']['schedule'] = $data_schedule;
+        
+         
+        // $userIP = $request->ip();
+
+        // $response = Http::get("https://ipinfo.io/{$userIP}/json");
+        // $locationData = $response->json();
+        // // dd($locationData);
+        // $userTimeZone = $locationData['timezone'];
+        // // dd($userTimeZone);
+        
+        // $timestamp = $data['live_activity'][0]->new_time; // Use square brackets to access elements
+        // // dd()
+        // $originalTime = Carbon::parse($timestamp,$userTimeZone);
+        // $date = Carbon::createFromFormat('H:i:s', $timestamp, 'UTC');
+        // $date->setTimezone($userTimeZone); 
+        // dd($date);
+        // $userTime = $originalTime->copy();
+        // $userTime->setTimezone($userTimeZone);
+        // $userTimeFormatted = $userTime->format('H:i:s');
+        // // dd($userTimeFormatted);
+        // $data['live_activity'] = $data['live_activity']->map(function ($item) use ($userTimeZone) {
+        //     $timestamp = $item->new_time;
+        //     // $normalTime = Carbon::createFromFormat('H:i', $timestamp, $userTimeZone); // Replace 'your_timezone' with the actual timezone of the 'time' column
+        //     $normalTime = Carbon::parse($timestamp, $userTimeZone);
+        //     $convertedTime = $normalTime->setTimezone($userTimeZone); // Convert to the user's time zone
+        //     $item->new_time = $convertedTime->format('H:i'); // Update the 'time' value with the user's time zone in 'HH:mm' format
+        //     return $item;
+        // })->toArray();
+        
+        // echo "
";
+        // print_r($data['live_activity']);
+        // exit;
+       
+        return view('website.pages.your_activity',$data);
+    }
+}
diff --git a/app/Http/Helpers/ApiResponseHelper.php b/app/Http/Helpers/ApiResponseHelper.php
new file mode 100644
index 0000000..2fe361c
--- /dev/null
+++ b/app/Http/Helpers/ApiResponseHelper.php
@@ -0,0 +1,14 @@
+ $code,
+        "message"=>$message,
+        "data"=>$data
+    ];
+}
\ No newline at end of file
diff --git a/app/Http/Helpers/ImageHelper.php b/app/Http/Helpers/ImageHelper.php
new file mode 100644
index 0000000..2e367f1
--- /dev/null
+++ b/app/Http/Helpers/ImageHelper.php
@@ -0,0 +1 @@
+country($userSelectedCountry);
+
+        // Get the time zone from the country data
+        $timeZone = $record->location->timeZone;
+
+        return $timeZone;
+    } catch (\Exception $e) {
+        // Handle exceptions if the country code or IP address is not found
+        return 'UTC'; // Default to UTC if not found
+    }
+}
\ No newline at end of file
diff --git a/app/Http/Helpers/Webhelper.php b/app/Http/Helpers/Webhelper.php
new file mode 100644
index 0000000..5a113eb
--- /dev/null
+++ b/app/Http/Helpers/Webhelper.php
@@ -0,0 +1,86 @@
+getPayload();
+   $userCheck = PersonalAccessToken::where([['user_id', $token['sub']], ['token', $tokenData]])->get();
+   if(count($userCheck) == 0 || $userCheck[0]->token == '')
+   {
+      $msg_data['data'] = array([
+         'success' => 0,
+         'messsage' => 'Please Login and try again.'
+      ]);
+   }
+   return $token;
+}
+
+//leader dashboard filter for elite 
+function GroupLevelElites(){
+    $elites_user_id = [];
+    $totalUsers = LeaderboardMaster::count();
+    //top 30 percent for elites from all data
+    $eliteCount = ceil($totalUsers * 0.3);
+    $elites = LeaderboardMaster::where('total_score', '>=', 'some_value')
+                    ->orderBy('total_score', 'desc')
+                    ->take($eliteCount)
+                    ->get();
+                
+    foreach ($elites as $k => $val){
+        $elites_user_id[] = $val->user_id;
+    }
+    $data['elites'] = $elites;
+    $data['elites_user_id'] = $elites_user_id;
+    return $data;
+}
+
+//leader dashboard filter for gamechanger
+function GroupLevelGameChanger(){
+    $gamechanger_user_id = [];
+    $elit_data = GroupLevelElites();
+    $elites_user_id = $elit_data['elites_user_id'];
+    $remainingUsers = LeaderboardMaster::whereNotIn('user_id', $elites_user_id);
+    $gameChangerCount = ceil($remainingUsers->get()->count() * 0.3);
+    $remainingUsersData = $remainingUsers->take($gameChangerCount)->orderBy('total_score', 'desc')->get();
+    foreach ($remainingUsersData as $value){
+        $gamechanger_user_id[] = $value['user_id'];
+    }
+    //pushing gamechanger user id to elite user id
+    foreach ($gamechanger_user_id as $ids){
+        array_push($elites_user_id, $ids);
+    }
+    $data['game_changer'] = $remainingUsersData;
+    $data['all_top_users_id'] = $elites_user_id;
+    return $data;
+}
+
+function getCountryTimeZone($userSelectedCountry)
+{
+    // Path to the GeoIP2 database file
+    $databasePath = storage_path('app/GeoLite2-Country.mmdb'); // Replace with the path to your downloaded database file
+
+    // Initialize the GeoIP2 reader
+    $reader = new Reader($databasePath);
+
+    try {
+        // Look up the country for the user's selected IP address or country code
+        $record = $reader->country($userSelectedCountry);
+
+        // Get the time zone from the country data
+        $timeZone = $record->location->timeZone;
+
+        return $timeZone;
+    } catch (\Exception $e) {
+        // Handle exceptions if the country code or IP address is not found
+        return 'UTC'; // Default to UTC if not found
+    }
+}
\ No newline at end of file
diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php
new file mode 100644
index 0000000..7e8a11c
--- /dev/null
+++ b/app/Http/Kernel.php
@@ -0,0 +1,71 @@
+
+     */
+    protected $middleware = [
+        // \App\Http\Middleware\TrustHosts::class,
+        \App\Http\Middleware\TrustProxies::class,
+        \Illuminate\Http\Middleware\HandleCors::class,
+        \App\Http\Middleware\PreventRequestsDuringMaintenance::class,
+        \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
+        \App\Http\Middleware\TrimStrings::class,
+        \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
+    ];
+
+    /**
+     * The application's route middleware groups.
+     *
+     * @var array>
+     */
+    protected $middlewareGroups = [
+        'web' => [
+            \App\Http\Middleware\EncryptCookies::class,
+            \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
+            \Illuminate\Session\Middleware\StartSession::class,
+            \Illuminate\View\Middleware\ShareErrorsFromSession::class,
+            \App\Http\Middleware\VerifyCsrfToken::class,
+            \Illuminate\Routing\Middleware\SubstituteBindings::class,
+        ],
+
+        'api' => [
+            // \Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class,
+            'throttle:api',
+            \Illuminate\Routing\Middleware\SubstituteBindings::class,
+        ],
+    ];
+
+    /**
+     * The application's route middleware.
+     *
+     * These middleware may be assigned to groups or used individually.
+     *
+     * @var array
+     */
+    protected $routeMiddleware = [
+        'auth' => \App\Http\Middleware\Authenticate::class,
+        'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
+        'auth.session' => \Illuminate\Session\Middleware\AuthenticateSession::class,
+        'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
+        'can' => \Illuminate\Auth\Middleware\Authorize::class,
+        'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
+        'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class,
+        'signed' => \App\Http\Middleware\ValidateSignature::class,
+        'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
+        'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class,
+        'admin' => \App\Http\Middleware\AdminMiddleware::class,
+        'website' => \App\Http\Middleware\WebsiteMiddleware::class,
+        'jwt.verify' => \App\Http\Middleware\JwtMiddleware::class,
+        'log_execution_time' => \App\Http\Middleware\RequestExecutionTimeLogMiddleware::class, // added by Pradyumn on 9 july 2024; 
+    ];
+}
diff --git a/app/Http/Middleware/AdminMiddleware.php b/app/Http/Middleware/AdminMiddleware.php
new file mode 100644
index 0000000..0e9d45b
--- /dev/null
+++ b/app/Http/Middleware/AdminMiddleware.php
@@ -0,0 +1,26 @@
+check()){
+            return redirect('/admin/sign_in');
+        }
+        return $next($request);
+    }
+}
diff --git a/app/Http/Middleware/AuthCheck.php b/app/Http/Middleware/AuthCheck.php
new file mode 100644
index 0000000..3510976
--- /dev/null
+++ b/app/Http/Middleware/AuthCheck.php
@@ -0,0 +1,48 @@
+all());
+//         if(!Session()->has('_token')){
+//            return redirect('sign_in')->with('error_msg','You must be logged in..');
+//         }
+//         return $request;
+//
+//    if($response instanceof \Illuminate\Http\Response) {
+//        return $next($request)->header('Cache-Control','no-cache, no-store, max-age=0, must-revalidate')
+//                              ->header('Pragma','no-cache')
+//                              ->header('Expires','Sat 01 Jan 1990 00:00:00 GMT');;
+//    }
+//    $response = $next($request);
+//
+//    foreach($header as $key => $value)
+//    {
+//        $response->headers->set($key, $value);
+//    }
+//    return $response;
+
+}
+}
diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php
new file mode 100644
index 0000000..704089a
--- /dev/null
+++ b/app/Http/Middleware/Authenticate.php
@@ -0,0 +1,21 @@
+expectsJson()) {
+            return route('login');
+        }
+    }
+}
diff --git a/app/Http/Middleware/EncryptCookies.php b/app/Http/Middleware/EncryptCookies.php
new file mode 100644
index 0000000..867695b
--- /dev/null
+++ b/app/Http/Middleware/EncryptCookies.php
@@ -0,0 +1,17 @@
+
+     */
+    protected $except = [
+        //
+    ];
+}
diff --git a/app/Http/Middleware/JwtMiddleware.php b/app/Http/Middleware/JwtMiddleware.php
new file mode 100644
index 0000000..3ad8d71
--- /dev/null
+++ b/app/Http/Middleware/JwtMiddleware.php
@@ -0,0 +1,56 @@
+header('access-token');
+            $data = JWTAuth::setToken($token)->getPayload();
+            // dd($data['sub']);
+            $user = User::find($data['sub']);
+            // dd($user);
+            $subscriptionEndDate = Carbon::parse($user->end_date);
+            // dd($subscriptionEndDate);
+            $todaysDate = Carbon::now()->toDateString();
+            $subscriptionEndsIn7Days = $subscriptionEndDate->addDays(7)->toDateString();
+            
+            if($subscriptionEndsIn7Days == null || $subscriptionEndsIn7Days < $todaysDate)
+            {
+                // Auth::logout();
+                $logout = auth('api')->logout();
+                
+                return response()->json(['success' => false,'status' => 'Authentication failed.']);
+            }
+        } catch (Exception $e) {
+            if ($e instanceof \Tymon\JWTAuth\Exceptions\TokenInvalidException){
+                return response()->json(['status' => 'Token is Invalid']);
+            }else if ($e instanceof \Tymon\JWTAuth\Exceptions\TokenExpiredException){
+                return response()->json(['status' => 'Token is Expired']);
+            }else{
+                return response()->json(['status' => 'Authorization Token not found' , 'status_code' => 201]);
+            }
+        }
+        Session::flash('tokenData', $token);
+        return $next($request);
+    }
+}
diff --git a/app/Http/Middleware/PreventRequestsDuringMaintenance.php b/app/Http/Middleware/PreventRequestsDuringMaintenance.php
new file mode 100644
index 0000000..74cbd9a
--- /dev/null
+++ b/app/Http/Middleware/PreventRequestsDuringMaintenance.php
@@ -0,0 +1,17 @@
+
+     */
+    protected $except = [
+        //
+    ];
+}
diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php
new file mode 100644
index 0000000..a2813a0
--- /dev/null
+++ b/app/Http/Middleware/RedirectIfAuthenticated.php
@@ -0,0 +1,32 @@
+check()) {
+                return redirect(RouteServiceProvider::HOME);
+            }
+        }
+
+        return $next($request);
+    }
+}
diff --git a/app/Http/Middleware/RequestExecutionTimeLogMiddleware.php b/app/Http/Middleware/RequestExecutionTimeLogMiddleware.php
new file mode 100644
index 0000000..c594cef
--- /dev/null
+++ b/app/Http/Middleware/RequestExecutionTimeLogMiddleware.php
@@ -0,0 +1,46 @@
+method(),
+             $request->fullUrl(),
+             number_format($executionTime * 1000, 2)
+         );
+ 
+         Log::info($logMessage);
+ 
+         return $response;
+        // return $next($request);
+    }
+}
diff --git a/app/Http/Middleware/TrimStrings.php b/app/Http/Middleware/TrimStrings.php
new file mode 100644
index 0000000..88cadca
--- /dev/null
+++ b/app/Http/Middleware/TrimStrings.php
@@ -0,0 +1,19 @@
+
+     */
+    protected $except = [
+        'current_password',
+        'password',
+        'password_confirmation',
+    ];
+}
diff --git a/app/Http/Middleware/TrustHosts.php b/app/Http/Middleware/TrustHosts.php
new file mode 100644
index 0000000..7186414
--- /dev/null
+++ b/app/Http/Middleware/TrustHosts.php
@@ -0,0 +1,20 @@
+
+     */
+    public function hosts()
+    {
+        return [
+            $this->allSubdomainsOfApplicationUrl(),
+        ];
+    }
+}
diff --git a/app/Http/Middleware/TrustProxies.php b/app/Http/Middleware/TrustProxies.php
new file mode 100644
index 0000000..3391630
--- /dev/null
+++ b/app/Http/Middleware/TrustProxies.php
@@ -0,0 +1,28 @@
+|string|null
+     */
+    protected $proxies;
+
+    /**
+     * The headers that should be used to detect proxies.
+     *
+     * @var int
+     */
+    protected $headers =
+        Request::HEADER_X_FORWARDED_FOR |
+        Request::HEADER_X_FORWARDED_HOST |
+        Request::HEADER_X_FORWARDED_PORT |
+        Request::HEADER_X_FORWARDED_PROTO |
+        Request::HEADER_X_FORWARDED_AWS_ELB;
+}
diff --git a/app/Http/Middleware/ValidateSignature.php b/app/Http/Middleware/ValidateSignature.php
new file mode 100644
index 0000000..093bf64
--- /dev/null
+++ b/app/Http/Middleware/ValidateSignature.php
@@ -0,0 +1,22 @@
+
+     */
+    protected $except = [
+        // 'fbclid',
+        // 'utm_campaign',
+        // 'utm_content',
+        // 'utm_medium',
+        // 'utm_source',
+        // 'utm_term',
+    ];
+}
diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php
new file mode 100644
index 0000000..9e86521
--- /dev/null
+++ b/app/Http/Middleware/VerifyCsrfToken.php
@@ -0,0 +1,17 @@
+
+     */
+    protected $except = [
+        //
+    ];
+}
diff --git a/app/Http/Middleware/WebsiteMiddleware.php b/app/Http/Middleware/WebsiteMiddleware.php
new file mode 100644
index 0000000..c37b308
--- /dev/null
+++ b/app/Http/Middleware/WebsiteMiddleware.php
@@ -0,0 +1,38 @@
+toDateString();
+            $subscriptionEndDate = Carbon::parse($userData->end_date);
+            $subscriptionEndsIn7Days = $subscriptionEndDate->addDays(7)->toDateString();
+            if($subscriptionEndsIn7Days == null || $subscriptionEndsIn7Days < $todaysDate)
+            {
+                return redirect()->route('logout');
+                // Auth::logout();
+            }
+        }   
+        
+        return $next($request);
+    }
+}
diff --git a/app/Imports/UserImport.php b/app/Imports/UserImport.php
new file mode 100644
index 0000000..31902c1
--- /dev/null
+++ b/app/Imports/UserImport.php
@@ -0,0 +1,101 @@
+ $row) {
+            
+            $email = $row['email'];
+
+            // Check if the email is not empty and is a valid email address
+            if (!empty($email)) {   
+                
+                // Validation passed, create the user
+                $excelDate = $row['start_date'];
+                if($excelDate != null){
+                    $unixTimestamp = ($excelDate - 25569) * 86400; // Convert Excel date to Unix timestamp
+                    $start_date = date("Y-m-d", $unixTimestamp);
+                }
+                else{
+                    $start_date = null;
+                }
+                    
+                    
+                $excelDate = $row['end_date'];
+                if($excelDate != null){
+                    
+                    $unixTimestamp = ($excelDate - 25569) * 86400; // Convert Excel date to Unix timestamp
+                    $end_date = date("Y-m-d", $unixTimestamp); 
+                }
+                else{
+                    $end_date = null;
+                }
+                
+                $existingUserData = User::where('email_id',$email)->first();
+            
+                if($existingUserData){
+                    // dd($existingUserData->start_date);
+                    // dd($row['start_date']);
+                    if($end_date > $existingUserData->end_date)
+                    {
+                        
+                        // dd($existingUserData);
+                        $data = User::where('email_id', $row['email'])->update([
+                            'utm_source' => $row['utm_source'],
+                            'full_name' => $row['customer_name'],
+                            'contact_number' => $row['phone_number'],
+                            // 'password' => Hash::make($row['password']),
+                            'address' => $row['country'],
+                            'fitness_goal' => $row['fitness_goal'],
+                            'hear_about' => $row['where_did_you_hear_about_the_program'],
+                            'start_date' => $start_date,
+                            'end_date' => $end_date,
+                        ]);
+                    }
+                }else{
+                    User::Create([
+                        'email_id' => $row['email'],
+                        'utm_source' => $row['utm_source'],
+                        'full_name' => $row['customer_name'],
+                        'contact_number' => $row['phone_number'],
+                        'password' => Hash::make($row['password']),
+                        'address' => $row['country'],
+                        'fitness_goal' => $row['fitness_goal'],
+                        'hear_about' => $row['where_did_you_hear_about_the_program'],
+                        'start_date' => $start_date,
+                        'end_date' => $end_date,
+                        ]);
+                }
+                    
+            }
+                
+        }
+        
+        return $errors; 
+    }
+
+    public function customValidationMessages($rowKey)
+    {
+        return [
+            'email.unique' => 'Email should be unique at row ' . ($rowKey + 1),
+        ];
+    }
+
+    public function rules(): array
+    {
+        return [
+            'email' => 'required|unique:users,email_id',
+        ];
+    }
+}
\ No newline at end of file
diff --git a/app/Mail/ContactUsForm.php b/app/Mail/ContactUsForm.php
new file mode 100644
index 0000000..08ed61a
--- /dev/null
+++ b/app/Mail/ContactUsForm.php
@@ -0,0 +1,61 @@
+mail_details = $mail_details;
+    }
+
+
+    /**
+     * Get the message envelope.
+     *
+     * @return \Illuminate\Mail\Mailables\Envelope
+     */
+    // public function envelope()
+    // {
+    //     return new Envelope(
+    //         subject: $this->mail_details['subject'],
+    //     );
+    // }
+
+    /**
+     * Get the message content definition.
+     *
+     * @return \Illuminate\Mail\Mailables\Content
+     */
+    // public function content()
+    // {
+    //     return new Content(
+    //         view: 'website.Templates.contact_us',
+    //     );
+    // }
+
+    
+    public function build()
+    {
+        // print_r($this->mail_details);exit;
+        $data = $this->mail_details;
+        return $this
+        ->subject($this->mail_details['subject'])
+        ->view('website.Templates.contact_us')
+        ->with(['data' => $data]);
+    }
+}
diff --git a/app/Mail/DemoMail.php b/app/Mail/DemoMail.php
new file mode 100644
index 0000000..14ebb13
--- /dev/null
+++ b/app/Mail/DemoMail.php
@@ -0,0 +1,59 @@
+mail_details = $mail_details;
+    }
+
+    /**
+     * Get the message envelope.
+     *
+     * @return \Illuminate\Mail\Mailables\Envelope
+     */
+    public function envelope()
+    {
+        return new Envelope(
+            subject: $this->mail_details['subject'],
+        );
+    }
+
+    /**
+     * Get the message content definition.
+     *
+     * @return \Illuminate\Mail\Mailables\Content
+     */
+    public function content()
+    {
+        return new Content(
+            view: 'website.Templates.contact_us',
+        );
+    }
+
+    /**
+     * Get the attachments for the message.
+     *
+     * @return array
+     */
+    
+    public function build()
+    {
+        // print_r($this->mail_details);exit;
+        $data = $this->mail_details;
+        return $this
+        ->view('website.Templates.contact_us')
+        ->with(['data' => $data])
+        ->to($data['email']);
+    }
+}
diff --git a/app/Mail/SendMail.php b/app/Mail/SendMail.php
new file mode 100644
index 0000000..7ae98a1
--- /dev/null
+++ b/app/Mail/SendMail.php
@@ -0,0 +1,65 @@
+send_mail_details = $send_mail_details;
+    }
+
+    /**
+     * Get the message envelope.
+     *
+     * @return \Illuminate\Mail\Mailables\Envelope
+     */
+    public function envelope()
+    {
+        return new Envelope(
+            subject: $this->send_mail_details['subject'],
+        );
+    }
+
+    /**
+     * Get the message content definition.
+     *
+     * @return \Illuminate\Mail\Mailables\Content
+     */
+    public function content()
+    {
+        return new Content(
+            view: 'Admin.Templates.manage_contact',
+        );
+    }
+
+    /**
+     * Get the attachments for the message.
+     *
+     * @return array
+     */
+    
+    public function build()
+    {
+//         print_r($this->send_mail_details);exit;
+        $data = $this->send_mail_details;
+        return $this
+        ->view('Admin.Templates.manage_contact')
+        ->with(['data' => $data])
+        ->to($data['email']);
+    }
+}
diff --git a/app/Mail/SendUserOtp.php b/app/Mail/SendUserOtp.php
new file mode 100644
index 0000000..dff9008
--- /dev/null
+++ b/app/Mail/SendUserOtp.php
@@ -0,0 +1,65 @@
+mail_details = $mail_details;
+    }
+
+    /**
+     * Get the message envelope.
+     *
+     * @return \Illuminate\Mail\Mailables\Envelope
+     */
+    public function envelope()
+    {
+        return new Envelope(
+            subject: $this->mail_details['subject'],
+        );
+    }
+
+    /**
+     * Get the message content definition.
+     *
+     * @return \Illuminate\Mail\Mailables\Content
+     */
+    public function content()
+    {
+        return new Content(
+            view: 'Admin.Templates.user_otp',
+        );
+    }
+
+    /**
+     * Get the attachments for the message.
+     *
+     * @return array
+     */
+    
+    public function build()
+    {
+        // print_r($this->mail_details);exit;
+        $data = $this->mail_details;
+        return $this
+        ->view('Admin.Templates.user_otp')
+        ->with(['data' => $data])
+        ->to($data['email']);
+    }
+}
diff --git a/app/Mail/SignInOtpMail.php b/app/Mail/SignInOtpMail.php
new file mode 100644
index 0000000..ffe7bc2
--- /dev/null
+++ b/app/Mail/SignInOtpMail.php
@@ -0,0 +1,64 @@
+mail_otp_details = $mail_otp_details;
+    }
+
+    /**
+     * Get the message envelope.
+     *
+     * @return \Illuminate\Mail\Mailables\Envelope
+     */
+    public function envelope()
+    {
+        return new Envelope(
+            subject: $this->mail_otp_details['subject'],
+        );
+    }
+
+    /**
+     * Get the message content definition.
+     *
+     * @return \Illuminate\Mail\Mailables\Content
+     */
+    public function content()
+    {
+        return new Content(
+            view: 'Admin.Templates.sign_in_otp',
+        );
+    }
+
+    /**
+     * Get the attachments for the message.
+     *
+     * @return array
+     */
+    public function build()
+    {
+        // print_r($this->mail_details);exit;
+        $data = $this->mail_otp_details;
+        return $this
+        ->view('Admin.Templates.sign_in_otp')
+        ->with(['data' => $data])
+        ->to($data['email']);
+    }
+}
diff --git a/app/Mail/UserRegisterMail.php b/app/Mail/UserRegisterMail.php
new file mode 100644
index 0000000..6e417b2
--- /dev/null
+++ b/app/Mail/UserRegisterMail.php
@@ -0,0 +1,74 @@
+users = $users;
+    }
+
+    /**
+     * Get the message envelope.
+     *
+     * @return \Illuminate\Mail\Mailables\Envelope
+     */
+    public function envelope()
+    {
+        return new Envelope(
+            subject: 'User Register Mail',
+        );
+    }
+
+    /**
+     * Get the message content definition.
+     *
+     * @return \Illuminate\Mail\Mailables\Content
+     */
+    public function content()
+    {
+        return new Content(
+            view: 'Admin.Templates.user_register',
+        );
+    }
+    
+     /**
+     * Build the message.
+     *
+     * @return $this
+     */
+    public function build()
+    {
+        $data = $this->users;
+        return $this->subject('Mail from Get set Fit')
+                    ->view('Admin.Templates.user_register')
+                    ->with(['data' => $data]);
+    }
+
+    /**
+     * Get the attachments for the message.
+     *
+     * @return array
+     */
+    public function attachments()
+    {
+        return [];
+    }
+}
diff --git a/app/Models/ActivityDay.php b/app/Models/ActivityDay.php
new file mode 100644
index 0000000..0e5b807
--- /dev/null
+++ b/app/Models/ActivityDay.php
@@ -0,0 +1,64 @@
+hasMany(ActivitySchedule::class, 'activity_master_id');
+    }
+    public function subscription(){
+        return $this->belongsTo(SubscriptionMaster::class, 'subscription_id', 'id');
+    }
+    
+    public function teacher_data(){
+        return $this->belongsTo(Teacher::class,'teacher_id','id');
+    }
+    public function faq_activity_link() {
+        return $this->hasMany(LinkFaqActivityMasterIds::class, 'activity_master_id', 'id');
+    }
+    
+    public function scheduleData()
+    {
+        return $this->hasMany(ActivitySchedule::class, 'id', 'activity_schedule_id');
+    }
+    
+     public function activityData()
+    {
+        return $this->hasMany(ActivityMaster::class, 'id', 'activity_master_id');
+    }
+}
diff --git a/app/Models/ActivityMaster.php b/app/Models/ActivityMaster.php
new file mode 100644
index 0000000..ad2e7e2
--- /dev/null
+++ b/app/Models/ActivityMaster.php
@@ -0,0 +1,64 @@
+hasMany(ActivitySchedule::class, 'activity_master_id');
+    }
+//     public function day()
+//    {
+//        return $this->hasMany(ActivityDay::class, 'activity_master_id');
+//    }
+    public function subscription(){
+        return $this->belongsTo(SubscriptionMaster::class, 'subscription_id', 'id');
+    }
+    
+    public function teacher_data(){
+        return $this->belongsTo(Teacher::class,'teacher_id','id');
+    }
+    public function past_data(){
+        return $this->hasMany(PastSession::class,'activity_master_id','id');
+    }
+//    public function schedule(){
+//            return $this->belongsTo(ActivitySchedule::class,'id');
+//    }
+    
+    public function faq_activity_link() {
+        return $this->hasMany(LinkFaqActivityMasterIds::class, 'activity_master_id', 'id');
+    }
+    
+}
diff --git a/app/Models/ActivitySchedule.php b/app/Models/ActivitySchedule.php
new file mode 100644
index 0000000..7958fd6
--- /dev/null
+++ b/app/Models/ActivitySchedule.php
@@ -0,0 +1,48 @@
+belongsTo(ActivityMaster::class, 'subscription_id');
+    }
+    public function subscription(){
+        return $this->belongsTo(SubscriptionMaster::class, 'subscription_id', 'id');
+    }
+    public function past_data(){
+        return $this->hasMany(PastSession::class,'activity_schedule_id','id');
+    }
+
+    protected $dates = ['deleted_at'];
+
+}
+ 
\ No newline at end of file
diff --git a/app/Models/AdminMaster.php b/app/Models/AdminMaster.php
new file mode 100644
index 0000000..ebc162f
--- /dev/null
+++ b/app/Models/AdminMaster.php
@@ -0,0 +1,24 @@
+review1);
+    }
+}
diff --git a/app/Models/AppVersion.php b/app/Models/AppVersion.php
new file mode 100644
index 0000000..49e209e
--- /dev/null
+++ b/app/Models/AppVersion.php
@@ -0,0 +1,12 @@
+belongsTo(User::class,'user_id');
+    }
+
+}
diff --git a/app/Models/DailyStepsCount.php b/app/Models/DailyStepsCount.php
new file mode 100644
index 0000000..0dff87b
--- /dev/null
+++ b/app/Models/DailyStepsCount.php
@@ -0,0 +1,17 @@
+belongsTo(User::class,'user_id');
+    }
+    
+    public function user_data()
+    {
+        return $this->hasOne(UserDetail::class,'user_id','user_id');
+    }
+    
+    
+}
+
diff --git a/app/Models/LinkFaqActivityMasterIds.php b/app/Models/LinkFaqActivityMasterIds.php
new file mode 100644
index 0000000..b54092b
--- /dev/null
+++ b/app/Models/LinkFaqActivityMasterIds.php
@@ -0,0 +1,21 @@
+hasMany(ActivityMaster::class, 'activity_master_id', 'id');
+    }
+     public function faqsData() {
+        return $this->hasOne(ManageFaq::class, 'id', 'faqs_id');
+    }
+    
+}
diff --git a/app/Models/ManageAboutUs.php b/app/Models/ManageAboutUs.php
new file mode 100644
index 0000000..3ce3e3e
--- /dev/null
+++ b/app/Models/ManageAboutUs.php
@@ -0,0 +1,28 @@
+belongsTo(ManageFaqCategory::class, 'category_id', 'id');
+    }
+    
+    public function faqs() {
+        return $this->hasMany(LinkFaqActivityMasterIds::class, 'faqs_id', 'id');
+    }
+}
diff --git a/app/Models/ManageFaqCategory.php b/app/Models/ManageFaqCategory.php
new file mode 100644
index 0000000..2968a56
--- /dev/null
+++ b/app/Models/ManageFaqCategory.php
@@ -0,0 +1,25 @@
+hasMany(ManageFaq::class,'category_id','id');
+    }
+}
diff --git a/app/Models/ManageFeedback.php b/app/Models/ManageFeedback.php
new file mode 100644
index 0000000..78163b6
--- /dev/null
+++ b/app/Models/ManageFeedback.php
@@ -0,0 +1,25 @@
+hasOne(User::class,'id','user_id');
+    }
+    
+    public function user_detail(){
+        return $this->belongsTo(UserDetail::class,'user_id','user_id');
+    }
+    
+}
diff --git a/app/Models/ManageFreeVideo.php b/app/Models/ManageFreeVideo.php
new file mode 100644
index 0000000..416c025
--- /dev/null
+++ b/app/Models/ManageFreeVideo.php
@@ -0,0 +1,19 @@
+hasMany(QuizQuestionsAnswer::class,'question_id','id');
+    }
+}
diff --git a/app/Models/ManageRateUs.php b/app/Models/ManageRateUs.php
new file mode 100644
index 0000000..ccc5966
--- /dev/null
+++ b/app/Models/ManageRateUs.php
@@ -0,0 +1,18 @@
+hasMany(ShortClipsLikes::class, 'short_clips_id','id')->where('is_active','1');
+        }
+
+}
diff --git a/app/Models/Models.zip b/app/Models/Models.zip
new file mode 100644
index 0000000000000000000000000000000000000000..d724daa428eae7f5dadfbc28667ffd735c39bd28
GIT binary patch
literal 22283
zcma)EWk6M1(+25~P>_%Y36YfUlx{e*fN<#U5ESV~x>G{Bl@ySYl192D1O$`@!Ec}I
zec@o;4-Y6md}dFqwPwvcvlV6F;89^9U!mM*pnv}H?++vxA{aRvBe10dlbR|D3>@BG
zo6(E4ULz-0G#FU;bvPIp_zmEPA^?B`{1;@H-ZW-V{}^I&3Gf>OEDQ|kC4fBG#X;EK
z(ag{i>>z632sW{?cVo0QwfzUU`AfTDzDUo{z+vGn=5K}2#kNmSiBZpyU%}tZs|q-X
zGUUJky9^PI&4%5Hjv0Cq@fk}};iWa9@oeuB#S?Iryq4)L%o2NN8#*#`DK^?8_Kr*|
z9+uZyvd&qyg$WpNJPz*{8TPM_GzLCQ+y3fh$#@iClX?K6Y-KJcCl!yKvl}UR)giHF
z-|HEk8XBF6)_p(GE3h+p=T&9NBQceg?VUF#+?>7#b%yLoy%aF=G7
zWKIIzL1^&duA|)mJ
zW_GdZ{KG_m)Mav)C4@M<4IIGNjux`jUSR&bSs1%E9fn1j06
zFFTyZ&C6{{%-NXk8TQh)$2wX|P6zujSp=hdpDnM&tZ4Kk1N;8S_}o
zDpBi@9XATd3fvG>JX2-Th|n#s9l+*KE>-Xuu$fe+w!iXKW6V#
z4pe{Al&^c|B*Yr^BmAqzbg!svSN64MJN>8EE*%DmTQacLP&p8{oPg6PE*++54^{>n
z+SnU`jX-8bU>h;8qk);F!-f0)61vxfvBb7_aXpbYB`lvITS#KSD(x%=I_AdmsHRHFd)ksgFo#IOR;@hFEdx2JRk-;TsEHjwAmtLCpmd
zmd_rJD|*}-cNs?Bl+T76o*h}CA0fSx)f*#gWv;R#uejTXb_@9>ve782GTai!-39$M
zF*7z78i{d&8(y5JgXj2|i?8ja{PnTiqb$gC@U+xfA60-0Ib04l883~oYGnbkc`f+d
z3ou4K@O}Hz7%HX)_FzpLCwo;>8z&P}#|tY|^rHVRi2cIKQLnLJiJhJWpGDjhQygrS
zzD?ejbh}rWF=*mC?cy7cw6N6S>%9%HG~yHkqe2HLNE+_86Wd4R6Dz6g2y}2@NTFLZ
zP~$1Rmg{}xZ)8nBYfqeEO>@E!vGv{Rmh59-xkd=z?XMkG>H16FNrfAnpSIpACI
z!+qRptZ&HIDNG0aLRxYdl;!6ly=&@I3p()5>-#0iG}|Xfmj(J=qu$(Cih*O3xt_MN
z33^Al7MM@#N+80`ri5-yP3@ud+D)?andz2_xr`N@6WZXo1Hl>T2GZE2eopR>Sp>n7KJ9E{z!s@f)2O;=l5WXxqL
zGZGKwG*yer2T0{pYKcXCZGtqm^5$dG)5mkc!kPVA)fZ9&??PrZ>EAy=t*h}YQ
zX|96^_eCor0Ht~1uf(&kp`)3znWLMEp()tN$r60w`5ls?-^Fv7vYf&aGgjlO`q9%E
zidaDyG~}0LT&h|xJt%3DxQ2`U4C~WaCK)Hcho?p@#*|DFQMd`rCMOK
zr~4J1opq?@#G-CpzQSFlArX${#O6~vOM?&vSWZXGoa}~Zk4Q<`bwY%512%@BraV_B
zv2Qozn|iTs_eDKBd+*jmOQ3C6qpBr(Q>nDwAzelfB|XJy{JmyjO$tdDHEj1M4CfT1
zQ1vfJr<3#EOW{b-gma3kiMOQOmk(|evb|Q7%^u3{I%<5EUc|!}Htbf!U*bc7s}OH;
zt~E8Pl{n6qpTAX(xEKHJL*}4#FqoOOm~2g@^WE_&Ml&UnO&dWej_x#De(|x~n@uCj
z_@16wY!xMCQ)f=8#T1+4b7Jb=UE`
z%Y}cxu$cVTzfptot;{(7+ow2<%%3Eu(a_ryGQ822{7fI=Yu4?f6V^K)IFb?0&RD~7
zHj8algZn
zcv1by?)rgvtAA?%9780>^))>5k@Py@^s@|NaZYoyFrQxU47Z&7G-0_-^&h3ZM8dFA
z>;}*la=at5P7PbsK(E}ny2BV=qa`4R?8M4b5Rl)lLara~&4vHOo_c>!KggH220v}`
z8!E2r?Oo9iZATN))ubd7iTC5BKlkmDHrL3aI!{Q6`z1bWbAQ^DLRcY2zXEE8Vn5nrT2d1OTv$AoE+6I58a~#l;67V
zd5ip8W_15;w_u`3d*MkqbYJT0@Byh=aa
zH}hirh3ZobI^huaXyxjVTl~eb-M%L+r_;4Cp`*9(3CW7AJs-cve_iJjXSf|%;E}Op
zpz+<)if9LO#*lC47C&noTQL$vqYn(zYqLiyG($)4@QVf(^P6Jg?$!)*y|G*Y>9127
z_L%Pb#lpNO-JkuSWMHAc`#9$1=(;QeH-GS?qhSJ}bP`XrCQ~)i>X}rNppy)N)W~>$
zQV-odkA$0>&BuNvVcyGbPF=b_XAKgyZqXACU7|eq2l|DAb1Yye2_b(4cK)LSQW&Vc2#kDdf*jXQ&*+nNdA
zJrm-n;7G=~!G1mZ1%=U}mbwMF*?Zg
zXEuqc$9CM-q2qa@1uNHVIW)YFj!52dPID-2k9lmvWWH4wtFYdR&tV-h^sva3$VuCS
zIl;Lh6eEOX{ta(fpTk7M%kKo%{DX5Rvv;;HJtjuz58Bi=V&?%o)(5Nvy5D?VzKx%&5rDD|4trEe#
zoa^MQFL!vaBAW5wb#=8#N;&^2BE&gAuEz>YE?2I{SeMRuU~gmX2(~u*aZhfiATp}^
z+dVl6{WZwpi@hop;N~E}%|w?-vS0%vu>B(&1AC*N)}=$1)$cs(r!*xE$AabgUj3u+
zhg<8Ij*VohN@aWEo_63wx!f5c4o#DahqPxdl`kDb;+#pYao=B!>TP$@ekHbR}tSV
zCO*GKD#?T>h{<7s-%Pa9UeXyx0Z4b>Ml(g2mfabzH4&(6^5gXQXm@pF*hXRhNoS
zR$fcITsoJ>A8kep$TpDr-Vk0J9EK%$xxl^&&4P@YaYt4F%Rfehfw^^Q`Tr$@Vg{Fm
ziIn!V-`PAzwa0o2xSVg$yV8;oNIoI^1P42v0lOaU5Q1uOr^K9sjn3g^hI!-@ru~XL
z&#iUDIJf%kjZNZD_Nph;))Wkdto3E*>vWPK#?!G6bTUYFGH#EO!z#PtK&@~dt_Yq#;
z+$|6v+LWbk-1rUtX3WgAt$F6fla1|Krbpqn;kY*fKj1$UeY^8YygkSXcTlEndVH3Z
z-7>WA#L6dj@D^G~isyVk#iR5I!(Lwa_st!G{0WtcSw8K|rd?cYqhYd#dMN
z8qe)Vqmbw!RInX6GtOD7FdGbpjl-)na14aACd3?t+9xfzrkt^*WVb47BnhY5>^j`%
z*J2shBIrdYF&Az<=I{G9=$7EWEr
zcxK3fTZ#aW;as)=If*qymL1=2)I@r3))uQ(Pl#n`YO#!s(>JX!KmW7mhRJzsn
z*=>POV*rW$!+Bzzc(rYi|AJ;j+ZT;FW%p2-iW?XcW~I|?(WA-E>8Hfsh7V-wNhRKF
z)je4~@|c|$-H&xuo?*vd^xp@qQ6r$Xs5sPr!r10MJC(G!SxmG(-&
zeBMRsXtcY*{KQD(dy&MGS2=L!naN4Dq(0X$H3|L|8MPIxb2U3U*R8jUvBYR&jRu(q;Yi}
zmxr)}?qeh6rIt&zQ_SjWV>{+dEbs1qeGu&^3xgYbFX-M9+Z`3LPGQ!k5AfB=*>XxH
zCqBNYqA|FS`DNNR$5SJ})#CGL*3u&VhpJ~5$Ebr|yZ!y~yLt&bdJkVLY
zMaW~dk`#RfzuWT;JbQUVyr&e-1_jv_YR+7?3Mefs*8U|nuZcg|CbtliTm~-HJ!6ow
z{p0D6fa>vp>QIFbMX1T
z>I>$B=SX)^?^fEHfV-*)t{YEIe!L!hv|W>$7y6pHaAjp>dhg>sK@&p?OC?s#t34ZijpycW<6`fkSZavPPlc
z#%(r?IOuK8vPT6Rv|amGHwqXE0>&U)$hKCH_mb^js_h
z)@`lME;BFmvA@sMP^?Kg^cb<)bPT%&!K9hTN#0qy_n;CZF7+c!7;{OA#d>#i1)bz4
zu~y@))@p-NW8oZs)$)Wp?<~xA=WO8SG3Pi^s`Wd&J#W(z2hICW*70uLaQhUfwo^f^
zB;Umewm}GReGTV4d|#lxvAT5aVJIDKeD^Jh8VgFU7EfcO0RAZB03wnd_^Xz9vctBK
z2Uvpcr=a@L8n6e0|0y(I1l1q)F9-Dhr?yHDFGvxLOjuQR!;X6O|)Ou1e1?rBX
zmS(mNvSt?G%X_};?HfiyCBN$nNy7^Ru0O-&Ms@)9ATzgQTP#&`x
zvOVc(`5KdP9=^Zp`uTf!HPZJTtFQfISon9t&{_+sCRX2-+`;vfM50}2XMT_aTAw9i
zP)UAs)6+~4weSNdv4R|*BDEbs>{C=)-3LoM{f)HKxfrbIJ8p!IHQ_IYQoKKJ&0hD1Nm08h$t`?40>Q{e^2|37`@H+&KClO2~@itP&
z1!>2nz_!FdzfZj%UgQV5yedYn8!C#5kB=`El+A<3$~TfSB9Nd<1UqitLCW{DTkzDq
z<+BX|tncQb_TQ$4d-FemciIF)O`
z`)D!D)53Uj>#1CIOS+KFXZliH72Me3innPNSnx=%`*c=qJ%%jf-@>I`u7>Ms(V%oe
z-Z~dR^Ge|R=HyPg}EJ+ufK>7<_q)N?tPs^r4_m*pawXOqKH;%G@rGSx?gJ@%apk|IWf_)uTz@ORC3de`3{o_5C5r7W?XD&y7y$k%9YL{vT-HE4pL7v1vVLO!Atm
z5uA^Hc&Q+zS`>(8(oh`)D2ECpzc-+qWN!de&MzA#utfsD^HEq-pZQy6EZ=P}ppPq`
zap&-bApFn}iM_P79ZN;kON8JT=IS}*A7?CN%r@tR3Vnp@vlDIZ%n8;`f)f{bg*p++
zY8~2#qzAZqDxNmaR$=ghxrEE-+vvj;`7BNeniapaB50Pvgs6v`Ri>YL-b4H*`l>=(
z>nY+j+4b;}1TjTX~`n9hK
zlTCzKc17}+$uVY&#HD;a^e!SFALz1|K2E@-($3kJst#&&UY1^YH4{#j#whjN-{Ly@
zXc-->pL%!<`x$He5Zt3TR7IJ_Cqurv2m%pd!^|_Ce$wc68Q)-R24{O(Hm%<&itvm=krfxn_jWBH=}Sla`{A
z&(^+TWuxq4I2&nXsr61$X~WzFqDCangb-y_f8MDb&7T!IH*Me
zqFS;WyK5(MpWdT4bQkvMoOZzxE}wYXdJ~yrJmsN#=;ZX%aaH7;T7<-;SEF-=OV6IH
zZ4E!
zI~b_?-WuVTulSM}Vj?%E#XZ}{k!bALMdt9$FFz=h1ciHV5GazuoNF>
z7R4+Q;VA|O_{CQ3+wx?c8tjK-?xI}AHnvhWs4J--?i*ma(W{mdHnKANxiq?HuKZie
zMer-Yv7q}OenZ8S9LGQ};ula=!a~&onw(;=jb_x%7{Q1CrfM_%$V`aE4Z$*JdK
zFI*QTx(I$dF*)Xla&1J>aP1t{o724U9ve#e+8OhRiFLQ}9E|H
z!mxwXBmp~i0!1y{%Y6cJjQwbwUj*Uv1E1fS((k#P3{cJT-#*6W#;HTdIUK|Ey^DH~
zOQRk)VN`cpGCDzOK>1{@Z|i_wl{xQYqT5_z@AP#27>luf*he9!6(#aSEmw@ec|
z6diri`%do2BGwc0y36N1sRLEa;owG#jvd(6-c!x4$<5@{)+rJ!O&;OxaNdNfT|lx6
zkLB{V93aFY87EZV_g^v!7;N+iC@5dJ=8wrmABM0nkX(2MYfAFLQ{1rD(9k4&p2Yo{
z#n}IVTCAb|^d<^@-A4TIunkv#r!3Af`nyeiYVIlUS7cVQ0(fI=5hq4U`puYFmwRQE
zk&L)mlh0CfEl|oG;;d^iz0#{O&%26;9_Aq{vT=O87LssBLLdX?Tlmbo`P{&!4mleB
zu90D!C#a1R>Uway>~txu$!VpyZK1t&+f%-C6$hNUp=oIKa@=gH^!GHg8HNMjiR8e|gqDHACyu
zi`#OFy4;W7&8s*SPx%gBQ{znPXg~eBZTJ@9`}|h9483h+#)m5To9{>lM>GzJ9-!Eu
zG>~)SbYqfJDZETw->hh?x#1s(G70~Hgy0sL8})cMy6;OTWd+KEWUvfUZ^6r8p8U-s
z2fdH(ALz3+sK&52-xfg6kHOY0i9-iJhyFRI5&d^Av_LQ51
zEZJA+Kr&7U!RG5zx>3pD3Yt*kDu;QeoP#%cCRFLIk3QdxAL$%Fb2{8R>P#<`8r`4+
zWfg0L+iI$1-|kbI40-ro+c!e_M45KQ*0GPMC!u}NM)}E?{OL8~o>Y!&pV#0j_j@)M
zonGP3^KNcAEtDu_iB46VtMDoXrf_G*TFq)umxGVwJ=(J;)`sfetyPM{^@_M=lEFUu
zbQnZ%5Nhw(SyWtQ=RFR-<9~vJyKHL<)3UzxcE-wY{h>$n565)(z(#3^B@zV@vHMp+{VUUVLUA2r~@Jd#{@5*vsQ(DBzxRcsb>}
zhVTYfL}^5|wXzZ)m5#%mz#r|i_U06->6PoCx9Zf4bX_$m@Bqg+Zx51H44OViM7IknP
z?Eo^nb;~^*Yfv%WT}pdddN#VgNbOO@p4glLwotSA#)6(IFH}>Gbh1NxIf;iVk5Wl;
z^^_&#rVFOJjMOCFGrbJwA&US$HKG_iWJtu3KA$5yiU0Xbkt^_!K|VF2Y0g5Bk97dw
z##6}0LNvVCqR%#_I$St%rLHI;DJRsy$N4&KcJ?irQL9i}@et#JzR54;kBT10-g*#k
zL0&~7GtFgQRG?L1JFR_B)W{~9*0eM@Xr5^FghC@1F(^|Fk2a5Svl8*Jd_oqfzP@^#
zu|WcyZ3D6|lN@s2!Z
zgasRi@U2&mB>1U&XYXz@$-aNT#PB*_;m8wvnu%#_d_moMfx7wO{W1y+!n1x##%tEj
zE8S#hDyJLh{R{of0=qfSHeR|uVB`ohJ?dZBv3%2P`NWosD{X@gTN&Mn*7gMq(aXZ2
zYcs6(WKD6T4T#z6D#cmOChOl+etc7n_^v}RVq-1IlA-NjNXCdrE;n((>|GHW++5*(
zQ}L!u&CgG?c&5cp!SQbf51(A7Q;>6eW#%zgF>r1}xU^8sdoeSx%XZOp$
zGik4#BXh<)RhbmUAn&wB>E7}s9IL-AgGQJ0on$I!AdQe1p74Rq%0hVqUKSNxRUnd$
zv|T+BR`s0%RIi|N49^=r8*Lw{P+x@|D?jh$4|>ISpm=!i#Pf00_csi%E=L&0mc$h3
z4!6H5sn%{7oT63>ZsTL3iL{}t|km_f?uvR)vKr)2aS
zOZY`D0PRxr&Nqj2Uxhzh-$UR~LgXRZ+(AH<80%?xR61T?^;Yy?>p;s+esEb-I{Mr0
zY4nuGI2ZZ7nl=pFmTqoMXLf>zsMrbmhO(yB;tF43`L`ma1d>WHjT&{bzs_U?E#I_1
z5AErxfbVjkNxL_=h*n(weN>aK6mv4-PDLI$p$cN6LE&c$BEfBIb42%Dqow4Ji@HLg
zX3H+oDhzjQ4NR(@d6wBJnHWUy<2iIy&>?;`D6?I@-N)&2-QJPs*6N3L3b#6c03p5?b>%1LaD5h
z9r?7fygKkb4ZP%DZG>G4Ls|TsBdTICs-{47y)k40*wZ(}39*XVe#Zkf*q=899wQ~*
zE!N(#NGWMZk$QcB1>aEffm_g-SBJqPTCRdz0*PWV`OxHjaq0dn
zBOh>P=OF&|++Z`J4Ugd?|C^2v^;PFHRbLe4M{hkSNy4T#&;9IfS#1O3Mqm*eSj8r#
zb~nEoR93K?cb;^u_Fm}Bu>9cXapD2QUX}#jujfq%Lt&L21$kpy>HLC4ben
zs01HN%3Cg)9;;#X1fHNLnrpX$EH&R(XY9mOVxLx&b|ib+bjgf;ok?ZvPi!?f>Z$g`
z_Zd~=)pHk|WB)J|_kI>?llsbE2&!z+7uy6DC?XJ9(6u4()!NYbsLpT0N%5a75TI0k
zB>T81n6K=6*L_XOMpx4~TK#qxHOqZ8+%IpEXFzqz;;S6nhO;syac=Rk!6QERHP@0;
zlAY|48x+m;*8;HoXC-d1(cf4P9Gv#w;~|rFkN_!vnO{jeDr;akuaSfOKER(_T!cl2
zKlMSV_XNerg_h7m*s&;2dtLVv&r*xqbEeIyRP5e6C`HYm(A2Xv^)|xnqFbw}R*q#s
zg$SyN&qW22@4p)huvN99wkBFit>v?laG`&A&5Ocy&5OoUfhiWh{N|_TnxlIH?X>|Z
z^!jO{9O5tahC4F16??@-;=S?}u5Rv`uj4VY0lSd{8ynQ+@wvGx6
z30(9*lnT}|X(ApN$vt3rA+>1@FwFmHfgIMn?M)_780MzK%}1oE7^sYqB_QTom99o_
zJZLH|6uPDoIpB?Nys(rbj#WuTU;eV$Sp1v2_3`!xMWEVyGeWspbfC06Ex}33TRuSr
z*_5s1**s4KxGcAL*=V<9htuF>1Nf2{KwyV=+`J#Xs~Wf@->;0|>mBl1=P
zf$Mndn*f~&uj&lBE{IzJym|#k+l&2YZFBo~M;TBjH5Ub%kU*W(|7rX;VP)w|x_4Nt
zP6a)p<+$bp9v}v8wwQB|GiB6?Eb+R<^|cbxWzm#mTPoa8cm)ary&L5~-$%O4(AqF<
zfR-f%js($J@bp$NCE%0kSrqZbDA*ap*
z7ArGfS5rqG;e_3|C!a_VA-e-()8w%c8Ljt>iQ0jea+Qs(d@){N!!|cbAzq+Un*Sl;
zK%HsSdAo4EcE~SH3cLwa3)N1m}IdkK3|1wLV79%ufBzseI3R0};L5
zFb&owyHKafzNR5K6Aal2sh)PotIUaP1}~TE7(aOftf3vxTptc(#h8CC=a0sRN88GRlQ$~^YZXxQc2?RW*xMSCu6&UK#)
zynW|qmSmCFx<^V#wpTq;;zY^UKO)oLXnCLG3kFeH1iHg9DX&LZ(S$SKj8DaHmFdnS
zNe!qKdtdG6r(Qm{T3AbZ8|i#u>SN>k$a#EIT56UhwRS=lb-$+S;07EA)sDPum8J6J
zrXVIxbRC~FGtNdI4RdF)fUiCe6+_dHJhQSz1>0z*{QLKQqA0x89AJO>YcN2Pz5fkN
z{eNw6*%^fw6cKN`>%Q}G5I1N>3C+UAN?Eb(3D5*`A0oO&Ky72pC7&mz+D(u|g`}Wt
zU$}Mmu`@DjcZ?OW$-#
zkwh%E@*0QLw@zw{JLdWL>Y|@wc^PMdlFb&m<13Q4aG<15PgQU!H
zhwih~hu+5xRYW7b@60XDZ&i}H@xNMhDPsCZb%u#b`-gC2(a0d2wXVXodqEU>u|69k
zp}xHOE{UhLtHquR6$wfCma)VbIFJ=v#EwBhdyQd3qVamP*9
zyJatKb-_7Jbg4M@BOTGZzJnUE$-ZR@A_YaQLq$_U?XrMYYJEMjPo&br10?qAEQpD(4RtieM>S>c?9K36TUvJA2|?!F
z^}H`ANSdbmX^}Sko~k5cn3ZWG1=_+5x+tf+-NNw$dDjhzWJyQ77a;9^rrq2EvFDw|EM~Nn?9NM97*wF
zzkW!zArXqe+cLEEH;c>tnd_62hFeNOyzQb=e8I)4!da|4_AbRsm@Hj9ng}UHPpNwp
zgoxrBIB+Ht1}pj511KdF(yt3jQGe%2Vtp{KN1M0ENQF)9;*ss3Zot!}E*m91UVSM9KPZg<;*^+1Nzoecbh{FB+o*>88M
zFK>yA7u1$HpEsI4sDwRUKIvf+J_$A=?s>ZfYAZe7nN;OzhH(KJ#!fiGvX
z^6*a6qRGKhE6xfz!K)6~2$AQ?eC^d}_pu3CUG&ODYZB1##$t0s4M)XhN>h_*D@4b4
zr&OJ25nUc*eLmP+RZ9LEaMZg+UnsqU0o9^_Y%|euAfXq3+GbS1j*e#5CKmzv=i~NA
z-gOEP5YCVx+>@4Q3Cao%Lm=;Rd5!E;;N>?0-Ni<7d
zKW^5=>ZXQ)3~08px&JYr6SDcLju{^(R=vI(|M{0wR`;J8nD~visGt`Y(OPxzHLu%O@6EOS?q>
zI9~3DlwW@)t?%^SnOy^OzphLnU?vJDnen6qN`HJj8xSJwyv07C|Fx?%>mT}G(oZh5
zXST%t?J@y+q;TXwdx{SM=_X^7Fnfna7>WCOxdn$x!laZ5tc&sOurD)y#Yt8kiq_wD
zzwEY*%FP-ZQaI8Q@J&voB#WbVvEDbvs#53`mB7YHhA`mDYFGDo^Z`P0LvEU4l0@X&
z70-ji@-NSx*!ENnaCO~s*J7Ur>Pa;bY#9A^wexe?LFi}bPJahS9q7=>n|%cc}RoWv%_L!DjlXLG7dYJ1W2HYBDRf#l(Psh|^3)WMtdPK1)
zgvIXaD?N|As{4j4}k@vw}5%;Ob)b+X5BVLqx3&h3u&AoST
z7IduV`}!1?AfAH*<~b4HS6yH-Ad!VTYDTsJb;8(Ahx54A3!g#%W#S+!kK3Xa$2*5w
z^%D9NSkR$F#TbKrG~GCA!VqC3&y6qvUxk?_haOr|0}-c_>yBts_Ic-S7VB7rFC(eh
z4Ew&g`0o-P8co)oqo_^sOn1LQ`GRqoW0h;1fUfIqq}Ku_W52rlL3gZvO0D@hT7K6!
z@rx9OypcfskjL+q-^52mYdSybDzw#WsmdeeQRrRwRb>4A2kOVu;2(8SJjp99Jrs_3
zzpMyzW53An+L8=iQy*~%2TV3=Q%I<%tkI_4yS3z)Gp(=hyWV~Cf3{3sal$#YYiqfc
zKKd+()K}FmnPKY@SqOLaiw?N2rFQE$7FhC6qm9=qzz5xtVLo;Nm?{Cx0+}*s)9QL|
z>(-0)wDz?^-}0w4`?FB$M@JJ#va3v-Mo%o~G0&myoz0q?AVL^%H#oo+i@-NjzMu$X
z*#G987g5CZw&b@_6xj#q)3^!d;J6^
z!-4W@+`{tNY;xh$2Ql(%n~@awF@^a1Di(t(bYc`S5wm%zXwCWK&1JA6o~u)bzTW%%
z_}07uFG!zubT;vQw}J_+qf{tGugB~>?PfEL?tFr;_Bn2R?Rj~G1s~QsJhGC=u4>^$
z8pARwq-RGrSQTvCWwpPRYus}e-_&~W)^ypgPbX^ptJ;LHp@sfFDEOvk|1wLDYVQtV
zE`|9}PMFIBYn853qTpOFCys!L$Fide0V#EnGlUZHoYw~&nkPP~#r0$wlgCyTC<+#x
zjI)=nQXY|Eh(HMDu-8c7{`BSyd?4H)Usy1og&}`myhj7!$9pt>d4~oB>`!me_yGnu
z3+9D41npli=nBEr+!_!9NnQRT==L#)`inL(+|_FH?X<
zJ_e4Bf02K_;a_>R!hdV<>w5~IfdVB%5$bpCYZ
z9RmNY1jJZZr}Cj?%phDS0mLffM05S>x7aRRL
zcnvL}4*5a=v9|2h{84ekmoy(=+#Wl9)8hfE3o1^w6QSZMSCvU6?gYd^hC6>N?#C|l>ww}9aX)q;Qp^i+P~(aK
zDr8*ox2Qk1qhE&=p_MSZME%3)A|L@Wy7(6fzYgU=OIX6Xc<%p2>BWd1fDIYZ`wRB3
zqg&9}1UE0Rp}qXeAQvD9GRXB8Igo{Xb;t->&NyJoe`EFcBS(OM|Jbm99p!-*Fob&{
z;E#hnfDFiB&tH`Ib>szF1_s`RjNcBx0Qisrn7`mdjC6Gl1R7rx_~lFS&Xv?N1<3rYVTZ&#--{u}?-VFqaYhlCgSmv>93(FOn?GTQJTmby9<0FCc*`vM=b
zul_P2@ZZn>EA##mzslQ==mP&L4<7)A@bLfg;J?!0FM(fpvlCwc|Arh7phL*y0L2A1But0qm8=PXL&%zcdG=pfiqPPc)ED5;H$aGqE^=H5XYnrre&ydm3n-wu5O4()
z!p8dxD8%Ad89&gVVe}WEf8ziAx7B|o)If`Pe(yrW-|01gAPBwYFS`6nH-Q#3&2S;;
ze@FUHi4}x=@)!7Dc?Zz&tjrhis?aP1;ISbrgumcITyV874~=Wia)J9J=%Ksx|84wV
z8{p934_Pn3AwhGs9S(p)+Ts84BIy5P$wG{CwOI=-!k+Cy
z#LpMIpM3lO5OcK`3N6N+{X)#2I-~#X35X_F+l^O5a9oJ^VXQ07$NxtEwX1iD4xFu=
z7wEs~@d43BPufpe0muUr2z&>6QKx
zfDP#{{RJCh`KuimXzT@^3+x|Hf2AMu-8s;z92te@zs0agp8i7k7
Jmnh`7{{vq@PJ;jd

literal 0
HcmV?d00001

diff --git a/app/Models/MonthlyPosition.php b/app/Models/MonthlyPosition.php
new file mode 100644
index 0000000..419f01e
--- /dev/null
+++ b/app/Models/MonthlyPosition.php
@@ -0,0 +1,24 @@
+hasMany(User::class,'id','user_id');
+    }
+}
diff --git a/app/Models/NewsArticlesCategory.php b/app/Models/NewsArticlesCategory.php
new file mode 100644
index 0000000..8a1319a
--- /dev/null
+++ b/app/Models/NewsArticlesCategory.php
@@ -0,0 +1,22 @@
+hasMany(ManageNewsArticles::class, 'category_id','id')->where('is_active','1');
+    }
+    
+}
diff --git a/app/Models/NotificationMaster.php b/app/Models/NotificationMaster.php
new file mode 100644
index 0000000..2599d28
--- /dev/null
+++ b/app/Models/NotificationMaster.php
@@ -0,0 +1,16 @@
+hasOne(User::class,'id','user_id');
+    }
+    
+    public function notification_master_data(){
+        
+        return $this->hasOne(NotificationMaster::class,'id','notification_id');
+    }
+}
diff --git a/app/Models/PastSession.php b/app/Models/PastSession.php
new file mode 100644
index 0000000..4e9ce8c
--- /dev/null
+++ b/app/Models/PastSession.php
@@ -0,0 +1,19 @@
+hasOne(ActivitySchedule::class, 'id','activity_schedule_id');
+    }
+}
+
diff --git a/app/Models/PaymentTransactionsMaster.php b/app/Models/PaymentTransactionsMaster.php
new file mode 100644
index 0000000..c1374a4
--- /dev/null
+++ b/app/Models/PaymentTransactionsMaster.php
@@ -0,0 +1,15 @@
+hasMany(ManageQuizQuestion::class);
+    // }
+
+}
diff --git a/app/Models/SessionStatus.php b/app/Models/SessionStatus.php
new file mode 100644
index 0000000..32b3762
--- /dev/null
+++ b/app/Models/SessionStatus.php
@@ -0,0 +1,11 @@
+belongsTo(ManageShortClips::class,'id')->where('is_active','1');
+    }
+}
diff --git a/app/Models/SubscriptionMaster.php b/app/Models/SubscriptionMaster.php
new file mode 100644
index 0000000..d3e07b7
--- /dev/null
+++ b/app/Models/SubscriptionMaster.php
@@ -0,0 +1,38 @@
+hasMany(ActivityMaster::class, 'subscription_id', 'id');
+    }
+    
+    public function subscription_plan_packages() 
+    {
+        
+        return $this->hasOne(SubscriptionPlanPackage::class, 'subscription_master_id', 'id');
+    }
+    
+    public function subscription_package_descriptions() 
+    {
+        
+        return $this->hasOne(SubscriptionPackageDescription::class, 'subscription_master_id', 'id');
+    }
+}
diff --git a/app/Models/SubscriptionPackageDescription.php b/app/Models/SubscriptionPackageDescription.php
new file mode 100644
index 0000000..956c961
--- /dev/null
+++ b/app/Models/SubscriptionPackageDescription.php
@@ -0,0 +1,32 @@
+hasOne(SubscriptionPackageDescription::class, 'plan_id');
+    }
+ 
+
+}
diff --git a/app/Models/SubscriptionPlanPackage.php b/app/Models/SubscriptionPlanPackage.php
new file mode 100644
index 0000000..f626522
--- /dev/null
+++ b/app/Models/SubscriptionPlanPackage.php
@@ -0,0 +1,36 @@
+belongsTo(SubscriptionMaster::class,'plan_id');
+    }
+    
+    public function subscription_package_descriptions() {
+        
+        return $this->hasOne(SubscriptionPackageDescription::class, 'plan_id');
+    }
+ 
+}
diff --git a/app/Models/Teacher.php b/app/Models/Teacher.php
new file mode 100644
index 0000000..d68af52
--- /dev/null
+++ b/app/Models/Teacher.php
@@ -0,0 +1,24 @@
+hasMany(TestimonialImages::class,'testimonial_id','id');
+        }
+}
diff --git a/app/Models/TestimonialImages.php b/app/Models/TestimonialImages.php
new file mode 100644
index 0000000..da7e6a5
--- /dev/null
+++ b/app/Models/TestimonialImages.php
@@ -0,0 +1,14 @@
+belongsTo(SubscriptionMaster::class, 'subscription_id', 'id');
+    }
+    
+//    public function teacher(){
+//        return $this->hasMany(ActivityMaster::class, 'id','teacher_id');
+//    }
+}
diff --git a/app/Models/User.php b/app/Models/User.php
new file mode 100644
index 0000000..08e63c1
--- /dev/null
+++ b/app/Models/User.php
@@ -0,0 +1,148 @@
+getKey();
+    }
+
+    public function getJWTCustomClaims()
+    {
+        return [];
+    }
+    /**
+     * Get the identifier that will be stored in the subject claim of the JWT.
+     *
+     * @return mixed
+     */
+    // public function getJWTIdentifier() {
+    //     return $this->getKey();
+    // }
+
+    /**
+     * Return a key value array, containing any custom claims to be added to the JWT.
+     *
+     * @return array
+     */
+    // public function getJWTCustomClaims() {
+    //     return [];
+    // }
+
+    public function ContactUs() {
+        return $this->hasOne(ContactUs::class);
+    }
+    
+    public function userThought() {
+        return $this->hasOne(UserThought::class, 'user_id', 'id');
+    }    
+    
+    /**
+     * Created By : Pradyumn Dwivedi
+     * Created at : 06-feb-2023
+     * Use : To get user details data in user listing
+     */
+    public function user_detail(){
+            return $this->hasOne('App\Models\UserDetail', 'user_id', 'id')->withDefault();
+    }
+    
+    public function leaderboard_master()
+{
+    return $this->hasMany(LeaderboardMaster::class);
+}
+
+    public function stepCount()
+    {
+        return $this->hasMany(DailyStepsCount::class)->where('date', Carbon::today()->toDateString());
+    }
+    
+    public function latestStepCount()
+    {
+        return $this->hasOne(DailyStepsCount::class)->orderBy('date', 'desc');
+    }
+    
+    public function getLatestStepCountArrayAttribute()
+    {
+        $latestStepCount = $this->latestStepCount;
+        return $latestStepCount ? [$latestStepCount->toArray()] : [];
+    }
+}
diff --git a/app/Models/UserContentView.php b/app/Models/UserContentView.php
new file mode 100644
index 0000000..1123af5
--- /dev/null
+++ b/app/Models/UserContentView.php
@@ -0,0 +1,14 @@
+hasMany(User::class);
+    }
+    
+    // public function user_details()
+    // {
+    //     return $this->belongsTo(LeaderboardMaster::class);
+    // }
+
+}
diff --git a/app/Models/UserEmailOtp.php b/app/Models/UserEmailOtp.php
new file mode 100644
index 0000000..6d625a7
--- /dev/null
+++ b/app/Models/UserEmailOtp.php
@@ -0,0 +1,13 @@
+format('d-m-Y H:i:s');
+    }
+
+    protected $dates = ['deleted_at'];
+    protected $table = 'user_over_views';
+    protected $fillable = [
+        'user_id',
+        'muscle_rate',
+        'body_fat',
+        'skeletal_muscle',
+        'protein',
+        'bmr',
+        'water',
+        'age'
+    ];
+
+    public function user() {
+        return $this->belongsTo(User::class, 'id', 'user_id');
+    }
+    
+    public function userData()
+    {
+        return $this->belongsTo(User::class, 'user_id', 'id'); 
+    }
+
+}
diff --git a/app/Models/UserQuizPoints.php b/app/Models/UserQuizPoints.php
new file mode 100644
index 0000000..6c41bbf
--- /dev/null
+++ b/app/Models/UserQuizPoints.php
@@ -0,0 +1,12 @@
+belongsTo(User::class);
+    }
+}
diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php
new file mode 100644
index 0000000..ee8ca5b
--- /dev/null
+++ b/app/Providers/AppServiceProvider.php
@@ -0,0 +1,28 @@
+
+     */
+    protected $policies = [
+        // 'App\Models\Model' => 'App\Policies\ModelPolicy',
+    ];
+
+    /**
+     * Register any authentication / authorization services.
+     *
+     * @return void
+     */
+    public function boot()
+    {
+        $this->registerPolicies();
+
+        //
+    }
+}
diff --git a/app/Providers/BroadcastServiceProvider.php b/app/Providers/BroadcastServiceProvider.php
new file mode 100644
index 0000000..395c518
--- /dev/null
+++ b/app/Providers/BroadcastServiceProvider.php
@@ -0,0 +1,21 @@
+>
+     */
+    protected $listen = [
+        Registered::class => [
+            SendEmailVerificationNotification::class,
+        ],
+    ];
+
+    /**
+     * Register any events for your application.
+     *
+     * @return void
+     */
+    public function boot()
+    {
+        //
+    }
+
+    /**
+     * Determine if events and listeners should be automatically discovered.
+     *
+     * @return bool
+     */
+    public function shouldDiscoverEvents()
+    {
+        return false;
+    }
+}
diff --git a/app/Providers/MyServiceProvider.php b/app/Providers/MyServiceProvider.php
new file mode 100644
index 0000000..c92136a
--- /dev/null
+++ b/app/Providers/MyServiceProvider.php
@@ -0,0 +1,28 @@
+configureRateLimiting();
+
+        $this->routes(function () {
+            Route::middleware('api')
+                ->prefix('api')
+                ->group(base_path('routes/api.php'));
+
+            Route::middleware('web')
+                ->group(base_path('routes/web.php'));
+        });
+    }
+
+    /**
+     * Configure the rate limiters for the application.
+     *
+     * @return void
+     */
+    protected function configureRateLimiting()
+    {
+        RateLimiter::for('api', function (Request $request) {
+            return null;
+            // return Limit::perMinute(100000)->by($request->user()?->id ?: $request->ip());
+        });
+    }
+}
diff --git a/app/Services/Admin/ManageAboutUsService.php b/app/Services/Admin/ManageAboutUsService.php
new file mode 100644
index 0000000..985a6fb
--- /dev/null
+++ b/app/Services/Admin/ManageAboutUsService.php
@@ -0,0 +1,127 @@
+edit_about_us_id);
+        
+        if($request->file('main_about_us_image')){
+            $rules = [
+                'main_about_us_image' => 'required|file|max:400', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+     
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return false;
+                }
+            }
+            else {
+                $file_one = $request->file('main_about_us_image');
+                $ext = $file_one->extension();
+                $file_name_main_image = time() . '.' . $ext;
+                $path = public_path() . '/uploads/about_us';
+                $file_one->move($path, $file_name_main_image);
+                $about_us->main_image = $file_name_main_image;
+            }
+        }
+        
+        if($request->file('about_us_middle_image')){
+            $rules = [
+                'about_us_middle_image' => 'required|file|max:400', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+     
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return false;
+                }
+            }
+            else {
+                $file_two = $request->file('about_us_middle_image');
+                $ext = $file_two->extension();
+                $file_name_middle_image = time() . '.' . $ext;
+                $path = public_path() . '/uploads/about_us';
+                $file_two->move($path, $file_name_middle_image);
+                $about_us->middel_image = $file_name_middle_image ;
+            }
+        }
+        
+        if($request->file('about_us_footer_first_image')){
+            $rules = [
+                'about_us_footer_first_image' => 'required|file|max:400', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+     
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return false;
+                }
+            }
+            else {
+                $file_three = $request->file('about_us_footer_first_image');
+                $ext = $file_three->extension();
+                $file_name_first_image = time() . '.' . $ext;
+                $path = public_path() . '/uploads/about_us';
+                $file_three->move($path, $file_name_first_image);
+                $about_us->aboutus_first_image = $file_name_first_image ;
+            }
+        }
+        
+        if($request->file('about_us_footer_last_image')){
+            $rules = [
+                'about_us_footer_last_image' => 'required|file|max:400', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+     
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return false;
+                }
+            }
+            else {
+                $file_four = $request->file('about_us_footer_last_image');
+                $ext = $file_four->extension();
+                $file_name_last_image = time() . '.' . $ext;
+                $path = public_path() . '/uploads/about_us';
+                $file_four->move($path, $file_name_last_image);
+                $about_us->aboutus_last_image = $file_name_last_image;
+            }
+        }
+        
+        $about_us->about_us_title = $request->input('about_us_title');
+        $about_us->video_url = $request->input('about_us_video_url');
+        $about_us->description = $request->input('about_us_desc');
+        $about_us->about_us_first_image_title = $request->input('about_us_first_image_title');
+        $about_us->about_us_last_image_title = $request->input('about_us_footer_second_image_title');
+
+        $about_us->save();
+        return $about_us;
+    }
+
+}
diff --git a/app/Services/Admin/ManageBannerService.php b/app/Services/Admin/ManageBannerService.php
new file mode 100644
index 0000000..cf009fb
--- /dev/null
+++ b/app/Services/Admin/ManageBannerService.php
@@ -0,0 +1,59 @@
+get()->toArray();
+        $db_banner_image = $manage_banner[0]['banner_path'];
+        // dd($db_banner_image);
+        
+        if($request->file('my_file')){
+            $rules = [
+                'my_file' => 'required|file|max:400', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+     
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return false;
+                }
+            }
+            else {
+                $file = $request->file('my_file');
+                $ext = $file->extension();
+                $file_name = time().'.'.$ext;
+                $path = public_path().'/uploads/';
+                $file-> move($path,$file_name);
+                $banner_iamge = url('/public/uploads/'.$file_name);
+            }
+        }else{
+            $banner_iamge = $db_banner_image;
+        }
+        
+        
+        // for image upload end
+    
+        $manage_banner = new ManageBanner;
+        $manage_banner->banner_path = $banner_iamge;
+        $manage_banner->block_position = $request->input('banner_postion');
+        $manage_banner->save();
+        return $manage_banner;
+    }
+
+    public function view_manage_banner()
+    {
+         $manage_banner = ManageBanner::latest()->get();
+         return $manage_banner;
+    }
+}
diff --git a/app/Services/Admin/ManageContactService.php b/app/Services/Admin/ManageContactService.php
new file mode 100644
index 0000000..21628c6
--- /dev/null
+++ b/app/Services/Admin/ManageContactService.php
@@ -0,0 +1,70 @@
+get()->toArray();
+        return $manage_contact;
+    }
+
+    public function delete_contact() {
+        $data = ContactUs::onlyTrashed()->with('user')->get()->toArray();
+        return $data;
+    }
+
+    public function send_mail($request) {
+//         dd($request->all()); 
+    
+        $validator = Validator::make($request->all(),[
+          'email_id'=> 'required|email',
+//           'full_name'=> 'required|full_name',
+        ]);
+
+        if ($validator->fails()) { 
+            return response()->json([
+                'error'=>$validator->errors()], 401);
+            }
+
+          $id = $request->noti_user_id;
+          $message = $request->message;
+        if($id){
+            $send_mail_details = [
+                'email' => $request->email_id,
+                'subject' => 'Sending Mail',
+//                'full_name' => $request->full_name,
+                'body' => $message
+            ];
+           
+            \Mail::to($request->email_id)->send(new SendMail($send_mail_details));
+           
+             return response(["status" => 200, 
+                              "message" => "Mail sent successfully",
+                              ]);
+            }
+            else{
+                return response(["status" => 401, 
+                                 'message' => 'Invalid']
+                                );
+            }
+
+
+    }
+
+    }
+
diff --git a/app/Services/Admin/ManageDietPlanService.php b/app/Services/Admin/ManageDietPlanService.php
new file mode 100644
index 0000000..ce728f6
--- /dev/null
+++ b/app/Services/Admin/ManageDietPlanService.php
@@ -0,0 +1,85 @@
+toArray();
+//            echo "
";
+//            print_r($manage_diet_plan);
+//            exit();
+        return $manage_diet_plan;
+    }
+
+public function insert_plan(Request $request) 
+    {
+//        print_r($request->all());
+//        exit();
+//        $MasterId = $request->id;sw
+        $subscription_master = SubscriptionMaster::create(['plan_name' => $request->plan_name]);
+
+        $plan_package_data = SubscriptionPlanPackage::create([
+            'subscription_master_id' => $subscription_master->id,
+            'plan_period' => $request->plan_period,
+            'plan_price' => $request->plan_price,
+            'currency_type' => $request->currency_type
+        ]);
+        
+        $package_description_data = SubscriptionPackageDescription::create([
+            'plan_id' => $plan_package_data->id,
+            'subscription_master_id' => $subscription_master->id,
+            'description' => $request->description
+        ]);
+                
+        return $subscription_master;
+        return $plan_package_data;
+        return $package_description_data;
+    }
+
+    public function edit_plan($id) {
+        $editPlan = SubscriptionMaster::with('subscription_plan_packages', 'subscription_package_descriptions')->find($id)->toArray();
+//          echo "
";
+//        print_r($editPlan);exit;
+        return $editPlan;
+    }
+    
+    public function update_plan(Request $request)
+    {
+//        print_r($request->all());
+//        exit();
+//        $request->validate([
+//        'plan_name' => 'required',
+//        'plan_period' => 'required',
+//        'currency_type' => 'required',
+//        'description' => 'required',
+//    ]);
+//        
+        $updateSubscriptionMaster = SubscriptionMaster::find($request->edit_plan_id);
+//        print_r($request->id);
+//        exit();
+          $master_data = ['plan_name' => $request->plan_name];
+          $updateSubscriptionMaster->update($master_data);
+          
+          $updateSubscriptionPlanPackage = SubscriptionPlanPackage::where('id', $request->edit_packages_id);
+          $plan_data = [
+            'plan_period' => $request->plan_period,
+            'plan_price' => $request->plan_price,
+            'currency_type' => $request->currency_type
+           ];
+          $updateSubscriptionPlanPackage->update($plan_data);
+           
+          $updateSubscriptionPackageDescription = SubscriptionPackageDescription::where('id', $request->edit_description_id);
+          $package_data = [
+             'description' => $request->plan_description
+           ];
+          $updateSubscriptionPackageDescription->update($package_data);
+    }
+    
+}
diff --git a/app/Services/Admin/ManageFaqService.php b/app/Services/Admin/ManageFaqService.php
new file mode 100644
index 0000000..d08e14b
--- /dev/null
+++ b/app/Services/Admin/ManageFaqService.php
@@ -0,0 +1,76 @@
+category_name = $request->input('category_name');
+        $faq_categories->save();
+        return $faq_categories;
+    }
+
+    public function view_faq_category()
+    {
+        $faq_categories = ManageFaqCategory::withCount('faqs')->get();
+        return $faq_categories;
+    }
+
+    public function update_faq_categories(Request $request)
+    {
+    //   dd($request);
+        $faq_categories_id = $request->edit_category_id;
+        // dd($faq_categories_id);
+        $faq_categories = ManageFaqCategory::find($request->edit_category_id);
+        // $faq_categories = new ManageFaqCategory;
+        $faq_categories->category_name = $request->input('category_name');
+        $faq_categories->save();
+        // dd( $faq_categories);
+        return $faq_categories;
+    }
+
+    // =================================================================================================================
+    
+    public function insert_faq(Request $request)
+    {
+        // dd($faq_categories);
+        $faq = new ManageFaq;
+        $faq->category_id = $request->input('category_id');
+        $faq->question = $request->input('question');
+        $faq->answer = $request->input('answer');
+        $faq->video_url = $request->input('video_url');
+        $faq->save();
+        return $faq;
+    }
+
+    public function view_faq()
+    {
+        $faq = ManageFaq::latest()->get();
+        return $faq;
+    }
+    
+    public function update_faq(Request $request)
+    {
+    //   dd($request);
+        $faq_id = $request->edit_faq_id;
+        // dd($faq_categories_id);
+        $faq = ManageFaq::find($request->edit_faq_id);
+        // $faq_categories = new ManageFaqCategory;
+        $faq->category_id = $request->input('category_id');
+        $faq->question = $request->input('question');
+        $faq->answer = $request->input('answer');
+        $faq->video_url = $request->input('video_url');
+        $faq->save();
+        return $faq;
+    }
+}
diff --git a/app/Services/Admin/ManagePlanService.php b/app/Services/Admin/ManagePlanService.php
new file mode 100644
index 0000000..0bb7f76
--- /dev/null
+++ b/app/Services/Admin/ManagePlanService.php
@@ -0,0 +1,89 @@
+get()->toArray();
+//            echo "
";
+//            print_r($manage_plan);
+//            exit();
+        return $manage_plan;
+    }
+
+public function insert_plan(Request $request) 
+    {
+//        print_r($request->all());
+//        exit();
+//        $MasterId = $request->id;
+    
+        $file = $request->file('myFile');
+        $ext = $file->extension();
+        $file_name = time() . '.' . $ext;
+        $path = public_path() . '/uploads/plan';
+        $file->move($path, $file_name);
+        
+        $subscription_master = SubscriptionMaster::create([
+                'plan_name' => $request->plan_name,
+                'plan_image' => url('/public/uploads/plan/' . $file_name),
+            ]);
+
+        $plan_package_data = SubscriptionPlanPackage::create([
+            'subscription_master_id' => $subscription_master->id,
+            'plan_period' => $request->plan_period,
+            'plan_price' => $request->plan_price,
+            'currency_type' => $request->currency_type
+        ]);
+        
+        $package_description_data = SubscriptionPackageDescription::create([
+            'plan_id' => $plan_package_data->id,
+            'subscription_master_id' => $subscription_master->id,
+            'description' => $request->description
+        ]);
+                
+        return $subscription_master;
+        return $plan_package_data;
+        return $package_description_data;
+    }
+
+    public function edit_plan($id) {
+        $editPlan = SubscriptionMaster::with('subscription_plan_packages', 'subscription_package_descriptions')->find($id)->toArray();
+//          echo "
";
+//        print_r($editPlan);exit;
+        return $editPlan;
+    }
+    
+    public function update_plan(Request $request)
+    {
+    
+        $updateSubscriptionMaster = SubscriptionMaster::find($request->edit_plan_id);
+//        print_r($request->id);
+//        exit();
+          $master_data = ['plan_name' => $request->plan_name];
+          $updateSubscriptionMaster->update($master_data);
+          
+          $updateSubscriptionPlanPackage = SubscriptionPlanPackage::where('id', $request->edit_packages_id);
+          $plan_data = [
+            'plan_period' => $request->plan_period,
+            'plan_price' => $request->plan_price,
+            'currency_type' => $request->currency_type
+           ];
+          $updateSubscriptionPlanPackage->update($plan_data);
+           
+          $updateSubscriptionPackageDescription = SubscriptionPackageDescription::where('id', $request->edit_description_id);
+          $package_data = [
+             'description' => $request->plan_description
+           ];
+          $updateSubscriptionPackageDescription->update($package_data);
+    }
+    
+}
diff --git a/app/Services/Admin/ManageShortClipsService.php b/app/Services/Admin/ManageShortClipsService.php
new file mode 100644
index 0000000..c8f56fa
--- /dev/null
+++ b/app/Services/Admin/ManageShortClipsService.php
@@ -0,0 +1,95 @@
+ 'required|file|max:400', // 400 KB
+        ];
+    
+        $validator = Validator::make($request->all(),$rules);
+ 
+        if ($validator->fails()) {
+            if ($request->expectsJson()) {
+                return false;
+            }
+        }
+        else {
+            $file = $request->file('thumbnail');
+            $ext = $file->extension();
+            $file_name = time().'.'.$ext;
+            $path = public_path().'/uploads/short_clips';
+            $file-> move($path,$file_name);
+        }
+        
+        // for image upload end
+        $insertShortsClips = new ManageShortClips;
+        $insertShortsClips->video_title = $request->input('video_title');
+        $insertShortsClips->video_description = $request->input('description');
+        $insertShortsClips->video_url = $request->input('video_url');
+        $insertShortsClips->thumbnail = $file_name;
+        $insertShortsClips->save();
+        return $insertShortsClips;
+    }
+
+    public function get_all_short_clips() {
+        $data = [
+            'getAllShortsClips' => $getAllShortsClips = ManageShortClips::latest()->get(),
+            'getAllShortsClipsDeleted' => $getAllShortsClipsDeleted = ManageShortClips::onlyTrashed()->orderBy('deleted_at', 'desc')->get()
+        ];
+        return $data;
+    }
+
+    public function edit_short_clips($id) {
+        $editShortClips = ManageShortClips::find($id);
+//        echo "
"; print_r($editShortClips); exit;
+        return $editShortClips;
+    }
+
+    public function update_short_clips(Request $request) {
+        // dd($request);
+        $shortClipsId = $request->edit_id;
+        $updateShortClips = ManageShortClips::find($request->edit_id);
+        if($request->thumbnail){
+            $rules = [
+                'thumbnail' => 'required|file|max:400', // 400 KB
+            ];
+        
+            $validator = Validator::make($request->all(),$rules);
+     
+            if ($validator->fails()) {
+                if ($request->expectsJson()) {
+                    return false;
+                }
+            }
+            else {
+                $file_one = $request->file('thumbnail');
+                $ext = $file_one->extension();
+                $file_name_main_image = time() . '.' . $ext;
+                $path = public_path() . '/uploads/short_clips';
+                $file_one->move($path, $file_name_main_image);
+                $updateShortClips->thumbnail = $file_name_main_image;
+            }
+        }
+        
+        $updateShortClips->video_title = $request->input('video_title');
+        $updateShortClips->video_description = $request->input('description');
+        $updateShortClips->video_url = $request->input('video_url');
+        
+        $updateShortClips->save();
+        return $updateShortClips;
+    }
+
+}
diff --git a/app/Services/Admin/ManageTestimonialService.php b/app/Services/Admin/ManageTestimonialService.php
new file mode 100644
index 0000000..f445bbb
--- /dev/null
+++ b/app/Services/Admin/ManageTestimonialService.php
@@ -0,0 +1,150 @@
+get();
+        // echo "
";      print_r($testimonial); exit;
+        // dd($testimonial);
+        return $testimonial;
+    }
+    
+     public function edit_testimonial($id) {
+        $editTestimonial = Testimonial::with('testimonial_data')->find($id);
+        // dd($editTestimonial);
+//          echo "
";      print_r($editTestimonial); exit;
+        return $editTestimonial;
+    }
+
+    public function update_testimonial(Request $request) {
+        // dd($request);
+    //     if($request->image){
+    //         $rules = [
+    //             'image' => 'required|file|max:400', // 400 KB
+    //         ];
+        
+    //         $validator = Validator::make($request->all(),$rules);
+     
+    //         if ($validator->fails()) {
+    //             if ($request->expectsJson()) {
+    //                 return false;
+    //             }
+    //         }
+    //         else {
+    //         $file = $request->file('image');
+    // //        print_r($file); exit;
+    //         $ext = $file->extension();
+    //         $file_name = time() . '.' . $ext;
+    //         $path = public_path() . '/uploads/testimonial';
+    //         $file->move($path, $file_name);
+    //         }
+    //     }
+    //     else{
+    //       $file_name=$request->db_image; 
+    //     }
+         
+        $testimonialId = $request->edit_testimonial_id;
+        $updateTestimonial = Testimonial::find($request->edit_testimonial_id);
+        $updateTestimonial->user_name = $request->input('user_name');
+        $updateTestimonial->title = $request->input('title');
+        $updateTestimonial->description = $request->input('description');
+        // $updateTestimonial->image = $file_name;
+        $updateTestimonial->save();
+        // dd()
+        if ($request->hasFile('image')) {
+            foreach ($request->file('image') as $image) {
+                $ext = $image->extension();
+                $fileName = time() . '_' . uniqid() . '.' . $ext;
+                $path = public_path('uploads/testimonial');
+                $image->move($path, $fileName);
+        
+                $testimonialImage = new TestimonialImages;
+                $testimonialImage->testimonial_id = $request->edit_testimonial_id;
+                $testimonialImage->images = $fileName;
+                $testimonialImage->is_active = 1;
+                $testimonialImage->save();
+            }
+        }
+        
+        //Removed Image Code
+        $imagesToRemove = $request->input('images_to_remove')[0];
+        if (!empty($imagesToRemove)) {
+            $imagesToRemoveJson = $request->input('images_to_remove')[0];
+            $imagesToRemove = json_decode($imagesToRemoveJson);
+            foreach ($imagesToRemove as $imageId) {
+                $userFile = TestimonialImages::find($imageId);
+                if ($userFile) {
+                    $file_path = public_path($userFile->images);
+                    if (file_exists($file_path)) {
+                        unlink($file_path);
+                    }
+
+                    // Delete the record from the database
+                    $userFile->delete();
+                }
+            }
+        }  
+        return $updateTestimonial;
+    }
+      
+      public function insert_testimonial(Request $request) {
+        
+        // $rules = [
+        //     'image' => 'required|file|max:400', // 400 KB
+        // ];
+    
+        // $validator = Validator::make($request->all(),$rules);
+ 
+        // if ($validator->fails()) {
+        //     if ($request->expectsJson()) {
+        //         return false;
+        //     }
+        // }
+        // else {
+            // $file_one = $request->file('image');
+            // $ext = $file_one->extension();
+            // $file_name_main_image = time() . '.' . $ext;
+            // $path = public_path() . '/uploads/testimonial';
+            // $file_one->move($path, $file_name_main_image);
+            
+            // for image upload end
+            
+            $insertTestimonial = new Testimonial;
+            $insertTestimonial->user_name = $request->input('name');
+            $insertTestimonial->title = $request->input('title');
+            $insertTestimonial->description = $request->input('description');
+    //        $insertTestimonial->rating = $request->input('rating');
+            $insertTestimonial->save();
+            
+            // print_r($insertTestimonial);
+            // exit;
+            foreach ($request->file('image') as $image) {
+                $ext = $image->extension();
+                $fileName = time() . '_' . uniqid() . '.' . $ext;
+                $path = public_path('uploads/testimonial');
+                $image->move($path, $fileName);
+        
+                $testimonialImage = new TestimonialImages;
+                $testimonialImage->testimonial_id = $insertTestimonial->id;
+                $testimonialImage->images = $fileName;
+                $testimonialImage->is_active = 1;
+                $testimonialImage->save();
+            }
+            // $insertTestimonial->image = $file_name_main_image;
+            
+            return $insertTestimonial;
+            // return response()->json(['success' => true , 'status' => 200]);
+        // }
+    }
+}
diff --git a/app/Services/Admin/ManageThoughtsService.php b/app/Services/Admin/ManageThoughtsService.php
new file mode 100644
index 0000000..41f08d6
--- /dev/null
+++ b/app/Services/Admin/ManageThoughtsService.php
@@ -0,0 +1,36 @@
+toArray();
+      return $manage_thoughts;
+    }
+  
+    public function insert_thoughts(Request $request)
+    {
+        $thoughts = new UserThought;
+        $thoughts->user_thought = $request->input('user_thought');
+        $thoughts->save();
+        return $thoughts;
+    }
+    
+     public function update_thought(Request $request)
+    {
+        $thought_id = $request->edit_thought_id;
+        $updateThought = UserThought::find($request->edit_thought_id);
+        $updateThought->user_thought = $request->input('uuser_thought');
+        $updateThought->save();
+        return $updateThought;
+    }
+}
diff --git a/app/Services/Admin/ManageVideoService.php b/app/Services/Admin/ManageVideoService.php
new file mode 100644
index 0000000..5b98f80
--- /dev/null
+++ b/app/Services/Admin/ManageVideoService.php
@@ -0,0 +1,96 @@
+img_path);
+          $image_type_aux = explode("image/", $image_parts[0]);
+          $image_type = $image_type_aux[1];
+          $image_base64 = base64_decode($image_parts[1]);
+  
+          $imageName = uniqid() . '.png';
+  
+          $imageFullPath = $folderPath.$imageName;
+  
+          file_put_contents($imageFullPath, $image_base64);
+
+      // for image upload end
+
+      $manage_free_video = new ManageFreeVideo;
+      $manage_free_video->video_type = $request->input('video_type');
+      $manage_free_video->video_title = $request->input('video_title');
+      $manage_free_video->video_description = $request->input('video_description');
+      $manage_free_video->video_cover_image = $imageName;
+      $manage_free_video->video_url = $request->input('video_url');
+      $manage_free_video->save();
+      return $manage_free_video;
+   }
+    
+   public function view_manage_video()
+    {
+      $manage_free_video = ManageFreeVideo::all()->toArray();
+      return $manage_free_video;
+    }
+
+    public function edit_manage_video($id)
+    {
+      $manage_free_video = ManageFreeVideo::find($id);
+      return $manage_free_video;
+    }
+
+    public function update_mange_video(Request $request)
+    {
+      $manage_free_video = $request->edit_manage_video_id;
+      $manage_free_video = ManageFreeVideo::find($request->edit_manage_video_id);
+
+
+        if($request->hasFile('video_cover_image')){
+          $folderPath = public_path('/uploads/');
+          // dd($folderPath);
+          File::delete($folderPath.$manage_free_video->video_cover_image);
+          $image_parts = explode(";base64,", $request->img_path_edit);
+          $image_type_aux = explode("image/", $image_parts[0]);
+          $image_type = $image_type_aux[0];
+          $image_base64 = base64_decode($image_parts[1]);
+  
+          $imageName = uniqid() . '.png';
+  
+          $imageFullPath = $folderPath.$imageName;
+  
+          file_put_contents($imageFullPath, $image_base64);
+      }else{
+          $imageName = $manage_free_video->video_cover_image;
+         }
+
+      //   if($request->hasFile('video_cover_image')){
+      //     $path = public_path().'/uploads/';
+      //     File::delete($path.$manage_free_video->video_cover_image);
+      //     $file = $request->file('video_cover_image');
+      //     $ext = $file->extension();
+      //     $file_name = time().'.'.$ext;
+      //     $file-> move($path,$file_name);
+      //  }else{
+      //   $file_name = $manage_free_video->video_cover_image;
+      //  }
+     $manage_free_video->video_type = $request->input('video_type');
+     $manage_free_video->video_title = $request->input('video_title');
+     $manage_free_video->video_description = $request->input('video_description');
+     $manage_free_video->video_cover_image = $imageName;
+     $manage_free_video->video_url = $request->input('video_url');
+     $manage_free_video->save();
+     return $manage_free_video;
+    }
+    
+}
diff --git a/artisan b/artisan
new file mode 100644
index 0000000..67a3329
--- /dev/null
+++ b/artisan
@@ -0,0 +1,53 @@
+#!/usr/bin/env php
+make(Illuminate\Contracts\Console\Kernel::class);
+
+$status = $kernel->handle(
+    $input = new Symfony\Component\Console\Input\ArgvInput,
+    new Symfony\Component\Console\Output\ConsoleOutput
+);
+
+/*
+|--------------------------------------------------------------------------
+| Shutdown The Application
+|--------------------------------------------------------------------------
+|
+| Once Artisan has finished running, we will fire off the shutdown events
+| so that any final work may be done by the application before we shut
+| down the process. This is the last thing to happen to the request.
+|
+*/
+
+$kernel->terminate($input, $status);
+
+exit($status);
diff --git a/bootstrap/app.php b/bootstrap/app.php
new file mode 100644
index 0000000..037e17d
--- /dev/null
+++ b/bootstrap/app.php
@@ -0,0 +1,55 @@
+singleton(
+    Illuminate\Contracts\Http\Kernel::class,
+    App\Http\Kernel::class
+);
+
+$app->singleton(
+    Illuminate\Contracts\Console\Kernel::class,
+    App\Console\Kernel::class
+);
+
+$app->singleton(
+    Illuminate\Contracts\Debug\ExceptionHandler::class,
+    App\Exceptions\Handler::class
+);
+
+/*
+|--------------------------------------------------------------------------
+| Return The Application
+|--------------------------------------------------------------------------
+|
+| This script returns the application instance. The instance is given to
+| the calling script so we can separate the building of the instances
+| from the actual running of the application and sending responses.
+|
+*/
+
+return $app;
diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore
new file mode 100644
index 0000000..d6b7ef3
--- /dev/null
+++ b/bootstrap/cache/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..f280637
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,81 @@
+{
+    "name": "laravel/laravel",
+    "type": "project",
+    "description": "The Laravel Framework.",
+    "keywords": ["framework", "laravel"],
+    "license": "MIT",
+    "require": {
+        "php": "^8.0.2",
+        "aws/aws-sdk-php": "^3.279",
+        "geoip2/geoip2": "^2.13",
+        "guzzlehttp/guzzle": "^7.8",
+        "ladumor/one-signal": "1.0.0",
+        "laravel/framework": "^9.19",
+        "laravel/sanctum": "^3.0",
+        "laravel/tinker": "^2.7",
+        "laravel/ui": "^4.2",
+        "maatwebsite/excel": "^3.1",
+        "maxmind-db/reader": "^1.11",
+        "nesbot/carbon": "^2.69",
+        "php-open-source-saver/jwt-auth": "^2.1",
+        "spatie/google-time-zone": "^1.2",
+        "torann/geoip": "^3.0",
+        "tymon/jwt-auth": "^2.0"
+    },
+    "require-dev": {
+        "fakerphp/faker": "^1.9.1",
+        "laravel/pint": "^1.0",
+        "laravel/sail": "^1.0.1",
+        "mockery/mockery": "^1.4.4",
+        "nunomaduro/collision": "^6.1",
+        "phpunit/phpunit": "^9.5.10",
+        "spatie/laravel-ignition": "^1.0"
+    },
+    "autoload": {
+        "psr-4": {
+            "App\\": "app/",
+            "Database\\Factories\\": "database/factories/",
+            "Database\\Seeders\\": "database/seeders/"
+        },
+        "files": [
+            "app/Http/Helpers/Webhelper.php",
+            "app/Http/Helpers/ImageHelper.php",
+            "app/Http/Helpers/ApiResponseHelper.php"
+        ]
+    },
+    "autoload-dev": {
+        "psr-4": {
+            "Tests\\": "tests/"
+        }
+    },
+    "scripts": {
+        "post-autoload-dump": [
+            "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
+            "@php artisan package:discover --ansi"
+        ],
+        "post-update-cmd": [
+            "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
+        ],
+        "post-root-package-install": [
+            "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
+        ],
+        "post-create-project-cmd": [
+            "@php artisan key:generate --ansi"
+        ]
+    },
+    "extra": {
+        "laravel": {
+            "dont-discover": []
+        }
+    },
+    "config": {
+        "optimize-autoloader": true,
+        "preferred-install": "dist",
+        "sort-packages": true,
+        "allow-plugins": {
+            "pestphp/pest-plugin": true
+        }
+    },
+    "minimum-stability": "stable",
+    "prefer-stable": true
+}
diff --git a/composer.lock b/composer.lock
new file mode 100644
index 0000000..8bda882
--- /dev/null
+++ b/composer.lock
@@ -0,0 +1,9889 @@
+{
+    "_readme": [
+        "This file locks the dependencies of your project to a known state",
+        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
+        "This file is @generated automatically"
+    ],
+    "content-hash": "b9040cb6f89fd9796d26f38088ca1d1e",
+    "packages": [
+        {
+            "name": "aws/aws-crt-php",
+            "version": "v1.2.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/awslabs/aws-crt-php.git",
+                "reference": "2f1dc7b7eda080498be96a4a6d683a41583030e9"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/2f1dc7b7eda080498be96a4a6d683a41583030e9",
+                "reference": "2f1dc7b7eda080498be96a4a6d683a41583030e9",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.5"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
+                "yoast/phpunit-polyfills": "^1.0"
+            },
+            "suggest": {
+                "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
+            },
+            "type": "library",
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "Apache-2.0"
+            ],
+            "authors": [
+                {
+                    "name": "AWS SDK Common Runtime Team",
+                    "email": "aws-sdk-common-runtime@amazon.com"
+                }
+            ],
+            "description": "AWS Common Runtime for PHP",
+            "homepage": "https://github.com/awslabs/aws-crt-php",
+            "keywords": [
+                "amazon",
+                "aws",
+                "crt",
+                "sdk"
+            ],
+            "support": {
+                "issues": "https://github.com/awslabs/aws-crt-php/issues",
+                "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.2"
+            },
+            "time": "2023-07-20T16:49:55+00:00"
+        },
+        {
+            "name": "aws/aws-sdk-php",
+            "version": "3.283.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/aws/aws-sdk-php.git",
+                "reference": "0d1857ca3392ec9f8ee0b1605ba09842cced6351"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/0d1857ca3392ec9f8ee0b1605ba09842cced6351",
+                "reference": "0d1857ca3392ec9f8ee0b1605ba09842cced6351",
+                "shasum": ""
+            },
+            "require": {
+                "aws/aws-crt-php": "^1.0.4",
+                "ext-json": "*",
+                "ext-pcre": "*",
+                "ext-simplexml": "*",
+                "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
+                "guzzlehttp/promises": "^1.4.0 || ^2.0",
+                "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
+                "mtdowling/jmespath.php": "^2.6",
+                "php": ">=7.2.5",
+                "psr/http-message": "^1.0 || ^2.0"
+            },
+            "require-dev": {
+                "andrewsville/php-token-reflection": "^1.4",
+                "aws/aws-php-sns-message-validator": "~1.0",
+                "behat/behat": "~3.0",
+                "composer/composer": "^1.10.22",
+                "dms/phpunit-arraysubset-asserts": "^0.4.0",
+                "doctrine/cache": "~1.4",
+                "ext-dom": "*",
+                "ext-openssl": "*",
+                "ext-pcntl": "*",
+                "ext-sockets": "*",
+                "nette/neon": "^2.3",
+                "paragonie/random_compat": ">= 2",
+                "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
+                "psr/cache": "^1.0",
+                "psr/simple-cache": "^1.0",
+                "sebastian/comparator": "^1.2.3 || ^4.0",
+                "yoast/phpunit-polyfills": "^1.0"
+            },
+            "suggest": {
+                "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
+                "doctrine/cache": "To use the DoctrineCacheAdapter",
+                "ext-curl": "To send requests using cURL",
+                "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
+                "ext-sockets": "To use client-side monitoring"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.0-dev"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/functions.php"
+                ],
+                "psr-4": {
+                    "Aws\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "Apache-2.0"
+            ],
+            "authors": [
+                {
+                    "name": "Amazon Web Services",
+                    "homepage": "http://aws.amazon.com"
+                }
+            ],
+            "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
+            "homepage": "http://aws.amazon.com/sdkforphp",
+            "keywords": [
+                "amazon",
+                "aws",
+                "cloud",
+                "dynamodb",
+                "ec2",
+                "glacier",
+                "s3",
+                "sdk"
+            ],
+            "support": {
+                "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
+                "issues": "https://github.com/aws/aws-sdk-php/issues",
+                "source": "https://github.com/aws/aws-sdk-php/tree/3.283.1"
+            },
+            "time": "2023-10-05T18:07:42+00:00"
+        },
+        {
+            "name": "brick/math",
+            "version": "0.11.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/brick/math.git",
+                "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
+                "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^8.0"
+            },
+            "require-dev": {
+                "php-coveralls/php-coveralls": "^2.2",
+                "phpunit/phpunit": "^9.0",
+                "vimeo/psalm": "5.0.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Brick\\Math\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "description": "Arbitrary-precision arithmetic library",
+            "keywords": [
+                "Arbitrary-precision",
+                "BigInteger",
+                "BigRational",
+                "arithmetic",
+                "bigdecimal",
+                "bignum",
+                "brick",
+                "math"
+            ],
+            "support": {
+                "issues": "https://github.com/brick/math/issues",
+                "source": "https://github.com/brick/math/tree/0.11.0"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/BenMorel",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-01-15T23:15:59+00:00"
+        },
+        {
+            "name": "composer/ca-bundle",
+            "version": "1.3.7",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/composer/ca-bundle.git",
+                "reference": "76e46335014860eec1aa5a724799a00a2e47cc85"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/composer/ca-bundle/zipball/76e46335014860eec1aa5a724799a00a2e47cc85",
+                "reference": "76e46335014860eec1aa5a724799a00a2e47cc85",
+                "shasum": ""
+            },
+            "require": {
+                "ext-openssl": "*",
+                "ext-pcre": "*",
+                "php": "^5.3.2 || ^7.0 || ^8.0"
+            },
+            "require-dev": {
+                "phpstan/phpstan": "^0.12.55",
+                "psr/log": "^1.0",
+                "symfony/phpunit-bridge": "^4.2 || ^5",
+                "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Composer\\CaBundle\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Jordi Boggiano",
+                    "email": "j.boggiano@seld.be",
+                    "homepage": "http://seld.be"
+                }
+            ],
+            "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
+            "keywords": [
+                "cabundle",
+                "cacert",
+                "certificate",
+                "ssl",
+                "tls"
+            ],
+            "support": {
+                "irc": "irc://irc.freenode.org/composer",
+                "issues": "https://github.com/composer/ca-bundle/issues",
+                "source": "https://github.com/composer/ca-bundle/tree/1.3.7"
+            },
+            "funding": [
+                {
+                    "url": "https://packagist.com",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/composer",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-08-30T09:31:38+00:00"
+        },
+        {
+            "name": "composer/semver",
+            "version": "3.4.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/composer/semver.git",
+                "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
+                "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.3.2 || ^7.0 || ^8.0"
+            },
+            "require-dev": {
+                "phpstan/phpstan": "^1.4",
+                "symfony/phpunit-bridge": "^4.2 || ^5"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "3.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Composer\\Semver\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nils Adermann",
+                    "email": "naderman@naderman.de",
+                    "homepage": "http://www.naderman.de"
+                },
+                {
+                    "name": "Jordi Boggiano",
+                    "email": "j.boggiano@seld.be",
+                    "homepage": "http://seld.be"
+                },
+                {
+                    "name": "Rob Bast",
+                    "email": "rob.bast@gmail.com",
+                    "homepage": "http://robbast.nl"
+                }
+            ],
+            "description": "Semver library that offers utilities, version constraint parsing and validation.",
+            "keywords": [
+                "semantic",
+                "semver",
+                "validation",
+                "versioning"
+            ],
+            "support": {
+                "irc": "ircs://irc.libera.chat:6697/composer",
+                "issues": "https://github.com/composer/semver/issues",
+                "source": "https://github.com/composer/semver/tree/3.4.0"
+            },
+            "funding": [
+                {
+                    "url": "https://packagist.com",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/composer",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-08-31T09:50:34+00:00"
+        },
+        {
+            "name": "dflydev/dot-access-data",
+            "version": "v3.0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
+                "reference": "f41715465d65213d644d3141a6a93081be5d3549"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
+                "reference": "f41715465d65213d644d3141a6a93081be5d3549",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1 || ^8.0"
+            },
+            "require-dev": {
+                "phpstan/phpstan": "^0.12.42",
+                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
+                "scrutinizer/ocular": "1.6.0",
+                "squizlabs/php_codesniffer": "^3.5",
+                "vimeo/psalm": "^4.0.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "3.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Dflydev\\DotAccessData\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Dragonfly Development Inc.",
+                    "email": "info@dflydev.com",
+                    "homepage": "http://dflydev.com"
+                },
+                {
+                    "name": "Beau Simensen",
+                    "email": "beau@dflydev.com",
+                    "homepage": "http://beausimensen.com"
+                },
+                {
+                    "name": "Carlos Frutos",
+                    "email": "carlos@kiwing.it",
+                    "homepage": "https://github.com/cfrutos"
+                },
+                {
+                    "name": "Colin O'Dell",
+                    "email": "colinodell@gmail.com",
+                    "homepage": "https://www.colinodell.com"
+                }
+            ],
+            "description": "Given a deep data structure, access data by dot notation.",
+            "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
+            "keywords": [
+                "access",
+                "data",
+                "dot",
+                "notation"
+            ],
+            "support": {
+                "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
+                "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
+            },
+            "time": "2022-10-27T11:44:00+00:00"
+        },
+        {
+            "name": "doctrine/inflector",
+            "version": "2.0.8",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/inflector.git",
+                "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
+                "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.2 || ^8.0"
+            },
+            "require-dev": {
+                "doctrine/coding-standard": "^11.0",
+                "phpstan/phpstan": "^1.8",
+                "phpstan/phpstan-phpunit": "^1.1",
+                "phpstan/phpstan-strict-rules": "^1.3",
+                "phpunit/phpunit": "^8.5 || ^9.5",
+                "vimeo/psalm": "^4.25 || ^5.4"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Benjamin Eberlei",
+                    "email": "kontakt@beberlei.de"
+                },
+                {
+                    "name": "Jonathan Wage",
+                    "email": "jonwage@gmail.com"
+                },
+                {
+                    "name": "Johannes Schmitt",
+                    "email": "schmittjoh@gmail.com"
+                }
+            ],
+            "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
+            "homepage": "https://www.doctrine-project.org/projects/inflector.html",
+            "keywords": [
+                "inflection",
+                "inflector",
+                "lowercase",
+                "manipulation",
+                "php",
+                "plural",
+                "singular",
+                "strings",
+                "uppercase",
+                "words"
+            ],
+            "support": {
+                "issues": "https://github.com/doctrine/inflector/issues",
+                "source": "https://github.com/doctrine/inflector/tree/2.0.8"
+            },
+            "funding": [
+                {
+                    "url": "https://www.doctrine-project.org/sponsorship.html",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://www.patreon.com/phpdoctrine",
+                    "type": "patreon"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-06-16T13:40:37+00:00"
+        },
+        {
+            "name": "doctrine/lexer",
+            "version": "3.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/lexer.git",
+                "reference": "84a527db05647743d50373e0ec53a152f2cde568"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
+                "reference": "84a527db05647743d50373e0ec53a152f2cde568",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^8.1"
+            },
+            "require-dev": {
+                "doctrine/coding-standard": "^10",
+                "phpstan/phpstan": "^1.9",
+                "phpunit/phpunit": "^9.5",
+                "psalm/plugin-phpunit": "^0.18.3",
+                "vimeo/psalm": "^5.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Common\\Lexer\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Johannes Schmitt",
+                    "email": "schmittjoh@gmail.com"
+                }
+            ],
+            "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
+            "homepage": "https://www.doctrine-project.org/projects/lexer.html",
+            "keywords": [
+                "annotations",
+                "docblock",
+                "lexer",
+                "parser",
+                "php"
+            ],
+            "support": {
+                "issues": "https://github.com/doctrine/lexer/issues",
+                "source": "https://github.com/doctrine/lexer/tree/3.0.0"
+            },
+            "funding": [
+                {
+                    "url": "https://www.doctrine-project.org/sponsorship.html",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://www.patreon.com/phpdoctrine",
+                    "type": "patreon"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2022-12-15T16:57:16+00:00"
+        },
+        {
+            "name": "dragonmantank/cron-expression",
+            "version": "v3.3.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/dragonmantank/cron-expression.git",
+                "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
+                "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.2|^8.0",
+                "webmozart/assert": "^1.0"
+            },
+            "replace": {
+                "mtdowling/cron-expression": "^1.0"
+            },
+            "require-dev": {
+                "phpstan/extension-installer": "^1.0",
+                "phpstan/phpstan": "^1.0",
+                "phpstan/phpstan-webmozart-assert": "^1.0",
+                "phpunit/phpunit": "^7.0|^8.0|^9.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Cron\\": "src/Cron/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Chris Tankersley",
+                    "email": "chris@ctankersley.com",
+                    "homepage": "https://github.com/dragonmantank"
+                }
+            ],
+            "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
+            "keywords": [
+                "cron",
+                "schedule"
+            ],
+            "support": {
+                "issues": "https://github.com/dragonmantank/cron-expression/issues",
+                "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/dragonmantank",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-08-10T19:36:49+00:00"
+        },
+        {
+            "name": "egulias/email-validator",
+            "version": "4.0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/egulias/EmailValidator.git",
+                "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
+                "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
+                "shasum": ""
+            },
+            "require": {
+                "doctrine/lexer": "^2.0 || ^3.0",
+                "php": ">=8.1",
+                "symfony/polyfill-intl-idn": "^1.26"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^10.2",
+                "vimeo/psalm": "^5.12"
+            },
+            "suggest": {
+                "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Egulias\\EmailValidator\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Eduardo Gulias Davis"
+                }
+            ],
+            "description": "A library for validating emails against several RFCs",
+            "homepage": "https://github.com/egulias/EmailValidator",
+            "keywords": [
+                "email",
+                "emailvalidation",
+                "emailvalidator",
+                "validation",
+                "validator"
+            ],
+            "support": {
+                "issues": "https://github.com/egulias/EmailValidator/issues",
+                "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/egulias",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-10-06T06:47:41+00:00"
+        },
+        {
+            "name": "ezyang/htmlpurifier",
+            "version": "v4.16.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/ezyang/htmlpurifier.git",
+                "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
+                "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
+                "shasum": ""
+            },
+            "require": {
+                "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
+            },
+            "require-dev": {
+                "cerdic/css-tidy": "^1.7 || ^2.0",
+                "simpletest/simpletest": "dev-master"
+            },
+            "suggest": {
+                "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
+                "ext-bcmath": "Used for unit conversion and imagecrash protection",
+                "ext-iconv": "Converts text to and from non-UTF-8 encodings",
+                "ext-tidy": "Used for pretty-printing HTML"
+            },
+            "type": "library",
+            "autoload": {
+                "files": [
+                    "library/HTMLPurifier.composer.php"
+                ],
+                "psr-0": {
+                    "HTMLPurifier": "library/"
+                },
+                "exclude-from-classmap": [
+                    "/library/HTMLPurifier/Language/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "LGPL-2.1-or-later"
+            ],
+            "authors": [
+                {
+                    "name": "Edward Z. Yang",
+                    "email": "admin@htmlpurifier.org",
+                    "homepage": "http://ezyang.com"
+                }
+            ],
+            "description": "Standards compliant HTML filter written in PHP",
+            "homepage": "http://htmlpurifier.org/",
+            "keywords": [
+                "html"
+            ],
+            "support": {
+                "issues": "https://github.com/ezyang/htmlpurifier/issues",
+                "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
+            },
+            "time": "2022-09-18T07:06:19+00:00"
+        },
+        {
+            "name": "fruitcake/php-cors",
+            "version": "v1.2.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/fruitcake/php-cors.git",
+                "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
+                "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.4|^8.0",
+                "symfony/http-foundation": "^4.4|^5.4|^6"
+            },
+            "require-dev": {
+                "phpstan/phpstan": "^1.4",
+                "phpunit/phpunit": "^9",
+                "squizlabs/php_codesniffer": "^3.5"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.1-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Fruitcake\\Cors\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fruitcake",
+                    "homepage": "https://fruitcake.nl"
+                },
+                {
+                    "name": "Barryvdh",
+                    "email": "barryvdh@gmail.com"
+                }
+            ],
+            "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
+            "homepage": "https://github.com/fruitcake/php-cors",
+            "keywords": [
+                "cors",
+                "laravel",
+                "symfony"
+            ],
+            "support": {
+                "issues": "https://github.com/fruitcake/php-cors/issues",
+                "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
+            },
+            "funding": [
+                {
+                    "url": "https://fruitcake.nl",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/barryvdh",
+                    "type": "github"
+                }
+            ],
+            "time": "2022-02-20T15:07:15+00:00"
+        },
+        {
+            "name": "geoip2/geoip2",
+            "version": "v2.13.0",
+            "source": {
+                "type": "git",
+                "url": "git@github.com:maxmind/GeoIP2-php.git",
+                "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
+                "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
+                "shasum": ""
+            },
+            "require": {
+                "ext-json": "*",
+                "maxmind-db/reader": "~1.8",
+                "maxmind/web-service-common": "~0.8",
+                "php": ">=7.2"
+            },
+            "require-dev": {
+                "friendsofphp/php-cs-fixer": "3.*",
+                "phpstan/phpstan": "*",
+                "phpunit/phpunit": "^8.0 || ^9.0",
+                "squizlabs/php_codesniffer": "3.*"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "GeoIp2\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "Apache-2.0"
+            ],
+            "authors": [
+                {
+                    "name": "Gregory J. Oschwald",
+                    "email": "goschwald@maxmind.com",
+                    "homepage": "https://www.maxmind.com/"
+                }
+            ],
+            "description": "MaxMind GeoIP2 PHP API",
+            "homepage": "https://github.com/maxmind/GeoIP2-php",
+            "keywords": [
+                "IP",
+                "geoip",
+                "geoip2",
+                "geolocation",
+                "maxmind"
+            ],
+            "time": "2022-08-05T20:32:58+00:00"
+        },
+        {
+            "name": "graham-campbell/result-type",
+            "version": "v1.1.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/GrahamCampbell/Result-Type.git",
+                "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
+                "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.2.5 || ^8.0",
+                "phpoption/phpoption": "^1.9.1"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "GrahamCampbell\\ResultType\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Graham Campbell",
+                    "email": "hello@gjcampbell.co.uk",
+                    "homepage": "https://github.com/GrahamCampbell"
+                }
+            ],
+            "description": "An Implementation Of The Result Type",
+            "keywords": [
+                "Graham Campbell",
+                "GrahamCampbell",
+                "Result Type",
+                "Result-Type",
+                "result"
+            ],
+            "support": {
+                "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
+                "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/GrahamCampbell",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-02-25T20:23:15+00:00"
+        },
+        {
+            "name": "guzzlehttp/guzzle",
+            "version": "7.8.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/guzzle/guzzle.git",
+                "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1110f66a6530a40fe7aea0378fe608ee2b2248f9",
+                "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9",
+                "shasum": ""
+            },
+            "require": {
+                "ext-json": "*",
+                "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
+                "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
+                "php": "^7.2.5 || ^8.0",
+                "psr/http-client": "^1.0",
+                "symfony/deprecation-contracts": "^2.2 || ^3.0"
+            },
+            "provide": {
+                "psr/http-client-implementation": "1.0"
+            },
+            "require-dev": {
+                "bamarni/composer-bin-plugin": "^1.8.1",
+                "ext-curl": "*",
+                "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
+                "php-http/message-factory": "^1.1",
+                "phpunit/phpunit": "^8.5.29 || ^9.5.23",
+                "psr/log": "^1.1 || ^2.0 || ^3.0"
+            },
+            "suggest": {
+                "ext-curl": "Required for CURL handler support",
+                "ext-intl": "Required for Internationalized Domain Name (IDN) support",
+                "psr/log": "Required for using the Log middleware"
+            },
+            "type": "library",
+            "extra": {
+                "bamarni-bin": {
+                    "bin-links": true,
+                    "forward-command": false
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/functions_include.php"
+                ],
+                "psr-4": {
+                    "GuzzleHttp\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Graham Campbell",
+                    "email": "hello@gjcampbell.co.uk",
+                    "homepage": "https://github.com/GrahamCampbell"
+                },
+                {
+                    "name": "Michael Dowling",
+                    "email": "mtdowling@gmail.com",
+                    "homepage": "https://github.com/mtdowling"
+                },
+                {
+                    "name": "Jeremy Lindblom",
+                    "email": "jeremeamia@gmail.com",
+                    "homepage": "https://github.com/jeremeamia"
+                },
+                {
+                    "name": "George Mponos",
+                    "email": "gmponos@gmail.com",
+                    "homepage": "https://github.com/gmponos"
+                },
+                {
+                    "name": "Tobias Nyholm",
+                    "email": "tobias.nyholm@gmail.com",
+                    "homepage": "https://github.com/Nyholm"
+                },
+                {
+                    "name": "Márk Sági-Kazár",
+                    "email": "mark.sagikazar@gmail.com",
+                    "homepage": "https://github.com/sagikazarmark"
+                },
+                {
+                    "name": "Tobias Schultze",
+                    "email": "webmaster@tubo-world.de",
+                    "homepage": "https://github.com/Tobion"
+                }
+            ],
+            "description": "Guzzle is a PHP HTTP client library",
+            "keywords": [
+                "client",
+                "curl",
+                "framework",
+                "http",
+                "http client",
+                "psr-18",
+                "psr-7",
+                "rest",
+                "web service"
+            ],
+            "support": {
+                "issues": "https://github.com/guzzle/guzzle/issues",
+                "source": "https://github.com/guzzle/guzzle/tree/7.8.0"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/GrahamCampbell",
+                    "type": "github"
+                },
+                {
+                    "url": "https://github.com/Nyholm",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-08-27T10:20:53+00:00"
+        },
+        {
+            "name": "guzzlehttp/promises",
+            "version": "2.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/guzzle/promises.git",
+                "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
+                "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.2.5 || ^8.0"
+            },
+            "require-dev": {
+                "bamarni/composer-bin-plugin": "^1.8.1",
+                "phpunit/phpunit": "^8.5.29 || ^9.5.23"
+            },
+            "type": "library",
+            "extra": {
+                "bamarni-bin": {
+                    "bin-links": true,
+                    "forward-command": false
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "GuzzleHttp\\Promise\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Graham Campbell",
+                    "email": "hello@gjcampbell.co.uk",
+                    "homepage": "https://github.com/GrahamCampbell"
+                },
+                {
+                    "name": "Michael Dowling",
+                    "email": "mtdowling@gmail.com",
+                    "homepage": "https://github.com/mtdowling"
+                },
+                {
+                    "name": "Tobias Nyholm",
+                    "email": "tobias.nyholm@gmail.com",
+                    "homepage": "https://github.com/Nyholm"
+                },
+                {
+                    "name": "Tobias Schultze",
+                    "email": "webmaster@tubo-world.de",
+                    "homepage": "https://github.com/Tobion"
+                }
+            ],
+            "description": "Guzzle promises library",
+            "keywords": [
+                "promise"
+            ],
+            "support": {
+                "issues": "https://github.com/guzzle/promises/issues",
+                "source": "https://github.com/guzzle/promises/tree/2.0.1"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/GrahamCampbell",
+                    "type": "github"
+                },
+                {
+                    "url": "https://github.com/Nyholm",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-08-03T15:11:55+00:00"
+        },
+        {
+            "name": "guzzlehttp/psr7",
+            "version": "2.6.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/guzzle/psr7.git",
+                "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
+                "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.2.5 || ^8.0",
+                "psr/http-factory": "^1.0",
+                "psr/http-message": "^1.1 || ^2.0",
+                "ralouphie/getallheaders": "^3.0"
+            },
+            "provide": {
+                "psr/http-factory-implementation": "1.0",
+                "psr/http-message-implementation": "1.0"
+            },
+            "require-dev": {
+                "bamarni/composer-bin-plugin": "^1.8.1",
+                "http-interop/http-factory-tests": "^0.9",
+                "phpunit/phpunit": "^8.5.29 || ^9.5.23"
+            },
+            "suggest": {
+                "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
+            },
+            "type": "library",
+            "extra": {
+                "bamarni-bin": {
+                    "bin-links": true,
+                    "forward-command": false
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "GuzzleHttp\\Psr7\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Graham Campbell",
+                    "email": "hello@gjcampbell.co.uk",
+                    "homepage": "https://github.com/GrahamCampbell"
+                },
+                {
+                    "name": "Michael Dowling",
+                    "email": "mtdowling@gmail.com",
+                    "homepage": "https://github.com/mtdowling"
+                },
+                {
+                    "name": "George Mponos",
+                    "email": "gmponos@gmail.com",
+                    "homepage": "https://github.com/gmponos"
+                },
+                {
+                    "name": "Tobias Nyholm",
+                    "email": "tobias.nyholm@gmail.com",
+                    "homepage": "https://github.com/Nyholm"
+                },
+                {
+                    "name": "Márk Sági-Kazár",
+                    "email": "mark.sagikazar@gmail.com",
+                    "homepage": "https://github.com/sagikazarmark"
+                },
+                {
+                    "name": "Tobias Schultze",
+                    "email": "webmaster@tubo-world.de",
+                    "homepage": "https://github.com/Tobion"
+                },
+                {
+                    "name": "Márk Sági-Kazár",
+                    "email": "mark.sagikazar@gmail.com",
+                    "homepage": "https://sagikazarmark.hu"
+                }
+            ],
+            "description": "PSR-7 message implementation that also provides common utility methods",
+            "keywords": [
+                "http",
+                "message",
+                "psr-7",
+                "request",
+                "response",
+                "stream",
+                "uri",
+                "url"
+            ],
+            "support": {
+                "issues": "https://github.com/guzzle/psr7/issues",
+                "source": "https://github.com/guzzle/psr7/tree/2.6.1"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/GrahamCampbell",
+                    "type": "github"
+                },
+                {
+                    "url": "https://github.com/Nyholm",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-08-27T10:13:57+00:00"
+        },
+        {
+            "name": "guzzlehttp/uri-template",
+            "version": "v1.0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/guzzle/uri-template.git",
+                "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/guzzle/uri-template/zipball/61bf437fc2197f587f6857d3ff903a24f1731b5d",
+                "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.2.5 || ^8.0",
+                "symfony/polyfill-php80": "^1.17"
+            },
+            "require-dev": {
+                "bamarni/composer-bin-plugin": "^1.8.1",
+                "phpunit/phpunit": "^8.5.19 || ^9.5.8",
+                "uri-template/tests": "1.0.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "GuzzleHttp\\UriTemplate\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Graham Campbell",
+                    "email": "hello@gjcampbell.co.uk",
+                    "homepage": "https://github.com/GrahamCampbell"
+                },
+                {
+                    "name": "Michael Dowling",
+                    "email": "mtdowling@gmail.com",
+                    "homepage": "https://github.com/mtdowling"
+                },
+                {
+                    "name": "George Mponos",
+                    "email": "gmponos@gmail.com",
+                    "homepage": "https://github.com/gmponos"
+                },
+                {
+                    "name": "Tobias Nyholm",
+                    "email": "tobias.nyholm@gmail.com",
+                    "homepage": "https://github.com/Nyholm"
+                }
+            ],
+            "description": "A polyfill class for uri_template of PHP",
+            "keywords": [
+                "guzzlehttp",
+                "uri-template"
+            ],
+            "support": {
+                "issues": "https://github.com/guzzle/uri-template/issues",
+                "source": "https://github.com/guzzle/uri-template/tree/v1.0.2"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/GrahamCampbell",
+                    "type": "github"
+                },
+                {
+                    "url": "https://github.com/Nyholm",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-08-27T10:19:19+00:00"
+        },
+        {
+            "name": "ladumor/one-signal",
+            "version": "v1.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/shailesh-ladumor/one-signal.git",
+                "reference": "a510f38f3b771451d27f7be81a592bc161b47696"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/shailesh-ladumor/one-signal/zipball/a510f38f3b771451d27f7be81a592bc161b47696",
+                "reference": "a510f38f3b771451d27f7be81a592bc161b47696",
+                "shasum": ""
+            },
+            "require": {
+                "ext-curl": "*",
+                "ext-json": "*",
+                "illuminate/support": "^10.0|^9.0|^8.0|^7.0|^6.0",
+                "php": "^7.2.5|^8.0"
+            },
+            "require-dev": {
+                "mockery/mockery": "~0.9",
+                "phpunit/phpunit": "~5.0"
+            },
+            "type": "library",
+            "extra": {
+                "laravel": {
+                    "providers": [
+                        "\\Ladumor\\OneSignal\\OneSignalServiceProvider"
+                    ],
+                    "aliases": {
+                        "OneSignal": "Ladumor\\OneSignal\\OneSignal"
+                    }
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Ladumor\\OneSignal\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Shailesh Ladumor",
+                    "email": "shaileshmladumor@gmail.com"
+                }
+            ],
+            "description": "Laravel Wrapper for OneSignal.",
+            "keywords": [
+                "laravel",
+                "notification",
+                "one-signal",
+                "php",
+                "push"
+            ],
+            "support": {
+                "issues": "https://github.com/shailesh-ladumor/one-signal/issues",
+                "source": "https://github.com/shailesh-ladumor/one-signal/tree/v1.0.0"
+            },
+            "funding": [
+                {
+                    "url": "https://www.buymeacoffee.com/ladumor",
+                    "type": "custom"
+                }
+            ],
+            "time": "2023-06-22T13:38:35+00:00"
+        },
+        {
+            "name": "laravel/framework",
+            "version": "v9.52.16",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/laravel/framework.git",
+                "reference": "082345d76fc6a55b649572efe10b11b03e279d24"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/laravel/framework/zipball/082345d76fc6a55b649572efe10b11b03e279d24",
+                "reference": "082345d76fc6a55b649572efe10b11b03e279d24",
+                "shasum": ""
+            },
+            "require": {
+                "brick/math": "^0.9.3|^0.10.2|^0.11",
+                "doctrine/inflector": "^2.0.5",
+                "dragonmantank/cron-expression": "^3.3.2",
+                "egulias/email-validator": "^3.2.1|^4.0",
+                "ext-ctype": "*",
+                "ext-filter": "*",
+                "ext-hash": "*",
+                "ext-mbstring": "*",
+                "ext-openssl": "*",
+                "ext-session": "*",
+                "ext-tokenizer": "*",
+                "fruitcake/php-cors": "^1.2",
+                "guzzlehttp/uri-template": "^1.0",
+                "laravel/serializable-closure": "^1.2.2",
+                "league/commonmark": "^2.2.1",
+                "league/flysystem": "^3.8.0",
+                "monolog/monolog": "^2.0",
+                "nesbot/carbon": "^2.62.1",
+                "nunomaduro/termwind": "^1.13",
+                "php": "^8.0.2",
+                "psr/container": "^1.1.1|^2.0.1",
+                "psr/log": "^1.0|^2.0|^3.0",
+                "psr/simple-cache": "^1.0|^2.0|^3.0",
+                "ramsey/uuid": "^4.7",
+                "symfony/console": "^6.0.9",
+                "symfony/error-handler": "^6.0",
+                "symfony/finder": "^6.0",
+                "symfony/http-foundation": "^6.0",
+                "symfony/http-kernel": "^6.0",
+                "symfony/mailer": "^6.0",
+                "symfony/mime": "^6.0",
+                "symfony/process": "^6.0",
+                "symfony/routing": "^6.0",
+                "symfony/uid": "^6.0",
+                "symfony/var-dumper": "^6.0",
+                "tijsverkoyen/css-to-inline-styles": "^2.2.5",
+                "vlucas/phpdotenv": "^5.4.1",
+                "voku/portable-ascii": "^2.0"
+            },
+            "conflict": {
+                "tightenco/collect": "<5.5.33"
+            },
+            "provide": {
+                "psr/container-implementation": "1.1|2.0",
+                "psr/simple-cache-implementation": "1.0|2.0|3.0"
+            },
+            "replace": {
+                "illuminate/auth": "self.version",
+                "illuminate/broadcasting": "self.version",
+                "illuminate/bus": "self.version",
+                "illuminate/cache": "self.version",
+                "illuminate/collections": "self.version",
+                "illuminate/conditionable": "self.version",
+                "illuminate/config": "self.version",
+                "illuminate/console": "self.version",
+                "illuminate/container": "self.version",
+                "illuminate/contracts": "self.version",
+                "illuminate/cookie": "self.version",
+                "illuminate/database": "self.version",
+                "illuminate/encryption": "self.version",
+                "illuminate/events": "self.version",
+                "illuminate/filesystem": "self.version",
+                "illuminate/hashing": "self.version",
+                "illuminate/http": "self.version",
+                "illuminate/log": "self.version",
+                "illuminate/macroable": "self.version",
+                "illuminate/mail": "self.version",
+                "illuminate/notifications": "self.version",
+                "illuminate/pagination": "self.version",
+                "illuminate/pipeline": "self.version",
+                "illuminate/queue": "self.version",
+                "illuminate/redis": "self.version",
+                "illuminate/routing": "self.version",
+                "illuminate/session": "self.version",
+                "illuminate/support": "self.version",
+                "illuminate/testing": "self.version",
+                "illuminate/translation": "self.version",
+                "illuminate/validation": "self.version",
+                "illuminate/view": "self.version"
+            },
+            "require-dev": {
+                "ably/ably-php": "^1.0",
+                "aws/aws-sdk-php": "^3.235.5",
+                "doctrine/dbal": "^2.13.3|^3.1.4",
+                "ext-gmp": "*",
+                "fakerphp/faker": "^1.21",
+                "guzzlehttp/guzzle": "^7.5",
+                "league/flysystem-aws-s3-v3": "^3.0",
+                "league/flysystem-ftp": "^3.0",
+                "league/flysystem-path-prefixing": "^3.3",
+                "league/flysystem-read-only": "^3.3",
+                "league/flysystem-sftp-v3": "^3.0",
+                "mockery/mockery": "^1.5.1",
+                "orchestra/testbench-core": "^7.24",
+                "pda/pheanstalk": "^4.0",
+                "phpstan/phpdoc-parser": "^1.15",
+                "phpstan/phpstan": "^1.4.7",
+                "phpunit/phpunit": "^9.5.8",
+                "predis/predis": "^1.1.9|^2.0.2",
+                "symfony/cache": "^6.0",
+                "symfony/http-client": "^6.0"
+            },
+            "suggest": {
+                "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
+                "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
+                "brianium/paratest": "Required to run tests in parallel (^6.0).",
+                "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
+                "ext-apcu": "Required to use the APC cache driver.",
+                "ext-fileinfo": "Required to use the Filesystem class.",
+                "ext-ftp": "Required to use the Flysystem FTP driver.",
+                "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
+                "ext-memcached": "Required to use the memcache cache driver.",
+                "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
+                "ext-pdo": "Required to use all database features.",
+                "ext-posix": "Required to use all features of the queue worker.",
+                "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
+                "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
+                "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
+                "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
+                "laravel/tinker": "Required to use the tinker console command (^2.0).",
+                "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
+                "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
+                "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
+                "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
+                "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
+                "mockery/mockery": "Required to use mocking (^1.5.1).",
+                "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
+                "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
+                "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
+                "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).",
+                "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
+                "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
+                "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
+                "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
+                "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
+                "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
+                "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
+                "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "9.x-dev"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/Illuminate/Collections/helpers.php",
+                    "src/Illuminate/Events/functions.php",
+                    "src/Illuminate/Foundation/helpers.php",
+                    "src/Illuminate/Support/helpers.php"
+                ],
+                "psr-4": {
+                    "Illuminate\\": "src/Illuminate/",
+                    "Illuminate\\Support\\": [
+                        "src/Illuminate/Macroable/",
+                        "src/Illuminate/Collections/",
+                        "src/Illuminate/Conditionable/"
+                    ]
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Taylor Otwell",
+                    "email": "taylor@laravel.com"
+                }
+            ],
+            "description": "The Laravel Framework.",
+            "homepage": "https://laravel.com",
+            "keywords": [
+                "framework",
+                "laravel"
+            ],
+            "support": {
+                "issues": "https://github.com/laravel/framework/issues",
+                "source": "https://github.com/laravel/framework"
+            },
+            "time": "2023-10-03T13:02:30+00:00"
+        },
+        {
+            "name": "laravel/sanctum",
+            "version": "v3.3.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/laravel/sanctum.git",
+                "reference": "338f633e6487e76b255470d3373fbc29228aa971"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/laravel/sanctum/zipball/338f633e6487e76b255470d3373fbc29228aa971",
+                "reference": "338f633e6487e76b255470d3373fbc29228aa971",
+                "shasum": ""
+            },
+            "require": {
+                "ext-json": "*",
+                "illuminate/console": "^9.21|^10.0",
+                "illuminate/contracts": "^9.21|^10.0",
+                "illuminate/database": "^9.21|^10.0",
+                "illuminate/support": "^9.21|^10.0",
+                "php": "^8.0.2"
+            },
+            "require-dev": {
+                "mockery/mockery": "^1.0",
+                "orchestra/testbench": "^7.28.2|^8.8.3",
+                "phpstan/phpstan": "^1.10",
+                "phpunit/phpunit": "^9.6"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.x-dev"
+                },
+                "laravel": {
+                    "providers": [
+                        "Laravel\\Sanctum\\SanctumServiceProvider"
+                    ]
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Laravel\\Sanctum\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Taylor Otwell",
+                    "email": "taylor@laravel.com"
+                }
+            ],
+            "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
+            "keywords": [
+                "auth",
+                "laravel",
+                "sanctum"
+            ],
+            "support": {
+                "issues": "https://github.com/laravel/sanctum/issues",
+                "source": "https://github.com/laravel/sanctum"
+            },
+            "time": "2023-09-07T15:46:33+00:00"
+        },
+        {
+            "name": "laravel/serializable-closure",
+            "version": "v1.3.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/laravel/serializable-closure.git",
+                "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/e5a3057a5591e1cfe8183034b0203921abe2c902",
+                "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.3|^8.0"
+            },
+            "require-dev": {
+                "nesbot/carbon": "^2.61",
+                "pestphp/pest": "^1.21.3",
+                "phpstan/phpstan": "^1.8.2",
+                "symfony/var-dumper": "^5.4.11"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Laravel\\SerializableClosure\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Taylor Otwell",
+                    "email": "taylor@laravel.com"
+                },
+                {
+                    "name": "Nuno Maduro",
+                    "email": "nuno@laravel.com"
+                }
+            ],
+            "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
+            "keywords": [
+                "closure",
+                "laravel",
+                "serializable"
+            ],
+            "support": {
+                "issues": "https://github.com/laravel/serializable-closure/issues",
+                "source": "https://github.com/laravel/serializable-closure"
+            },
+            "time": "2023-07-14T13:56:28+00:00"
+        },
+        {
+            "name": "laravel/tinker",
+            "version": "v2.8.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/laravel/tinker.git",
+                "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
+                "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
+                "shasum": ""
+            },
+            "require": {
+                "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
+                "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
+                "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
+                "php": "^7.2.5|^8.0",
+                "psy/psysh": "^0.10.4|^0.11.1",
+                "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
+            },
+            "require-dev": {
+                "mockery/mockery": "~1.3.3|^1.4.2",
+                "phpstan/phpstan": "^1.10",
+                "phpunit/phpunit": "^8.5.8|^9.3.3"
+            },
+            "suggest": {
+                "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.x-dev"
+                },
+                "laravel": {
+                    "providers": [
+                        "Laravel\\Tinker\\TinkerServiceProvider"
+                    ]
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Laravel\\Tinker\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Taylor Otwell",
+                    "email": "taylor@laravel.com"
+                }
+            ],
+            "description": "Powerful REPL for the Laravel framework.",
+            "keywords": [
+                "REPL",
+                "Tinker",
+                "laravel",
+                "psysh"
+            ],
+            "support": {
+                "issues": "https://github.com/laravel/tinker/issues",
+                "source": "https://github.com/laravel/tinker/tree/v2.8.2"
+            },
+            "time": "2023-08-15T14:27:00+00:00"
+        },
+        {
+            "name": "laravel/ui",
+            "version": "v4.2.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/laravel/ui.git",
+                "reference": "a58ec468db4a340b33f3426c778784717a2c144b"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/laravel/ui/zipball/a58ec468db4a340b33f3426c778784717a2c144b",
+                "reference": "a58ec468db4a340b33f3426c778784717a2c144b",
+                "shasum": ""
+            },
+            "require": {
+                "illuminate/console": "^9.21|^10.0",
+                "illuminate/filesystem": "^9.21|^10.0",
+                "illuminate/support": "^9.21|^10.0",
+                "illuminate/validation": "^9.21|^10.0",
+                "php": "^8.0"
+            },
+            "require-dev": {
+                "orchestra/testbench": "^7.0|^8.0",
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.x-dev"
+                },
+                "laravel": {
+                    "providers": [
+                        "Laravel\\Ui\\UiServiceProvider"
+                    ]
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Laravel\\Ui\\": "src/",
+                    "Illuminate\\Foundation\\Auth\\": "auth-backend/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Taylor Otwell",
+                    "email": "taylor@laravel.com"
+                }
+            ],
+            "description": "Laravel UI utilities and presets.",
+            "keywords": [
+                "laravel",
+                "ui"
+            ],
+            "support": {
+                "source": "https://github.com/laravel/ui/tree/v4.2.2"
+            },
+            "time": "2023-05-09T19:47:28+00:00"
+        },
+        {
+            "name": "lcobucci/clock",
+            "version": "2.3.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/lcobucci/clock.git",
+                "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
+                "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
+                "shasum": ""
+            },
+            "require": {
+                "php": "~8.1.0 || ~8.2.0",
+                "stella-maris/clock": "^0.1.7"
+            },
+            "provide": {
+                "psr/clock-implementation": "1.0"
+            },
+            "require-dev": {
+                "infection/infection": "^0.26",
+                "lcobucci/coding-standard": "^9.0",
+                "phpstan/extension-installer": "^1.2",
+                "phpstan/phpstan": "^1.9.4",
+                "phpstan/phpstan-deprecation-rules": "^1.1.1",
+                "phpstan/phpstan-phpunit": "^1.3.2",
+                "phpstan/phpstan-strict-rules": "^1.4.4",
+                "phpunit/phpunit": "^9.5.27"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Lcobucci\\Clock\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Luís Cobucci",
+                    "email": "lcobucci@gmail.com"
+                }
+            ],
+            "description": "Yet another clock abstraction",
+            "support": {
+                "issues": "https://github.com/lcobucci/clock/issues",
+                "source": "https://github.com/lcobucci/clock/tree/2.3.0"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/lcobucci",
+                    "type": "github"
+                },
+                {
+                    "url": "https://www.patreon.com/lcobucci",
+                    "type": "patreon"
+                }
+            ],
+            "time": "2022-12-19T14:38:11+00:00"
+        },
+        {
+            "name": "lcobucci/jwt",
+            "version": "4.0.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/lcobucci/jwt.git",
+                "reference": "55564265fddf810504110bd68ca311932324b0e9"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/lcobucci/jwt/zipball/55564265fddf810504110bd68ca311932324b0e9",
+                "reference": "55564265fddf810504110bd68ca311932324b0e9",
+                "shasum": ""
+            },
+            "require": {
+                "ext-mbstring": "*",
+                "ext-openssl": "*",
+                "lcobucci/clock": "^2.0",
+                "php": "^7.4 || ^8.0"
+            },
+            "require-dev": {
+                "infection/infection": "^0.20",
+                "lcobucci/coding-standard": "^6.0",
+                "mikey179/vfsstream": "^1.6",
+                "phpbench/phpbench": "^0.17",
+                "phpstan/extension-installer": "^1.0",
+                "phpstan/phpstan": "^0.12",
+                "phpstan/phpstan-deprecation-rules": "^0.12",
+                "phpstan/phpstan-phpunit": "^0.12",
+                "phpstan/phpstan-strict-rules": "^0.12",
+                "phpunit/php-invoker": "^3.1",
+                "phpunit/phpunit": "^9.4"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.0-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Lcobucci\\JWT\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Luís Cobucci",
+                    "email": "lcobucci@gmail.com",
+                    "role": "Developer"
+                }
+            ],
+            "description": "A simple library to work with JSON Web Token and JSON Web Signature",
+            "keywords": [
+                "JWS",
+                "jwt"
+            ],
+            "support": {
+                "issues": "https://github.com/lcobucci/jwt/issues",
+                "source": "https://github.com/lcobucci/jwt/tree/4.0.4"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/lcobucci",
+                    "type": "github"
+                },
+                {
+                    "url": "https://www.patreon.com/lcobucci",
+                    "type": "patreon"
+                }
+            ],
+            "time": "2021-09-28T19:18:28+00:00"
+        },
+        {
+            "name": "league/commonmark",
+            "version": "2.4.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/thephpleague/commonmark.git",
+                "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
+                "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
+                "shasum": ""
+            },
+            "require": {
+                "ext-mbstring": "*",
+                "league/config": "^1.1.1",
+                "php": "^7.4 || ^8.0",
+                "psr/event-dispatcher": "^1.0",
+                "symfony/deprecation-contracts": "^2.1 || ^3.0",
+                "symfony/polyfill-php80": "^1.16"
+            },
+            "require-dev": {
+                "cebe/markdown": "^1.0",
+                "commonmark/cmark": "0.30.0",
+                "commonmark/commonmark.js": "0.30.0",
+                "composer/package-versions-deprecated": "^1.8",
+                "embed/embed": "^4.4",
+                "erusev/parsedown": "^1.0",
+                "ext-json": "*",
+                "github/gfm": "0.29.0",
+                "michelf/php-markdown": "^1.4 || ^2.0",
+                "nyholm/psr7": "^1.5",
+                "phpstan/phpstan": "^1.8.2",
+                "phpunit/phpunit": "^9.5.21",
+                "scrutinizer/ocular": "^1.8.1",
+                "symfony/finder": "^5.3 | ^6.0",
+                "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
+                "unleashedtech/php-coding-standard": "^3.1.1",
+                "vimeo/psalm": "^4.24.0 || ^5.0.0"
+            },
+            "suggest": {
+                "symfony/yaml": "v2.3+ required if using the Front Matter extension"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "2.5-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "League\\CommonMark\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Colin O'Dell",
+                    "email": "colinodell@gmail.com",
+                    "homepage": "https://www.colinodell.com",
+                    "role": "Lead Developer"
+                }
+            ],
+            "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
+            "homepage": "https://commonmark.thephpleague.com",
+            "keywords": [
+                "commonmark",
+                "flavored",
+                "gfm",
+                "github",
+                "github-flavored",
+                "markdown",
+                "md",
+                "parser"
+            ],
+            "support": {
+                "docs": "https://commonmark.thephpleague.com/",
+                "forum": "https://github.com/thephpleague/commonmark/discussions",
+                "issues": "https://github.com/thephpleague/commonmark/issues",
+                "rss": "https://github.com/thephpleague/commonmark/releases.atom",
+                "source": "https://github.com/thephpleague/commonmark"
+            },
+            "funding": [
+                {
+                    "url": "https://www.colinodell.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://www.paypal.me/colinpodell/10.00",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/colinodell",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-08-30T16:55:00+00:00"
+        },
+        {
+            "name": "league/config",
+            "version": "v1.2.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/thephpleague/config.git",
+                "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
+                "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
+                "shasum": ""
+            },
+            "require": {
+                "dflydev/dot-access-data": "^3.0.1",
+                "nette/schema": "^1.2",
+                "php": "^7.4 || ^8.0"
+            },
+            "require-dev": {
+                "phpstan/phpstan": "^1.8.2",
+                "phpunit/phpunit": "^9.5.5",
+                "scrutinizer/ocular": "^1.8.1",
+                "unleashedtech/php-coding-standard": "^3.1",
+                "vimeo/psalm": "^4.7.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.2-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "League\\Config\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Colin O'Dell",
+                    "email": "colinodell@gmail.com",
+                    "homepage": "https://www.colinodell.com",
+                    "role": "Lead Developer"
+                }
+            ],
+            "description": "Define configuration arrays with strict schemas and access values with dot notation",
+            "homepage": "https://config.thephpleague.com",
+            "keywords": [
+                "array",
+                "config",
+                "configuration",
+                "dot",
+                "dot-access",
+                "nested",
+                "schema"
+            ],
+            "support": {
+                "docs": "https://config.thephpleague.com/",
+                "issues": "https://github.com/thephpleague/config/issues",
+                "rss": "https://github.com/thephpleague/config/releases.atom",
+                "source": "https://github.com/thephpleague/config"
+            },
+            "funding": [
+                {
+                    "url": "https://www.colinodell.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://www.paypal.me/colinpodell/10.00",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/colinodell",
+                    "type": "github"
+                }
+            ],
+            "time": "2022-12-11T20:36:23+00:00"
+        },
+        {
+            "name": "league/flysystem",
+            "version": "3.17.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/thephpleague/flysystem.git",
+                "reference": "bd4c9b26849d82364119c68429541f1631fba94b"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/bd4c9b26849d82364119c68429541f1631fba94b",
+                "reference": "bd4c9b26849d82364119c68429541f1631fba94b",
+                "shasum": ""
+            },
+            "require": {
+                "league/flysystem-local": "^3.0.0",
+                "league/mime-type-detection": "^1.0.0",
+                "php": "^8.0.2"
+            },
+            "conflict": {
+                "async-aws/core": "<1.19.0",
+                "async-aws/s3": "<1.14.0",
+                "aws/aws-sdk-php": "3.209.31 || 3.210.0",
+                "guzzlehttp/guzzle": "<7.0",
+                "guzzlehttp/ringphp": "<1.1.1",
+                "phpseclib/phpseclib": "3.0.15",
+                "symfony/http-client": "<5.2"
+            },
+            "require-dev": {
+                "async-aws/s3": "^1.5 || ^2.0",
+                "async-aws/simple-s3": "^1.1 || ^2.0",
+                "aws/aws-sdk-php": "^3.220.0",
+                "composer/semver": "^3.0",
+                "ext-fileinfo": "*",
+                "ext-ftp": "*",
+                "ext-zip": "*",
+                "friendsofphp/php-cs-fixer": "^3.5",
+                "google/cloud-storage": "^1.23",
+                "microsoft/azure-storage-blob": "^1.1",
+                "phpseclib/phpseclib": "^3.0.14",
+                "phpstan/phpstan": "^0.12.26",
+                "phpunit/phpunit": "^9.5.11|^10.0",
+                "sabre/dav": "^4.3.1"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "League\\Flysystem\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Frank de Jonge",
+                    "email": "info@frankdejonge.nl"
+                }
+            ],
+            "description": "File storage abstraction for PHP",
+            "keywords": [
+                "WebDAV",
+                "aws",
+                "cloud",
+                "file",
+                "files",
+                "filesystem",
+                "filesystems",
+                "ftp",
+                "s3",
+                "sftp",
+                "storage"
+            ],
+            "support": {
+                "issues": "https://github.com/thephpleague/flysystem/issues",
+                "source": "https://github.com/thephpleague/flysystem/tree/3.17.0"
+            },
+            "funding": [
+                {
+                    "url": "https://ecologi.com/frankdejonge",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/frankdejonge",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-10-05T20:15:05+00:00"
+        },
+        {
+            "name": "league/flysystem-local",
+            "version": "3.16.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/thephpleague/flysystem-local.git",
+                "reference": "ec7383f25642e6fd4bb0c9554fc2311245391781"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/ec7383f25642e6fd4bb0c9554fc2311245391781",
+                "reference": "ec7383f25642e6fd4bb0c9554fc2311245391781",
+                "shasum": ""
+            },
+            "require": {
+                "ext-fileinfo": "*",
+                "league/flysystem": "^3.0.0",
+                "league/mime-type-detection": "^1.0.0",
+                "php": "^8.0.2"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "League\\Flysystem\\Local\\": ""
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Frank de Jonge",
+                    "email": "info@frankdejonge.nl"
+                }
+            ],
+            "description": "Local filesystem adapter for Flysystem.",
+            "keywords": [
+                "Flysystem",
+                "file",
+                "files",
+                "filesystem",
+                "local"
+            ],
+            "support": {
+                "issues": "https://github.com/thephpleague/flysystem-local/issues",
+                "source": "https://github.com/thephpleague/flysystem-local/tree/3.16.0"
+            },
+            "funding": [
+                {
+                    "url": "https://ecologi.com/frankdejonge",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/frankdejonge",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-08-30T10:23:59+00:00"
+        },
+        {
+            "name": "league/mime-type-detection",
+            "version": "1.13.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/thephpleague/mime-type-detection.git",
+                "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
+                "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
+                "shasum": ""
+            },
+            "require": {
+                "ext-fileinfo": "*",
+                "php": "^7.4 || ^8.0"
+            },
+            "require-dev": {
+                "friendsofphp/php-cs-fixer": "^3.2",
+                "phpstan/phpstan": "^0.12.68",
+                "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "League\\MimeTypeDetection\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Frank de Jonge",
+                    "email": "info@frankdejonge.nl"
+                }
+            ],
+            "description": "Mime-type detection for Flysystem",
+            "support": {
+                "issues": "https://github.com/thephpleague/mime-type-detection/issues",
+                "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/frankdejonge",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-08-05T12:09:49+00:00"
+        },
+        {
+            "name": "maatwebsite/excel",
+            "version": "3.1.48",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
+                "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/6d0fe2a1d195960c7af7bf0de760582da02a34b9",
+                "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9",
+                "shasum": ""
+            },
+            "require": {
+                "composer/semver": "^3.3",
+                "ext-json": "*",
+                "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0",
+                "php": "^7.0|^8.0",
+                "phpoffice/phpspreadsheet": "^1.18",
+                "psr/simple-cache": "^1.0|^2.0|^3.0"
+            },
+            "require-dev": {
+                "orchestra/testbench": "^6.0|^7.0|^8.0",
+                "predis/predis": "^1.1"
+            },
+            "type": "library",
+            "extra": {
+                "laravel": {
+                    "providers": [
+                        "Maatwebsite\\Excel\\ExcelServiceProvider"
+                    ],
+                    "aliases": {
+                        "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
+                    }
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Maatwebsite\\Excel\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Patrick Brouwers",
+                    "email": "patrick@spartner.nl"
+                }
+            ],
+            "description": "Supercharged Excel exports and imports in Laravel",
+            "keywords": [
+                "PHPExcel",
+                "batch",
+                "csv",
+                "excel",
+                "export",
+                "import",
+                "laravel",
+                "php",
+                "phpspreadsheet"
+            ],
+            "support": {
+                "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
+                "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.48"
+            },
+            "funding": [
+                {
+                    "url": "https://laravel-excel.com/commercial-support",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/patrickbrouwers",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-02-22T21:01:38+00:00"
+        },
+        {
+            "name": "maennchen/zipstream-php",
+            "version": "3.1.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/maennchen/ZipStream-PHP.git",
+                "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/b8174494eda667f7d13876b4a7bfef0f62a7c0d1",
+                "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1",
+                "shasum": ""
+            },
+            "require": {
+                "ext-mbstring": "*",
+                "ext-zlib": "*",
+                "php-64bit": "^8.1"
+            },
+            "require-dev": {
+                "ext-zip": "*",
+                "friendsofphp/php-cs-fixer": "^3.16",
+                "guzzlehttp/guzzle": "^7.5",
+                "mikey179/vfsstream": "^1.6",
+                "php-coveralls/php-coveralls": "^2.5",
+                "phpunit/phpunit": "^10.0",
+                "vimeo/psalm": "^5.0"
+            },
+            "suggest": {
+                "guzzlehttp/psr7": "^2.4",
+                "psr/http-message": "^2.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "ZipStream\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Paul Duncan",
+                    "email": "pabs@pablotron.org"
+                },
+                {
+                    "name": "Jonatan Männchen",
+                    "email": "jonatan@maennchen.ch"
+                },
+                {
+                    "name": "Jesse Donat",
+                    "email": "donatj@gmail.com"
+                },
+                {
+                    "name": "András Kolesár",
+                    "email": "kolesar@kolesar.hu"
+                }
+            ],
+            "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
+            "keywords": [
+                "stream",
+                "zip"
+            ],
+            "support": {
+                "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
+                "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.0"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/maennchen",
+                    "type": "github"
+                },
+                {
+                    "url": "https://opencollective.com/zipstream",
+                    "type": "open_collective"
+                }
+            ],
+            "time": "2023-06-21T14:59:35+00:00"
+        },
+        {
+            "name": "markbaker/complex",
+            "version": "3.0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/MarkBaker/PHPComplex.git",
+                "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
+                "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.2 || ^8.0"
+            },
+            "require-dev": {
+                "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
+                "phpcompatibility/php-compatibility": "^9.3",
+                "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
+                "squizlabs/php_codesniffer": "^3.7"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Complex\\": "classes/src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Mark Baker",
+                    "email": "mark@lange.demon.co.uk"
+                }
+            ],
+            "description": "PHP Class for working with complex numbers",
+            "homepage": "https://github.com/MarkBaker/PHPComplex",
+            "keywords": [
+                "complex",
+                "mathematics"
+            ],
+            "support": {
+                "issues": "https://github.com/MarkBaker/PHPComplex/issues",
+                "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
+            },
+            "time": "2022-12-06T16:21:08+00:00"
+        },
+        {
+            "name": "markbaker/matrix",
+            "version": "3.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/MarkBaker/PHPMatrix.git",
+                "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
+                "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1 || ^8.0"
+            },
+            "require-dev": {
+                "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
+                "phpcompatibility/php-compatibility": "^9.3",
+                "phpdocumentor/phpdocumentor": "2.*",
+                "phploc/phploc": "^4.0",
+                "phpmd/phpmd": "2.*",
+                "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
+                "sebastian/phpcpd": "^4.0",
+                "squizlabs/php_codesniffer": "^3.7"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Matrix\\": "classes/src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Mark Baker",
+                    "email": "mark@demon-angel.eu"
+                }
+            ],
+            "description": "PHP Class for working with matrices",
+            "homepage": "https://github.com/MarkBaker/PHPMatrix",
+            "keywords": [
+                "mathematics",
+                "matrix",
+                "vector"
+            ],
+            "support": {
+                "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
+                "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
+            },
+            "time": "2022-12-02T22:17:43+00:00"
+        },
+        {
+            "name": "maxmind-db/reader",
+            "version": "v1.11.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
+                "reference": "b1f3c0699525336d09cc5161a2861268d9f2ae5b"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/b1f3c0699525336d09cc5161a2861268d9f2ae5b",
+                "reference": "b1f3c0699525336d09cc5161a2861268d9f2ae5b",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.2"
+            },
+            "conflict": {
+                "ext-maxminddb": "<1.10.1,>=2.0.0"
+            },
+            "require-dev": {
+                "friendsofphp/php-cs-fixer": "3.*",
+                "php-coveralls/php-coveralls": "^2.1",
+                "phpstan/phpstan": "*",
+                "phpunit/phpcov": ">=6.0.0",
+                "phpunit/phpunit": ">=8.0.0,<10.0.0",
+                "squizlabs/php_codesniffer": "3.*"
+            },
+            "suggest": {
+                "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
+                "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
+                "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "MaxMind\\Db\\": "src/MaxMind/Db"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "Apache-2.0"
+            ],
+            "authors": [
+                {
+                    "name": "Gregory J. Oschwald",
+                    "email": "goschwald@maxmind.com",
+                    "homepage": "https://www.maxmind.com/"
+                }
+            ],
+            "description": "MaxMind DB Reader API",
+            "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
+            "keywords": [
+                "database",
+                "geoip",
+                "geoip2",
+                "geolocation",
+                "maxmind"
+            ],
+            "support": {
+                "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
+                "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.11.0"
+            },
+            "time": "2021-10-18T15:23:10+00:00"
+        },
+        {
+            "name": "maxmind/web-service-common",
+            "version": "v0.9.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/maxmind/web-service-common-php.git",
+                "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
+                "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
+                "shasum": ""
+            },
+            "require": {
+                "composer/ca-bundle": "^1.0.3",
+                "ext-curl": "*",
+                "ext-json": "*",
+                "php": ">=7.2"
+            },
+            "require-dev": {
+                "friendsofphp/php-cs-fixer": "3.*",
+                "phpstan/phpstan": "*",
+                "phpunit/phpunit": "^8.0 || ^9.0",
+                "squizlabs/php_codesniffer": "3.*"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "MaxMind\\Exception\\": "src/Exception",
+                    "MaxMind\\WebService\\": "src/WebService"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "Apache-2.0"
+            ],
+            "authors": [
+                {
+                    "name": "Gregory Oschwald",
+                    "email": "goschwald@maxmind.com"
+                }
+            ],
+            "description": "Internal MaxMind Web Service API",
+            "homepage": "https://github.com/maxmind/web-service-common-php",
+            "support": {
+                "issues": "https://github.com/maxmind/web-service-common-php/issues",
+                "source": "https://github.com/maxmind/web-service-common-php/tree/v0.9.0"
+            },
+            "time": "2022-03-28T17:43:20+00:00"
+        },
+        {
+            "name": "monolog/monolog",
+            "version": "2.9.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/Seldaek/monolog.git",
+                "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
+                "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.2",
+                "psr/log": "^1.0.1 || ^2.0 || ^3.0"
+            },
+            "provide": {
+                "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
+            },
+            "require-dev": {
+                "aws/aws-sdk-php": "^2.4.9 || ^3.0",
+                "doctrine/couchdb": "~1.0@dev",
+                "elasticsearch/elasticsearch": "^7 || ^8",
+                "ext-json": "*",
+                "graylog2/gelf-php": "^1.4.2 || ^2@dev",
+                "guzzlehttp/guzzle": "^7.4",
+                "guzzlehttp/psr7": "^2.2",
+                "mongodb/mongodb": "^1.8",
+                "php-amqplib/php-amqplib": "~2.4 || ^3",
+                "phpspec/prophecy": "^1.15",
+                "phpstan/phpstan": "^0.12.91",
+                "phpunit/phpunit": "^8.5.14",
+                "predis/predis": "^1.1 || ^2.0",
+                "rollbar/rollbar": "^1.3 || ^2 || ^3",
+                "ruflin/elastica": "^7",
+                "swiftmailer/swiftmailer": "^5.3|^6.0",
+                "symfony/mailer": "^5.4 || ^6",
+                "symfony/mime": "^5.4 || ^6"
+            },
+            "suggest": {
+                "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
+                "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
+                "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
+                "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
+                "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
+                "ext-mbstring": "Allow to work properly with unicode symbols",
+                "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
+                "ext-openssl": "Required to send log messages using SSL",
+                "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
+                "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
+                "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
+                "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
+                "rollbar/rollbar": "Allow sending log messages to Rollbar",
+                "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "2.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Monolog\\": "src/Monolog"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Jordi Boggiano",
+                    "email": "j.boggiano@seld.be",
+                    "homepage": "https://seld.be"
+                }
+            ],
+            "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
+            "homepage": "https://github.com/Seldaek/monolog",
+            "keywords": [
+                "log",
+                "logging",
+                "psr-3"
+            ],
+            "support": {
+                "issues": "https://github.com/Seldaek/monolog/issues",
+                "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/Seldaek",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-02-06T13:44:46+00:00"
+        },
+        {
+            "name": "mtdowling/jmespath.php",
+            "version": "2.7.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/jmespath/jmespath.php.git",
+                "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
+                "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.2.5 || ^8.0",
+                "symfony/polyfill-mbstring": "^1.17"
+            },
+            "require-dev": {
+                "composer/xdebug-handler": "^3.0.3",
+                "phpunit/phpunit": "^8.5.33"
+            },
+            "bin": [
+                "bin/jp.php"
+            ],
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.7-dev"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/JmesPath.php"
+                ],
+                "psr-4": {
+                    "JmesPath\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Graham Campbell",
+                    "email": "hello@gjcampbell.co.uk",
+                    "homepage": "https://github.com/GrahamCampbell"
+                },
+                {
+                    "name": "Michael Dowling",
+                    "email": "mtdowling@gmail.com",
+                    "homepage": "https://github.com/mtdowling"
+                }
+            ],
+            "description": "Declaratively specify how to extract elements from a JSON document",
+            "keywords": [
+                "json",
+                "jsonpath"
+            ],
+            "support": {
+                "issues": "https://github.com/jmespath/jmespath.php/issues",
+                "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
+            },
+            "time": "2023-08-25T10:54:48+00:00"
+        },
+        {
+            "name": "namshi/jose",
+            "version": "7.2.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/namshi/jose.git",
+                "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
+                "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
+                "shasum": ""
+            },
+            "require": {
+                "ext-date": "*",
+                "ext-hash": "*",
+                "ext-json": "*",
+                "ext-pcre": "*",
+                "ext-spl": "*",
+                "php": ">=5.5",
+                "symfony/polyfill-php56": "^1.0"
+            },
+            "require-dev": {
+                "phpseclib/phpseclib": "^2.0",
+                "phpunit/phpunit": "^4.5|^5.0",
+                "satooshi/php-coveralls": "^1.0"
+            },
+            "suggest": {
+                "ext-openssl": "Allows to use OpenSSL as crypto engine.",
+                "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Namshi\\JOSE\\": "src/Namshi/JOSE/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Alessandro Nadalin",
+                    "email": "alessandro.nadalin@gmail.com"
+                },
+                {
+                    "name": "Alessandro Cinelli (cirpo)",
+                    "email": "alessandro.cinelli@gmail.com"
+                }
+            ],
+            "description": "JSON Object Signing and Encryption library for PHP.",
+            "keywords": [
+                "JSON Web Signature",
+                "JSON Web Token",
+                "JWS",
+                "json",
+                "jwt",
+                "token"
+            ],
+            "support": {
+                "issues": "https://github.com/namshi/jose/issues",
+                "source": "https://github.com/namshi/jose/tree/master"
+            },
+            "time": "2016-12-05T07:27:31+00:00"
+        },
+        {
+            "name": "nesbot/carbon",
+            "version": "2.71.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/briannesbitt/Carbon.git",
+                "reference": "98276233188583f2ff845a0f992a235472d9466a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/98276233188583f2ff845a0f992a235472d9466a",
+                "reference": "98276233188583f2ff845a0f992a235472d9466a",
+                "shasum": ""
+            },
+            "require": {
+                "ext-json": "*",
+                "php": "^7.1.8 || ^8.0",
+                "psr/clock": "^1.0",
+                "symfony/polyfill-mbstring": "^1.0",
+                "symfony/polyfill-php80": "^1.16",
+                "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
+            },
+            "provide": {
+                "psr/clock-implementation": "1.0"
+            },
+            "require-dev": {
+                "doctrine/dbal": "^2.0 || ^3.1.4",
+                "doctrine/orm": "^2.7",
+                "friendsofphp/php-cs-fixer": "^3.0",
+                "kylekatarnls/multi-tester": "^2.0",
+                "ondrejmirtes/better-reflection": "*",
+                "phpmd/phpmd": "^2.9",
+                "phpstan/extension-installer": "^1.0",
+                "phpstan/phpstan": "^0.12.99 || ^1.7.14",
+                "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
+                "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
+                "squizlabs/php_codesniffer": "^3.4"
+            },
+            "bin": [
+                "bin/carbon"
+            ],
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-3.x": "3.x-dev",
+                    "dev-master": "2.x-dev"
+                },
+                "laravel": {
+                    "providers": [
+                        "Carbon\\Laravel\\ServiceProvider"
+                    ]
+                },
+                "phpstan": {
+                    "includes": [
+                        "extension.neon"
+                    ]
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Carbon\\": "src/Carbon/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Brian Nesbitt",
+                    "email": "brian@nesbot.com",
+                    "homepage": "https://markido.com"
+                },
+                {
+                    "name": "kylekatarnls",
+                    "homepage": "https://github.com/kylekatarnls"
+                }
+            ],
+            "description": "An API extension for DateTime that supports 281 different languages.",
+            "homepage": "https://carbon.nesbot.com",
+            "keywords": [
+                "date",
+                "datetime",
+                "time"
+            ],
+            "support": {
+                "docs": "https://carbon.nesbot.com/docs",
+                "issues": "https://github.com/briannesbitt/Carbon/issues",
+                "source": "https://github.com/briannesbitt/Carbon"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sponsors/kylekatarnls",
+                    "type": "github"
+                },
+                {
+                    "url": "https://opencollective.com/Carbon#sponsor",
+                    "type": "opencollective"
+                },
+                {
+                    "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-09-25T11:31:05+00:00"
+        },
+        {
+            "name": "nette/schema",
+            "version": "v1.2.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/nette/schema.git",
+                "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
+                "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
+                "shasum": ""
+            },
+            "require": {
+                "nette/utils": "^2.5.7 || ^3.1.5 ||  ^4.0",
+                "php": "7.1 - 8.3"
+            },
+            "require-dev": {
+                "nette/tester": "^2.3 || ^2.4",
+                "phpstan/phpstan-nette": "^1.0",
+                "tracy/tracy": "^2.7"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.2-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause",
+                "GPL-2.0-only",
+                "GPL-3.0-only"
+            ],
+            "authors": [
+                {
+                    "name": "David Grudl",
+                    "homepage": "https://davidgrudl.com"
+                },
+                {
+                    "name": "Nette Community",
+                    "homepage": "https://nette.org/contributors"
+                }
+            ],
+            "description": "📐 Nette Schema: validating data structures against a given Schema.",
+            "homepage": "https://nette.org",
+            "keywords": [
+                "config",
+                "nette"
+            ],
+            "support": {
+                "issues": "https://github.com/nette/schema/issues",
+                "source": "https://github.com/nette/schema/tree/v1.2.5"
+            },
+            "time": "2023-10-05T20:37:59+00:00"
+        },
+        {
+            "name": "nette/utils",
+            "version": "v4.0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/nette/utils.git",
+                "reference": "cead6637226456b35e1175cc53797dd585d85545"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/nette/utils/zipball/cead6637226456b35e1175cc53797dd585d85545",
+                "reference": "cead6637226456b35e1175cc53797dd585d85545",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.0 <8.4"
+            },
+            "conflict": {
+                "nette/finder": "<3",
+                "nette/schema": "<1.2.2"
+            },
+            "require-dev": {
+                "jetbrains/phpstorm-attributes": "dev-master",
+                "nette/tester": "^2.5",
+                "phpstan/phpstan": "^1.0",
+                "tracy/tracy": "^2.9"
+            },
+            "suggest": {
+                "ext-gd": "to use Image",
+                "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
+                "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
+                "ext-json": "to use Nette\\Utils\\Json",
+                "ext-mbstring": "to use Strings::lower() etc...",
+                "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause",
+                "GPL-2.0-only",
+                "GPL-3.0-only"
+            ],
+            "authors": [
+                {
+                    "name": "David Grudl",
+                    "homepage": "https://davidgrudl.com"
+                },
+                {
+                    "name": "Nette Community",
+                    "homepage": "https://nette.org/contributors"
+                }
+            ],
+            "description": "🛠  Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
+            "homepage": "https://nette.org",
+            "keywords": [
+                "array",
+                "core",
+                "datetime",
+                "images",
+                "json",
+                "nette",
+                "paginator",
+                "password",
+                "slugify",
+                "string",
+                "unicode",
+                "utf-8",
+                "utility",
+                "validation"
+            ],
+            "support": {
+                "issues": "https://github.com/nette/utils/issues",
+                "source": "https://github.com/nette/utils/tree/v4.0.2"
+            },
+            "time": "2023-09-19T11:58:07+00:00"
+        },
+        {
+            "name": "nikic/php-parser",
+            "version": "v4.17.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/nikic/PHP-Parser.git",
+                "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
+                "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
+                "shasum": ""
+            },
+            "require": {
+                "ext-tokenizer": "*",
+                "php": ">=7.0"
+            },
+            "require-dev": {
+                "ircmaxell/php-yacc": "^0.0.7",
+                "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
+            },
+            "bin": [
+                "bin/php-parse"
+            ],
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.9-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "PhpParser\\": "lib/PhpParser"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Nikita Popov"
+                }
+            ],
+            "description": "A PHP parser written in PHP",
+            "keywords": [
+                "parser",
+                "php"
+            ],
+            "support": {
+                "issues": "https://github.com/nikic/PHP-Parser/issues",
+                "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
+            },
+            "time": "2023-08-13T19:53:39+00:00"
+        },
+        {
+            "name": "nunomaduro/termwind",
+            "version": "v1.15.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/nunomaduro/termwind.git",
+                "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
+                "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
+                "shasum": ""
+            },
+            "require": {
+                "ext-mbstring": "*",
+                "php": "^8.0",
+                "symfony/console": "^5.3.0|^6.0.0"
+            },
+            "require-dev": {
+                "ergebnis/phpstan-rules": "^1.0.",
+                "illuminate/console": "^8.0|^9.0",
+                "illuminate/support": "^8.0|^9.0",
+                "laravel/pint": "^1.0.0",
+                "pestphp/pest": "^1.21.0",
+                "pestphp/pest-plugin-mock": "^1.0",
+                "phpstan/phpstan": "^1.4.6",
+                "phpstan/phpstan-strict-rules": "^1.1.0",
+                "symfony/var-dumper": "^5.2.7|^6.0.0",
+                "thecodingmachine/phpstan-strict-rules": "^1.0.0"
+            },
+            "type": "library",
+            "extra": {
+                "laravel": {
+                    "providers": [
+                        "Termwind\\Laravel\\TermwindServiceProvider"
+                    ]
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/Functions.php"
+                ],
+                "psr-4": {
+                    "Termwind\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nuno Maduro",
+                    "email": "enunomaduro@gmail.com"
+                }
+            ],
+            "description": "Its like Tailwind CSS, but for the console.",
+            "keywords": [
+                "cli",
+                "console",
+                "css",
+                "package",
+                "php",
+                "style"
+            ],
+            "support": {
+                "issues": "https://github.com/nunomaduro/termwind/issues",
+                "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
+            },
+            "funding": [
+                {
+                    "url": "https://www.paypal.com/paypalme/enunomaduro",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/nunomaduro",
+                    "type": "github"
+                },
+                {
+                    "url": "https://github.com/xiCO2k",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-02-08T01:06:31+00:00"
+        },
+        {
+            "name": "php-open-source-saver/jwt-auth",
+            "version": "2.1.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/PHP-Open-Source-Saver/jwt-auth.git",
+                "reference": "5b4e3eec31c8da03d58b64c4e28c469b334bec4c"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/PHP-Open-Source-Saver/jwt-auth/zipball/5b4e3eec31c8da03d58b64c4e28c469b334bec4c",
+                "reference": "5b4e3eec31c8da03d58b64c4e28c469b334bec4c",
+                "shasum": ""
+            },
+            "require": {
+                "ext-json": "*",
+                "illuminate/auth": "^6|^7|^8.67|^9|^10",
+                "illuminate/contracts": "^6|^7|^8.67|^9|^10",
+                "illuminate/http": "^6|^7|^8.67|^9|^10",
+                "illuminate/support": "^6|^7|^8.67|^9|^10",
+                "lcobucci/jwt": "^4.0",
+                "namshi/jose": "^7.0",
+                "nesbot/carbon": "^1.0|^2.0",
+                "php": "^7.4|^8.0"
+            },
+            "require-dev": {
+                "friendsofphp/php-cs-fixer": "^3",
+                "illuminate/console": "^6|^7|^8.67|^9|^10",
+                "illuminate/routing": "^6|^7|^8.67|^9|^10",
+                "mockery/mockery": "^1.4.4",
+                "orchestra/testbench": "^4.18|^5.8|^6.3|^7|^8",
+                "phpstan/phpstan": "^1",
+                "phpunit/phpunit": "^8.5|^9.4|^10",
+                "rector/rector": "^0.12.4",
+                "vlucas/phpdotenv": "^5.2.0",
+                "yoast/phpunit-polyfills": "^1.0.2"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-develop": "2.0-dev"
+                },
+                "laravel": {
+                    "aliases": {
+                        "JWTAuth": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTAuth",
+                        "JWTFactory": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTFactory"
+                    },
+                    "providers": [
+                        "PHPOpenSourceSaver\\JWTAuth\\Providers\\LaravelServiceProvider"
+                    ]
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "PHPOpenSourceSaver\\JWTAuth\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Sean Tymon",
+                    "email": "tymon148@gmail.com",
+                    "homepage": "https://tymon.xyz",
+                    "role": "Forked package creator | Developer"
+                },
+                {
+                    "name": "Eric Schricker",
+                    "email": "eric.schricker@adiutabyte.de",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Fabio William Conceição",
+                    "email": "messhias@gmail.com",
+                    "role": "Developer"
+                }
+            ],
+            "description": "JSON Web Token Authentication for Laravel and Lumen",
+            "homepage": "https://github.com/PHP-Open-Source-Saver/jwt-auth",
+            "keywords": [
+                "Authentication",
+                "JSON Web Token",
+                "auth",
+                "jwt",
+                "laravel"
+            ],
+            "support": {
+                "issues": "https://github.com/PHP-Open-Source-Saver/jwt-auth/issues",
+                "source": "https://github.com/PHP-Open-Source-Saver/jwt-auth"
+            },
+            "time": "2023-02-17T11:42:33+00:00"
+        },
+        {
+            "name": "phpoffice/phpspreadsheet",
+            "version": "1.29.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
+                "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
+                "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
+                "shasum": ""
+            },
+            "require": {
+                "ext-ctype": "*",
+                "ext-dom": "*",
+                "ext-fileinfo": "*",
+                "ext-gd": "*",
+                "ext-iconv": "*",
+                "ext-libxml": "*",
+                "ext-mbstring": "*",
+                "ext-simplexml": "*",
+                "ext-xml": "*",
+                "ext-xmlreader": "*",
+                "ext-xmlwriter": "*",
+                "ext-zip": "*",
+                "ext-zlib": "*",
+                "ezyang/htmlpurifier": "^4.15",
+                "maennchen/zipstream-php": "^2.1 || ^3.0",
+                "markbaker/complex": "^3.0",
+                "markbaker/matrix": "^3.0",
+                "php": "^7.4 || ^8.0",
+                "psr/http-client": "^1.0",
+                "psr/http-factory": "^1.0",
+                "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
+            },
+            "require-dev": {
+                "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
+                "dompdf/dompdf": "^1.0 || ^2.0",
+                "friendsofphp/php-cs-fixer": "^3.2",
+                "mitoteam/jpgraph": "^10.3",
+                "mpdf/mpdf": "^8.1.1",
+                "phpcompatibility/php-compatibility": "^9.3",
+                "phpstan/phpstan": "^1.1",
+                "phpstan/phpstan-phpunit": "^1.0",
+                "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
+                "squizlabs/php_codesniffer": "^3.7",
+                "tecnickcom/tcpdf": "^6.5"
+            },
+            "suggest": {
+                "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
+                "ext-intl": "PHP Internationalization Functions",
+                "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
+                "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
+                "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Maarten Balliauw",
+                    "homepage": "https://blog.maartenballiauw.be"
+                },
+                {
+                    "name": "Mark Baker",
+                    "homepage": "https://markbakeruk.net"
+                },
+                {
+                    "name": "Franck Lefevre",
+                    "homepage": "https://rootslabs.net"
+                },
+                {
+                    "name": "Erik Tilt"
+                },
+                {
+                    "name": "Adrien Crivelli"
+                }
+            ],
+            "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
+            "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
+            "keywords": [
+                "OpenXML",
+                "excel",
+                "gnumeric",
+                "ods",
+                "php",
+                "spreadsheet",
+                "xls",
+                "xlsx"
+            ],
+            "support": {
+                "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
+                "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
+            },
+            "time": "2023-06-14T22:48:31+00:00"
+        },
+        {
+            "name": "phpoption/phpoption",
+            "version": "1.9.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/schmittjoh/php-option.git",
+                "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
+                "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.2.5 || ^8.0"
+            },
+            "require-dev": {
+                "bamarni/composer-bin-plugin": "^1.8.2",
+                "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
+            },
+            "type": "library",
+            "extra": {
+                "bamarni-bin": {
+                    "bin-links": true,
+                    "forward-command": true
+                },
+                "branch-alias": {
+                    "dev-master": "1.9-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "PhpOption\\": "src/PhpOption/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "Apache-2.0"
+            ],
+            "authors": [
+                {
+                    "name": "Johannes M. Schmitt",
+                    "email": "schmittjoh@gmail.com",
+                    "homepage": "https://github.com/schmittjoh"
+                },
+                {
+                    "name": "Graham Campbell",
+                    "email": "hello@gjcampbell.co.uk",
+                    "homepage": "https://github.com/GrahamCampbell"
+                }
+            ],
+            "description": "Option Type for PHP",
+            "keywords": [
+                "language",
+                "option",
+                "php",
+                "type"
+            ],
+            "support": {
+                "issues": "https://github.com/schmittjoh/php-option/issues",
+                "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/GrahamCampbell",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-02-25T19:38:58+00:00"
+        },
+        {
+            "name": "psr/clock",
+            "version": "1.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/clock.git",
+                "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
+                "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.0 || ^8.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Psr\\Clock\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "https://www.php-fig.org/"
+                }
+            ],
+            "description": "Common interface for reading the clock.",
+            "homepage": "https://github.com/php-fig/clock",
+            "keywords": [
+                "clock",
+                "now",
+                "psr",
+                "psr-20",
+                "time"
+            ],
+            "support": {
+                "issues": "https://github.com/php-fig/clock/issues",
+                "source": "https://github.com/php-fig/clock/tree/1.0.0"
+            },
+            "time": "2022-11-25T14:36:26+00:00"
+        },
+        {
+            "name": "psr/container",
+            "version": "2.0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/container.git",
+                "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
+                "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.4.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Psr\\Container\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "https://www.php-fig.org/"
+                }
+            ],
+            "description": "Common Container Interface (PHP FIG PSR-11)",
+            "homepage": "https://github.com/php-fig/container",
+            "keywords": [
+                "PSR-11",
+                "container",
+                "container-interface",
+                "container-interop",
+                "psr"
+            ],
+            "support": {
+                "issues": "https://github.com/php-fig/container/issues",
+                "source": "https://github.com/php-fig/container/tree/2.0.2"
+            },
+            "time": "2021-11-05T16:47:00+00:00"
+        },
+        {
+            "name": "psr/event-dispatcher",
+            "version": "1.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/event-dispatcher.git",
+                "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
+                "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.2.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Psr\\EventDispatcher\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "http://www.php-fig.org/"
+                }
+            ],
+            "description": "Standard interfaces for event handling.",
+            "keywords": [
+                "events",
+                "psr",
+                "psr-14"
+            ],
+            "support": {
+                "issues": "https://github.com/php-fig/event-dispatcher/issues",
+                "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
+            },
+            "time": "2019-01-08T18:20:26+00:00"
+        },
+        {
+            "name": "psr/http-client",
+            "version": "1.0.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/http-client.git",
+                "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
+                "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.0 || ^8.0",
+                "psr/http-message": "^1.0 || ^2.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Psr\\Http\\Client\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "https://www.php-fig.org/"
+                }
+            ],
+            "description": "Common interface for HTTP clients",
+            "homepage": "https://github.com/php-fig/http-client",
+            "keywords": [
+                "http",
+                "http-client",
+                "psr",
+                "psr-18"
+            ],
+            "support": {
+                "source": "https://github.com/php-fig/http-client"
+            },
+            "time": "2023-09-23T14:17:50+00:00"
+        },
+        {
+            "name": "psr/http-factory",
+            "version": "1.0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/http-factory.git",
+                "reference": "e616d01114759c4c489f93b099585439f795fe35"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
+                "reference": "e616d01114759c4c489f93b099585439f795fe35",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.0.0",
+                "psr/http-message": "^1.0 || ^2.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Psr\\Http\\Message\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "https://www.php-fig.org/"
+                }
+            ],
+            "description": "Common interfaces for PSR-7 HTTP message factories",
+            "keywords": [
+                "factory",
+                "http",
+                "message",
+                "psr",
+                "psr-17",
+                "psr-7",
+                "request",
+                "response"
+            ],
+            "support": {
+                "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
+            },
+            "time": "2023-04-10T20:10:41+00:00"
+        },
+        {
+            "name": "psr/http-message",
+            "version": "2.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/http-message.git",
+                "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+                "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.2 || ^8.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Psr\\Http\\Message\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "https://www.php-fig.org/"
+                }
+            ],
+            "description": "Common interface for HTTP messages",
+            "homepage": "https://github.com/php-fig/http-message",
+            "keywords": [
+                "http",
+                "http-message",
+                "psr",
+                "psr-7",
+                "request",
+                "response"
+            ],
+            "support": {
+                "source": "https://github.com/php-fig/http-message/tree/2.0"
+            },
+            "time": "2023-04-04T09:54:51+00:00"
+        },
+        {
+            "name": "psr/log",
+            "version": "3.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/log.git",
+                "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
+                "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.0.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Psr\\Log\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "https://www.php-fig.org/"
+                }
+            ],
+            "description": "Common interface for logging libraries",
+            "homepage": "https://github.com/php-fig/log",
+            "keywords": [
+                "log",
+                "psr",
+                "psr-3"
+            ],
+            "support": {
+                "source": "https://github.com/php-fig/log/tree/3.0.0"
+            },
+            "time": "2021-07-14T16:46:02+00:00"
+        },
+        {
+            "name": "psr/simple-cache",
+            "version": "3.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/simple-cache.git",
+                "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
+                "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.0.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Psr\\SimpleCache\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "https://www.php-fig.org/"
+                }
+            ],
+            "description": "Common interfaces for simple caching",
+            "keywords": [
+                "cache",
+                "caching",
+                "psr",
+                "psr-16",
+                "simple-cache"
+            ],
+            "support": {
+                "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
+            },
+            "time": "2021-10-29T13:26:27+00:00"
+        },
+        {
+            "name": "psy/psysh",
+            "version": "v0.11.21",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/bobthecow/psysh.git",
+                "reference": "bcb22101107f3bf770523b65630c9d547f60c540"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/bobthecow/psysh/zipball/bcb22101107f3bf770523b65630c9d547f60c540",
+                "reference": "bcb22101107f3bf770523b65630c9d547f60c540",
+                "shasum": ""
+            },
+            "require": {
+                "ext-json": "*",
+                "ext-tokenizer": "*",
+                "nikic/php-parser": "^4.0 || ^3.1",
+                "php": "^8.0 || ^7.0.8",
+                "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
+                "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
+            },
+            "conflict": {
+                "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
+            },
+            "require-dev": {
+                "bamarni/composer-bin-plugin": "^1.2"
+            },
+            "suggest": {
+                "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
+                "ext-pdo-sqlite": "The doc command requires SQLite to work.",
+                "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
+                "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
+            },
+            "bin": [
+                "bin/psysh"
+            ],
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "0.11.x-dev"
+                },
+                "bamarni-bin": {
+                    "bin-links": false,
+                    "forward-command": false
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/functions.php"
+                ],
+                "psr-4": {
+                    "Psy\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Justin Hileman",
+                    "email": "justin@justinhileman.info",
+                    "homepage": "http://justinhileman.com"
+                }
+            ],
+            "description": "An interactive shell for modern PHP.",
+            "homepage": "http://psysh.org",
+            "keywords": [
+                "REPL",
+                "console",
+                "interactive",
+                "shell"
+            ],
+            "support": {
+                "issues": "https://github.com/bobthecow/psysh/issues",
+                "source": "https://github.com/bobthecow/psysh/tree/v0.11.21"
+            },
+            "time": "2023-09-17T21:15:54+00:00"
+        },
+        {
+            "name": "ralouphie/getallheaders",
+            "version": "3.0.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/ralouphie/getallheaders.git",
+                "reference": "120b605dfeb996808c31b6477290a714d356e822"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
+                "reference": "120b605dfeb996808c31b6477290a714d356e822",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.6"
+            },
+            "require-dev": {
+                "php-coveralls/php-coveralls": "^2.1",
+                "phpunit/phpunit": "^5 || ^6.5"
+            },
+            "type": "library",
+            "autoload": {
+                "files": [
+                    "src/getallheaders.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Ralph Khattar",
+                    "email": "ralph.khattar@gmail.com"
+                }
+            ],
+            "description": "A polyfill for getallheaders.",
+            "support": {
+                "issues": "https://github.com/ralouphie/getallheaders/issues",
+                "source": "https://github.com/ralouphie/getallheaders/tree/develop"
+            },
+            "time": "2019-03-08T08:55:37+00:00"
+        },
+        {
+            "name": "ramsey/collection",
+            "version": "2.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/ramsey/collection.git",
+                "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
+                "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^8.1"
+            },
+            "require-dev": {
+                "captainhook/plugin-composer": "^5.3",
+                "ergebnis/composer-normalize": "^2.28.3",
+                "fakerphp/faker": "^1.21",
+                "hamcrest/hamcrest-php": "^2.0",
+                "jangregor/phpstan-prophecy": "^1.0",
+                "mockery/mockery": "^1.5",
+                "php-parallel-lint/php-console-highlighter": "^1.0",
+                "php-parallel-lint/php-parallel-lint": "^1.3",
+                "phpcsstandards/phpcsutils": "^1.0.0-rc1",
+                "phpspec/prophecy-phpunit": "^2.0",
+                "phpstan/extension-installer": "^1.2",
+                "phpstan/phpstan": "^1.9",
+                "phpstan/phpstan-mockery": "^1.1",
+                "phpstan/phpstan-phpunit": "^1.3",
+                "phpunit/phpunit": "^9.5",
+                "psalm/plugin-mockery": "^1.1",
+                "psalm/plugin-phpunit": "^0.18.4",
+                "ramsey/coding-standard": "^2.0.3",
+                "ramsey/conventional-commits": "^1.3",
+                "vimeo/psalm": "^5.4"
+            },
+            "type": "library",
+            "extra": {
+                "captainhook": {
+                    "force-install": true
+                },
+                "ramsey/conventional-commits": {
+                    "configFile": "conventional-commits.json"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Ramsey\\Collection\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Ben Ramsey",
+                    "email": "ben@benramsey.com",
+                    "homepage": "https://benramsey.com"
+                }
+            ],
+            "description": "A PHP library for representing and manipulating collections.",
+            "keywords": [
+                "array",
+                "collection",
+                "hash",
+                "map",
+                "queue",
+                "set"
+            ],
+            "support": {
+                "issues": "https://github.com/ramsey/collection/issues",
+                "source": "https://github.com/ramsey/collection/tree/2.0.0"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/ramsey",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2022-12-31T21:50:55+00:00"
+        },
+        {
+            "name": "ramsey/uuid",
+            "version": "4.7.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/ramsey/uuid.git",
+                "reference": "60a4c63ab724854332900504274f6150ff26d286"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
+                "reference": "60a4c63ab724854332900504274f6150ff26d286",
+                "shasum": ""
+            },
+            "require": {
+                "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
+                "ext-json": "*",
+                "php": "^8.0",
+                "ramsey/collection": "^1.2 || ^2.0"
+            },
+            "replace": {
+                "rhumsaa/uuid": "self.version"
+            },
+            "require-dev": {
+                "captainhook/captainhook": "^5.10",
+                "captainhook/plugin-composer": "^5.3",
+                "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
+                "doctrine/annotations": "^1.8",
+                "ergebnis/composer-normalize": "^2.15",
+                "mockery/mockery": "^1.3",
+                "paragonie/random-lib": "^2",
+                "php-mock/php-mock": "^2.2",
+                "php-mock/php-mock-mockery": "^1.3",
+                "php-parallel-lint/php-parallel-lint": "^1.1",
+                "phpbench/phpbench": "^1.0",
+                "phpstan/extension-installer": "^1.1",
+                "phpstan/phpstan": "^1.8",
+                "phpstan/phpstan-mockery": "^1.1",
+                "phpstan/phpstan-phpunit": "^1.1",
+                "phpunit/phpunit": "^8.5 || ^9",
+                "ramsey/composer-repl": "^1.4",
+                "slevomat/coding-standard": "^8.4",
+                "squizlabs/php_codesniffer": "^3.5",
+                "vimeo/psalm": "^4.9"
+            },
+            "suggest": {
+                "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
+                "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
+                "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
+                "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
+                "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
+            },
+            "type": "library",
+            "extra": {
+                "captainhook": {
+                    "force-install": true
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/functions.php"
+                ],
+                "psr-4": {
+                    "Ramsey\\Uuid\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
+            "keywords": [
+                "guid",
+                "identifier",
+                "uuid"
+            ],
+            "support": {
+                "issues": "https://github.com/ramsey/uuid/issues",
+                "source": "https://github.com/ramsey/uuid/tree/4.7.4"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/ramsey",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-04-15T23:01:58+00:00"
+        },
+        {
+            "name": "spatie/google-time-zone",
+            "version": "1.2.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/spatie/google-time-zone.git",
+                "reference": "06d12f98f93e54ab68388c9efb065fcaafd23f8c"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/spatie/google-time-zone/zipball/06d12f98f93e54ab68388c9efb065fcaafd23f8c",
+                "reference": "06d12f98f93e54ab68388c9efb065fcaafd23f8c",
+                "shasum": ""
+            },
+            "require": {
+                "ext-json": "*",
+                "guzzlehttp/guzzle": "^6.5|^7.0",
+                "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
+                "php": "^7.2|^8.0"
+            },
+            "require-dev": {
+                "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
+                "phpunit/phpunit": "^8.0|^9.0"
+            },
+            "type": "library",
+            "extra": {
+                "laravel": {
+                    "providers": [
+                        "Spatie\\GoogleTimeZone\\GoogleTimeZoneServiceProvider"
+                    ],
+                    "aliases": {
+                        "GoogleTimeZone": "Spatie\\GoogleTimeZone\\Facades\\GoogleTimeZone"
+                    }
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Spatie\\GoogleTimeZone\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Ruben Van Assche",
+                    "email": "ruben@spatie.be"
+                }
+            ],
+            "description": "Get time zones for coordinates",
+            "homepage": "https://github.com/spatie/google-time-zone",
+            "keywords": [
+                "coordinate",
+                "laravel",
+                "location",
+                "map",
+                "time zone"
+            ],
+            "support": {
+                "issues": "https://github.com/spatie/google-time-zone/issues",
+                "source": "https://github.com/spatie/google-time-zone/tree/1.2.5"
+            },
+            "funding": [
+                {
+                    "url": "https://spatie.be/open-source/support-us",
+                    "type": "custom"
+                }
+            ],
+            "time": "2023-02-01T18:22:12+00:00"
+        },
+        {
+            "name": "stella-maris/clock",
+            "version": "0.1.7",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/stella-maris-solutions/clock.git",
+                "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
+                "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.0|^8.0",
+                "psr/clock": "^1.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "StellaMaris\\Clock\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Andreas Heigl",
+                    "role": "Maintainer"
+                }
+            ],
+            "description": "A pre-release of the proposed PSR-20 Clock-Interface",
+            "homepage": "https://gitlab.com/stella-maris/clock",
+            "keywords": [
+                "clock",
+                "datetime",
+                "point in time",
+                "psr20"
+            ],
+            "support": {
+                "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
+            },
+            "time": "2022-11-25T16:15:06+00:00"
+        },
+        {
+            "name": "symfony/console",
+            "version": "v6.3.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/console.git",
+                "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/console/zipball/eca495f2ee845130855ddf1cf18460c38966c8b6",
+                "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "symfony/deprecation-contracts": "^2.5|^3",
+                "symfony/polyfill-mbstring": "~1.0",
+                "symfony/service-contracts": "^2.5|^3",
+                "symfony/string": "^5.4|^6.0"
+            },
+            "conflict": {
+                "symfony/dependency-injection": "<5.4",
+                "symfony/dotenv": "<5.4",
+                "symfony/event-dispatcher": "<5.4",
+                "symfony/lock": "<5.4",
+                "symfony/process": "<5.4"
+            },
+            "provide": {
+                "psr/log-implementation": "1.0|2.0|3.0"
+            },
+            "require-dev": {
+                "psr/log": "^1|^2|^3",
+                "symfony/config": "^5.4|^6.0",
+                "symfony/dependency-injection": "^5.4|^6.0",
+                "symfony/event-dispatcher": "^5.4|^6.0",
+                "symfony/lock": "^5.4|^6.0",
+                "symfony/process": "^5.4|^6.0",
+                "symfony/var-dumper": "^5.4|^6.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Console\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Eases the creation of beautiful and testable command line interfaces",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "cli",
+                "command-line",
+                "console",
+                "terminal"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/console/tree/v6.3.4"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-08-16T10:10:12+00:00"
+        },
+        {
+            "name": "symfony/css-selector",
+            "version": "v6.3.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/css-selector.git",
+                "reference": "883d961421ab1709877c10ac99451632a3d6fa57"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/css-selector/zipball/883d961421ab1709877c10ac99451632a3d6fa57",
+                "reference": "883d961421ab1709877c10ac99451632a3d6fa57",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\CssSelector\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Jean-François Simon",
+                    "email": "jeanfrancois.simon@sensiolabs.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Converts CSS selectors to XPath expressions",
+            "homepage": "https://symfony.com",
+            "support": {
+                "source": "https://github.com/symfony/css-selector/tree/v6.3.2"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-07-12T16:00:22+00:00"
+        },
+        {
+            "name": "symfony/deprecation-contracts",
+            "version": "v3.3.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/deprecation-contracts.git",
+                "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
+                "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "3.4-dev"
+                },
+                "thanks": {
+                    "name": "symfony/contracts",
+                    "url": "https://github.com/symfony/contracts"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "function.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "A generic function and convention to trigger deprecation notices",
+            "homepage": "https://symfony.com",
+            "support": {
+                "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-05-23T14:45:45+00:00"
+        },
+        {
+            "name": "symfony/error-handler",
+            "version": "v6.3.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/error-handler.git",
+                "reference": "1f69476b64fb47105c06beef757766c376b548c4"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4",
+                "reference": "1f69476b64fb47105c06beef757766c376b548c4",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "psr/log": "^1|^2|^3",
+                "symfony/var-dumper": "^5.4|^6.0"
+            },
+            "conflict": {
+                "symfony/deprecation-contracts": "<2.5"
+            },
+            "require-dev": {
+                "symfony/deprecation-contracts": "^2.5|^3",
+                "symfony/http-kernel": "^5.4|^6.0",
+                "symfony/serializer": "^5.4|^6.0"
+            },
+            "bin": [
+                "Resources/bin/patch-type-declarations"
+            ],
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\ErrorHandler\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Provides tools to manage errors and ease debugging PHP code",
+            "homepage": "https://symfony.com",
+            "support": {
+                "source": "https://github.com/symfony/error-handler/tree/v6.3.5"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-09-12T06:57:20+00:00"
+        },
+        {
+            "name": "symfony/event-dispatcher",
+            "version": "v6.3.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/event-dispatcher.git",
+                "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
+                "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "symfony/event-dispatcher-contracts": "^2.5|^3"
+            },
+            "conflict": {
+                "symfony/dependency-injection": "<5.4",
+                "symfony/service-contracts": "<2.5"
+            },
+            "provide": {
+                "psr/event-dispatcher-implementation": "1.0",
+                "symfony/event-dispatcher-implementation": "2.0|3.0"
+            },
+            "require-dev": {
+                "psr/log": "^1|^2|^3",
+                "symfony/config": "^5.4|^6.0",
+                "symfony/dependency-injection": "^5.4|^6.0",
+                "symfony/error-handler": "^5.4|^6.0",
+                "symfony/expression-language": "^5.4|^6.0",
+                "symfony/http-foundation": "^5.4|^6.0",
+                "symfony/service-contracts": "^2.5|^3",
+                "symfony/stopwatch": "^5.4|^6.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\EventDispatcher\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
+            "homepage": "https://symfony.com",
+            "support": {
+                "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-07-06T06:56:43+00:00"
+        },
+        {
+            "name": "symfony/event-dispatcher-contracts",
+            "version": "v3.3.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/event-dispatcher-contracts.git",
+                "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
+                "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "psr/event-dispatcher": "^1"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "3.4-dev"
+                },
+                "thanks": {
+                    "name": "symfony/contracts",
+                    "url": "https://github.com/symfony/contracts"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Contracts\\EventDispatcher\\": ""
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Generic abstractions related to dispatching event",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "abstractions",
+                "contracts",
+                "decoupling",
+                "interfaces",
+                "interoperability",
+                "standards"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-05-23T14:45:45+00:00"
+        },
+        {
+            "name": "symfony/finder",
+            "version": "v6.3.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/finder.git",
+                "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4",
+                "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1"
+            },
+            "require-dev": {
+                "symfony/filesystem": "^6.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Finder\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Finds files and directories via an intuitive fluent interface",
+            "homepage": "https://symfony.com",
+            "support": {
+                "source": "https://github.com/symfony/finder/tree/v6.3.5"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-09-26T12:56:25+00:00"
+        },
+        {
+            "name": "symfony/http-foundation",
+            "version": "v6.3.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/http-foundation.git",
+                "reference": "b50f5e281d722cb0f4c296f908bacc3e2b721957"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b50f5e281d722cb0f4c296f908bacc3e2b721957",
+                "reference": "b50f5e281d722cb0f4c296f908bacc3e2b721957",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "symfony/deprecation-contracts": "^2.5|^3",
+                "symfony/polyfill-mbstring": "~1.1",
+                "symfony/polyfill-php83": "^1.27"
+            },
+            "conflict": {
+                "symfony/cache": "<6.2"
+            },
+            "require-dev": {
+                "doctrine/dbal": "^2.13.1|^3.0",
+                "predis/predis": "^1.1|^2.0",
+                "symfony/cache": "^5.4|^6.0",
+                "symfony/dependency-injection": "^5.4|^6.0",
+                "symfony/expression-language": "^5.4|^6.0",
+                "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
+                "symfony/mime": "^5.4|^6.0",
+                "symfony/rate-limiter": "^5.2|^6.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\HttpFoundation\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Defines an object-oriented layer for the HTTP specification",
+            "homepage": "https://symfony.com",
+            "support": {
+                "source": "https://github.com/symfony/http-foundation/tree/v6.3.5"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-09-04T21:33:54+00:00"
+        },
+        {
+            "name": "symfony/http-kernel",
+            "version": "v6.3.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/http-kernel.git",
+                "reference": "9f991a964368bee8d883e8d57ced4fe9fff04dfc"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9f991a964368bee8d883e8d57ced4fe9fff04dfc",
+                "reference": "9f991a964368bee8d883e8d57ced4fe9fff04dfc",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "psr/log": "^1|^2|^3",
+                "symfony/deprecation-contracts": "^2.5|^3",
+                "symfony/error-handler": "^6.3",
+                "symfony/event-dispatcher": "^5.4|^6.0",
+                "symfony/http-foundation": "^6.3.4",
+                "symfony/polyfill-ctype": "^1.8"
+            },
+            "conflict": {
+                "symfony/browser-kit": "<5.4",
+                "symfony/cache": "<5.4",
+                "symfony/config": "<6.1",
+                "symfony/console": "<5.4",
+                "symfony/dependency-injection": "<6.3.4",
+                "symfony/doctrine-bridge": "<5.4",
+                "symfony/form": "<5.4",
+                "symfony/http-client": "<5.4",
+                "symfony/http-client-contracts": "<2.5",
+                "symfony/mailer": "<5.4",
+                "symfony/messenger": "<5.4",
+                "symfony/translation": "<5.4",
+                "symfony/translation-contracts": "<2.5",
+                "symfony/twig-bridge": "<5.4",
+                "symfony/validator": "<5.4",
+                "symfony/var-dumper": "<6.3",
+                "twig/twig": "<2.13"
+            },
+            "provide": {
+                "psr/log-implementation": "1.0|2.0|3.0"
+            },
+            "require-dev": {
+                "psr/cache": "^1.0|^2.0|^3.0",
+                "symfony/browser-kit": "^5.4|^6.0",
+                "symfony/clock": "^6.2",
+                "symfony/config": "^6.1",
+                "symfony/console": "^5.4|^6.0",
+                "symfony/css-selector": "^5.4|^6.0",
+                "symfony/dependency-injection": "^6.3.4",
+                "symfony/dom-crawler": "^5.4|^6.0",
+                "symfony/expression-language": "^5.4|^6.0",
+                "symfony/finder": "^5.4|^6.0",
+                "symfony/http-client-contracts": "^2.5|^3",
+                "symfony/process": "^5.4|^6.0",
+                "symfony/property-access": "^5.4.5|^6.0.5",
+                "symfony/routing": "^5.4|^6.0",
+                "symfony/serializer": "^6.3",
+                "symfony/stopwatch": "^5.4|^6.0",
+                "symfony/translation": "^5.4|^6.0",
+                "symfony/translation-contracts": "^2.5|^3",
+                "symfony/uid": "^5.4|^6.0",
+                "symfony/validator": "^6.3",
+                "symfony/var-exporter": "^6.2",
+                "twig/twig": "^2.13|^3.0.4"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\HttpKernel\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Provides a structured process for converting a Request into a Response",
+            "homepage": "https://symfony.com",
+            "support": {
+                "source": "https://github.com/symfony/http-kernel/tree/v6.3.5"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-09-30T06:37:04+00:00"
+        },
+        {
+            "name": "symfony/mailer",
+            "version": "v6.3.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/mailer.git",
+                "reference": "d89611a7830d51b5e118bca38e390dea92f9ea06"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/mailer/zipball/d89611a7830d51b5e118bca38e390dea92f9ea06",
+                "reference": "d89611a7830d51b5e118bca38e390dea92f9ea06",
+                "shasum": ""
+            },
+            "require": {
+                "egulias/email-validator": "^2.1.10|^3|^4",
+                "php": ">=8.1",
+                "psr/event-dispatcher": "^1",
+                "psr/log": "^1|^2|^3",
+                "symfony/event-dispatcher": "^5.4|^6.0",
+                "symfony/mime": "^6.2",
+                "symfony/service-contracts": "^2.5|^3"
+            },
+            "conflict": {
+                "symfony/http-client-contracts": "<2.5",
+                "symfony/http-kernel": "<5.4",
+                "symfony/messenger": "<6.2",
+                "symfony/mime": "<6.2",
+                "symfony/twig-bridge": "<6.2.1"
+            },
+            "require-dev": {
+                "symfony/console": "^5.4|^6.0",
+                "symfony/http-client": "^5.4|^6.0",
+                "symfony/messenger": "^6.2",
+                "symfony/twig-bridge": "^6.2"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Mailer\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Helps sending emails",
+            "homepage": "https://symfony.com",
+            "support": {
+                "source": "https://github.com/symfony/mailer/tree/v6.3.5"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-09-06T09:47:15+00:00"
+        },
+        {
+            "name": "symfony/mime",
+            "version": "v6.3.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/mime.git",
+                "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
+                "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "symfony/deprecation-contracts": "^2.5|^3",
+                "symfony/polyfill-intl-idn": "^1.10",
+                "symfony/polyfill-mbstring": "^1.0"
+            },
+            "conflict": {
+                "egulias/email-validator": "~3.0.0",
+                "phpdocumentor/reflection-docblock": "<3.2.2",
+                "phpdocumentor/type-resolver": "<1.4.0",
+                "symfony/mailer": "<5.4",
+                "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
+            },
+            "require-dev": {
+                "egulias/email-validator": "^2.1.10|^3.1|^4",
+                "league/html-to-markdown": "^5.0",
+                "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
+                "symfony/dependency-injection": "^5.4|^6.0",
+                "symfony/property-access": "^5.4|^6.0",
+                "symfony/property-info": "^5.4|^6.0",
+                "symfony/serializer": "~6.2.13|^6.3.2"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Mime\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Allows manipulating MIME messages",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "mime",
+                "mime-type"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/mime/tree/v6.3.5"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-09-29T06:59:36+00:00"
+        },
+        {
+            "name": "symfony/polyfill-ctype",
+            "version": "v1.28.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-ctype.git",
+                "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
+                "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.1"
+            },
+            "provide": {
+                "ext-ctype": "*"
+            },
+            "suggest": {
+                "ext-ctype": "For best performance"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.28-dev"
+                },
+                "thanks": {
+                    "name": "symfony/polyfill",
+                    "url": "https://github.com/symfony/polyfill"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "bootstrap.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Polyfill\\Ctype\\": ""
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Gert de Pagter",
+                    "email": "BackEndTea@gmail.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill for ctype functions",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "ctype",
+                "polyfill",
+                "portable"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-01-26T09:26:14+00:00"
+        },
+        {
+            "name": "symfony/polyfill-intl-grapheme",
+            "version": "v1.28.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
+                "reference": "875e90aeea2777b6f135677f618529449334a612"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
+                "reference": "875e90aeea2777b6f135677f618529449334a612",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.1"
+            },
+            "suggest": {
+                "ext-intl": "For best performance"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.28-dev"
+                },
+                "thanks": {
+                    "name": "symfony/polyfill",
+                    "url": "https://github.com/symfony/polyfill"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "bootstrap.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill for intl's grapheme_* functions",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "grapheme",
+                "intl",
+                "polyfill",
+                "portable",
+                "shim"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-01-26T09:26:14+00:00"
+        },
+        {
+            "name": "symfony/polyfill-intl-idn",
+            "version": "v1.28.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-intl-idn.git",
+                "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
+                "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.1",
+                "symfony/polyfill-intl-normalizer": "^1.10",
+                "symfony/polyfill-php72": "^1.10"
+            },
+            "suggest": {
+                "ext-intl": "For best performance"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.28-dev"
+                },
+                "thanks": {
+                    "name": "symfony/polyfill",
+                    "url": "https://github.com/symfony/polyfill"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "bootstrap.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Polyfill\\Intl\\Idn\\": ""
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Laurent Bassin",
+                    "email": "laurent@bassin.info"
+                },
+                {
+                    "name": "Trevor Rowbotham",
+                    "email": "trevor.rowbotham@pm.me"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "idn",
+                "intl",
+                "polyfill",
+                "portable",
+                "shim"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-01-26T09:30:37+00:00"
+        },
+        {
+            "name": "symfony/polyfill-intl-normalizer",
+            "version": "v1.28.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
+                "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
+                "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.1"
+            },
+            "suggest": {
+                "ext-intl": "For best performance"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.28-dev"
+                },
+                "thanks": {
+                    "name": "symfony/polyfill",
+                    "url": "https://github.com/symfony/polyfill"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "bootstrap.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
+                },
+                "classmap": [
+                    "Resources/stubs"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill for intl's Normalizer class and related functions",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "intl",
+                "normalizer",
+                "polyfill",
+                "portable",
+                "shim"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-01-26T09:26:14+00:00"
+        },
+        {
+            "name": "symfony/polyfill-mbstring",
+            "version": "v1.28.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-mbstring.git",
+                "reference": "42292d99c55abe617799667f454222c54c60e229"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
+                "reference": "42292d99c55abe617799667f454222c54c60e229",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.1"
+            },
+            "provide": {
+                "ext-mbstring": "*"
+            },
+            "suggest": {
+                "ext-mbstring": "For best performance"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.28-dev"
+                },
+                "thanks": {
+                    "name": "symfony/polyfill",
+                    "url": "https://github.com/symfony/polyfill"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "bootstrap.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Polyfill\\Mbstring\\": ""
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill for the Mbstring extension",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "mbstring",
+                "polyfill",
+                "portable",
+                "shim"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-07-28T09:04:16+00:00"
+        },
+        {
+            "name": "symfony/polyfill-php56",
+            "version": "v1.20.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-php56.git",
+                "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
+                "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.1"
+            },
+            "type": "metapackage",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.20-dev"
+                },
+                "thanks": {
+                    "name": "symfony/polyfill",
+                    "url": "https://github.com/symfony/polyfill"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "polyfill",
+                "portable",
+                "shim"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2020-10-23T14:02:19+00:00"
+        },
+        {
+            "name": "symfony/polyfill-php72",
+            "version": "v1.28.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-php72.git",
+                "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
+                "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.1"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.28-dev"
+                },
+                "thanks": {
+                    "name": "symfony/polyfill",
+                    "url": "https://github.com/symfony/polyfill"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "bootstrap.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Polyfill\\Php72\\": ""
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "polyfill",
+                "portable",
+                "shim"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-01-26T09:26:14+00:00"
+        },
+        {
+            "name": "symfony/polyfill-php80",
+            "version": "v1.28.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-php80.git",
+                "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
+                "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.1"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.28-dev"
+                },
+                "thanks": {
+                    "name": "symfony/polyfill",
+                    "url": "https://github.com/symfony/polyfill"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "bootstrap.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Polyfill\\Php80\\": ""
+                },
+                "classmap": [
+                    "Resources/stubs"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Ion Bazan",
+                    "email": "ion.bazan@gmail.com"
+                },
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "polyfill",
+                "portable",
+                "shim"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-01-26T09:26:14+00:00"
+        },
+        {
+            "name": "symfony/polyfill-php83",
+            "version": "v1.28.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-php83.git",
+                "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
+                "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.1",
+                "symfony/polyfill-php80": "^1.14"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.28-dev"
+                },
+                "thanks": {
+                    "name": "symfony/polyfill",
+                    "url": "https://github.com/symfony/polyfill"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "bootstrap.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Polyfill\\Php83\\": ""
+                },
+                "classmap": [
+                    "Resources/stubs"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "polyfill",
+                "portable",
+                "shim"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-08-16T06:22:46+00:00"
+        },
+        {
+            "name": "symfony/polyfill-uuid",
+            "version": "v1.28.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-uuid.git",
+                "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/9c44518a5aff8da565c8a55dbe85d2769e6f630e",
+                "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.1"
+            },
+            "provide": {
+                "ext-uuid": "*"
+            },
+            "suggest": {
+                "ext-uuid": "For best performance"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.28-dev"
+                },
+                "thanks": {
+                    "name": "symfony/polyfill",
+                    "url": "https://github.com/symfony/polyfill"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "bootstrap.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Polyfill\\Uuid\\": ""
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Grégoire Pineau",
+                    "email": "lyrixx@lyrixx.info"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill for uuid functions",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "polyfill",
+                "portable",
+                "uuid"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/polyfill-uuid/tree/v1.28.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-01-26T09:26:14+00:00"
+        },
+        {
+            "name": "symfony/process",
+            "version": "v6.3.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/process.git",
+                "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
+                "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Process\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Executes commands in sub-processes",
+            "homepage": "https://symfony.com",
+            "support": {
+                "source": "https://github.com/symfony/process/tree/v6.3.4"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-08-07T10:39:22+00:00"
+        },
+        {
+            "name": "symfony/routing",
+            "version": "v6.3.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/routing.git",
+                "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31",
+                "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "symfony/deprecation-contracts": "^2.5|^3"
+            },
+            "conflict": {
+                "doctrine/annotations": "<1.12",
+                "symfony/config": "<6.2",
+                "symfony/dependency-injection": "<5.4",
+                "symfony/yaml": "<5.4"
+            },
+            "require-dev": {
+                "doctrine/annotations": "^1.12|^2",
+                "psr/log": "^1|^2|^3",
+                "symfony/config": "^6.2",
+                "symfony/dependency-injection": "^5.4|^6.0",
+                "symfony/expression-language": "^5.4|^6.0",
+                "symfony/http-foundation": "^5.4|^6.0",
+                "symfony/yaml": "^5.4|^6.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Routing\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Maps an HTTP request to a set of configuration variables",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "router",
+                "routing",
+                "uri",
+                "url"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/routing/tree/v6.3.5"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-09-20T16:05:51+00:00"
+        },
+        {
+            "name": "symfony/service-contracts",
+            "version": "v3.3.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/service-contracts.git",
+                "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
+                "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "psr/container": "^2.0"
+            },
+            "conflict": {
+                "ext-psr": "<1.1|>=2"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "3.4-dev"
+                },
+                "thanks": {
+                    "name": "symfony/contracts",
+                    "url": "https://github.com/symfony/contracts"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Contracts\\Service\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Test/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Generic abstractions related to writing services",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "abstractions",
+                "contracts",
+                "decoupling",
+                "interfaces",
+                "interoperability",
+                "standards"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-05-23T14:45:45+00:00"
+        },
+        {
+            "name": "symfony/string",
+            "version": "v6.3.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/string.git",
+                "reference": "13d76d0fb049051ed12a04bef4f9de8715bea339"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/string/zipball/13d76d0fb049051ed12a04bef4f9de8715bea339",
+                "reference": "13d76d0fb049051ed12a04bef4f9de8715bea339",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "symfony/polyfill-ctype": "~1.8",
+                "symfony/polyfill-intl-grapheme": "~1.0",
+                "symfony/polyfill-intl-normalizer": "~1.0",
+                "symfony/polyfill-mbstring": "~1.0"
+            },
+            "conflict": {
+                "symfony/translation-contracts": "<2.5"
+            },
+            "require-dev": {
+                "symfony/error-handler": "^5.4|^6.0",
+                "symfony/http-client": "^5.4|^6.0",
+                "symfony/intl": "^6.2",
+                "symfony/translation-contracts": "^2.5|^3.0",
+                "symfony/var-exporter": "^5.4|^6.0"
+            },
+            "type": "library",
+            "autoload": {
+                "files": [
+                    "Resources/functions.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Component\\String\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "grapheme",
+                "i18n",
+                "string",
+                "unicode",
+                "utf-8",
+                "utf8"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/string/tree/v6.3.5"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-09-18T10:38:32+00:00"
+        },
+        {
+            "name": "symfony/translation",
+            "version": "v6.3.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/translation.git",
+                "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/translation/zipball/3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
+                "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "symfony/deprecation-contracts": "^2.5|^3",
+                "symfony/polyfill-mbstring": "~1.0",
+                "symfony/translation-contracts": "^2.5|^3.0"
+            },
+            "conflict": {
+                "symfony/config": "<5.4",
+                "symfony/console": "<5.4",
+                "symfony/dependency-injection": "<5.4",
+                "symfony/http-client-contracts": "<2.5",
+                "symfony/http-kernel": "<5.4",
+                "symfony/service-contracts": "<2.5",
+                "symfony/twig-bundle": "<5.4",
+                "symfony/yaml": "<5.4"
+            },
+            "provide": {
+                "symfony/translation-implementation": "2.3|3.0"
+            },
+            "require-dev": {
+                "nikic/php-parser": "^4.13",
+                "psr/log": "^1|^2|^3",
+                "symfony/config": "^5.4|^6.0",
+                "symfony/console": "^5.4|^6.0",
+                "symfony/dependency-injection": "^5.4|^6.0",
+                "symfony/finder": "^5.4|^6.0",
+                "symfony/http-client-contracts": "^2.5|^3.0",
+                "symfony/http-kernel": "^5.4|^6.0",
+                "symfony/intl": "^5.4|^6.0",
+                "symfony/polyfill-intl-icu": "^1.21",
+                "symfony/routing": "^5.4|^6.0",
+                "symfony/service-contracts": "^2.5|^3",
+                "symfony/yaml": "^5.4|^6.0"
+            },
+            "type": "library",
+            "autoload": {
+                "files": [
+                    "Resources/functions.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Component\\Translation\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Provides tools to internationalize your application",
+            "homepage": "https://symfony.com",
+            "support": {
+                "source": "https://github.com/symfony/translation/tree/v6.3.3"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-07-31T07:08:24+00:00"
+        },
+        {
+            "name": "symfony/translation-contracts",
+            "version": "v3.3.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/translation-contracts.git",
+                "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
+                "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "3.4-dev"
+                },
+                "thanks": {
+                    "name": "symfony/contracts",
+                    "url": "https://github.com/symfony/contracts"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Contracts\\Translation\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Test/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Generic abstractions related to translation",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "abstractions",
+                "contracts",
+                "decoupling",
+                "interfaces",
+                "interoperability",
+                "standards"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-05-30T17:17:10+00:00"
+        },
+        {
+            "name": "symfony/uid",
+            "version": "v6.3.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/uid.git",
+                "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/uid/zipball/01b0f20b1351d997711c56f1638f7a8c3061e384",
+                "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "symfony/polyfill-uuid": "^1.15"
+            },
+            "require-dev": {
+                "symfony/console": "^5.4|^6.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Uid\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Grégoire Pineau",
+                    "email": "lyrixx@lyrixx.info"
+                },
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Provides an object-oriented API to generate and represent UIDs",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "UID",
+                "ulid",
+                "uuid"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/uid/tree/v6.3.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-04-08T07:25:02+00:00"
+        },
+        {
+            "name": "symfony/var-dumper",
+            "version": "v6.3.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/var-dumper.git",
+                "reference": "3d9999376be5fea8de47752837a3e1d1c5f69ef5"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/var-dumper/zipball/3d9999376be5fea8de47752837a3e1d1c5f69ef5",
+                "reference": "3d9999376be5fea8de47752837a3e1d1c5f69ef5",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "symfony/deprecation-contracts": "^2.5|^3",
+                "symfony/polyfill-mbstring": "~1.0"
+            },
+            "conflict": {
+                "symfony/console": "<5.4"
+            },
+            "require-dev": {
+                "ext-iconv": "*",
+                "symfony/console": "^5.4|^6.0",
+                "symfony/http-kernel": "^5.4|^6.0",
+                "symfony/process": "^5.4|^6.0",
+                "symfony/uid": "^5.4|^6.0",
+                "twig/twig": "^2.13|^3.0.4"
+            },
+            "bin": [
+                "Resources/bin/var-dump-server"
+            ],
+            "type": "library",
+            "autoload": {
+                "files": [
+                    "Resources/functions/dump.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Component\\VarDumper\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Provides mechanisms for walking through any arbitrary PHP variable",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "debug",
+                "dump"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/var-dumper/tree/v6.3.5"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-09-12T10:11:35+00:00"
+        },
+        {
+            "name": "tijsverkoyen/css-to-inline-styles",
+            "version": "2.2.6",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
+                "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
+                "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
+                "shasum": ""
+            },
+            "require": {
+                "ext-dom": "*",
+                "ext-libxml": "*",
+                "php": "^5.5 || ^7.0 || ^8.0",
+                "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.2.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "TijsVerkoyen\\CssToInlineStyles\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Tijs Verkoyen",
+                    "email": "css_to_inline_styles@verkoyen.eu",
+                    "role": "Developer"
+                }
+            ],
+            "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
+            "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
+            "support": {
+                "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
+                "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
+            },
+            "time": "2023-01-03T09:29:04+00:00"
+        },
+        {
+            "name": "torann/geoip",
+            "version": "3.0.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/Torann/laravel-geoip.git",
+                "reference": "af934013bdc073c8f4775e62cac8cc89b3de3ce6"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/Torann/laravel-geoip/zipball/af934013bdc073c8f4775e62cac8cc89b3de3ce6",
+                "reference": "af934013bdc073c8f4775e62cac8cc89b3de3ce6",
+                "shasum": ""
+            },
+            "require": {
+                "illuminate/cache": "^8.0|^9.0|^10.0",
+                "illuminate/console": "^8.0|^9.0|^10.0",
+                "illuminate/support": "^8.0|^9.0|^10.0",
+                "php": "^8.0|^8.1"
+            },
+            "require-dev": {
+                "geoip2/geoip2": "~2.1",
+                "mockery/mockery": "^1.3",
+                "phpstan/phpstan": "^0.12.14",
+                "phpunit/phpunit": "^8.0|^9.0|^10.0",
+                "squizlabs/php_codesniffer": "^3.5",
+                "vlucas/phpdotenv": "^5.0"
+            },
+            "suggest": {
+                "geoip2/geoip2": "Required to use the MaxMind database or web service with GeoIP (~2.1).",
+                "monolog/monolog": "Allows for storing location not found errors to the log"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0-dev"
+                },
+                "laravel": {
+                    "providers": [
+                        "Torann\\GeoIP\\GeoIPServiceProvider"
+                    ],
+                    "aliases": {
+                        "GeoIP": "Torann\\GeoIP\\Facades\\GeoIP"
+                    }
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/helpers.php"
+                ],
+                "psr-4": {
+                    "Torann\\GeoIP\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-2-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Daniel Stainback",
+                    "email": "torann@gmail.com"
+                }
+            ],
+            "description": "Support for multiple GeoIP services.",
+            "keywords": [
+                "IP API",
+                "geoip",
+                "geolocation",
+                "infoDB",
+                "laravel",
+                "location",
+                "maxmind"
+            ],
+            "support": {
+                "issues": "https://github.com/Torann/laravel-geoip/issues",
+                "source": "https://github.com/Torann/laravel-geoip/tree/3.0.5"
+            },
+            "time": "2023-02-21T14:02:27+00:00"
+        },
+        {
+            "name": "tymon/jwt-auth",
+            "version": "2.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/tymondesigns/jwt-auth.git",
+                "reference": "b0868a5b00801889a9e0c81a737963d8004e708c"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/b0868a5b00801889a9e0c81a737963d8004e708c",
+                "reference": "b0868a5b00801889a9e0c81a737963d8004e708c",
+                "shasum": ""
+            },
+            "require": {
+                "illuminate/auth": "^9.0|^10.0",
+                "illuminate/contracts": "^9.0|^10.0",
+                "illuminate/http": "^9.0|^10.0",
+                "illuminate/support": "^9.0|^10.0",
+                "lcobucci/jwt": "^4.0",
+                "nesbot/carbon": "^2.0",
+                "php": "^8.0"
+            },
+            "require-dev": {
+                "illuminate/console": "^9.0|^10.0",
+                "illuminate/database": "^9.0|^10.0",
+                "illuminate/routing": "^9.0|^10.0",
+                "mockery/mockery": ">=0.9.9",
+                "phpunit/phpunit": "^9.4"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-develop": "1.0-dev",
+                    "dev-2.x": "2.0-dev"
+                },
+                "laravel": {
+                    "aliases": {
+                        "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
+                        "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
+                    },
+                    "providers": [
+                        "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
+                    ]
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Tymon\\JWTAuth\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Sean Tymon",
+                    "email": "tymon148@gmail.com",
+                    "homepage": "https://tymon.xyz",
+                    "role": "Developer"
+                }
+            ],
+            "description": "JSON Web Token Authentication for Laravel and Lumen",
+            "homepage": "https://github.com/tymondesigns/jwt-auth",
+            "keywords": [
+                "Authentication",
+                "JSON Web Token",
+                "auth",
+                "jwt",
+                "laravel"
+            ],
+            "support": {
+                "issues": "https://github.com/tymondesigns/jwt-auth/issues",
+                "source": "https://github.com/tymondesigns/jwt-auth"
+            },
+            "funding": [
+                {
+                    "url": "https://www.patreon.com/seantymon",
+                    "type": "patreon"
+                }
+            ],
+            "time": "2023-02-16T16:29:41+00:00"
+        },
+        {
+            "name": "vlucas/phpdotenv",
+            "version": "v5.5.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/vlucas/phpdotenv.git",
+                "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
+                "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
+                "shasum": ""
+            },
+            "require": {
+                "ext-pcre": "*",
+                "graham-campbell/result-type": "^1.0.2",
+                "php": "^7.1.3 || ^8.0",
+                "phpoption/phpoption": "^1.8",
+                "symfony/polyfill-ctype": "^1.23",
+                "symfony/polyfill-mbstring": "^1.23.1",
+                "symfony/polyfill-php80": "^1.23.1"
+            },
+            "require-dev": {
+                "bamarni/composer-bin-plugin": "^1.4.1",
+                "ext-filter": "*",
+                "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
+            },
+            "suggest": {
+                "ext-filter": "Required to use the boolean validator."
+            },
+            "type": "library",
+            "extra": {
+                "bamarni-bin": {
+                    "bin-links": true,
+                    "forward-command": true
+                },
+                "branch-alias": {
+                    "dev-master": "5.5-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Dotenv\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Graham Campbell",
+                    "email": "hello@gjcampbell.co.uk",
+                    "homepage": "https://github.com/GrahamCampbell"
+                },
+                {
+                    "name": "Vance Lucas",
+                    "email": "vance@vancelucas.com",
+                    "homepage": "https://github.com/vlucas"
+                }
+            ],
+            "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
+            "keywords": [
+                "dotenv",
+                "env",
+                "environment"
+            ],
+            "support": {
+                "issues": "https://github.com/vlucas/phpdotenv/issues",
+                "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/GrahamCampbell",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2022-10-16T01:01:54+00:00"
+        },
+        {
+            "name": "voku/portable-ascii",
+            "version": "2.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/voku/portable-ascii.git",
+                "reference": "b56450eed252f6801410d810c8e1727224ae0743"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
+                "reference": "b56450eed252f6801410d810c8e1727224ae0743",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.0.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
+            },
+            "suggest": {
+                "ext-intl": "Use Intl for transliterator_transliterate() support"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "voku\\": "src/voku/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Lars Moelleken",
+                    "homepage": "http://www.moelleken.org/"
+                }
+            ],
+            "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
+            "homepage": "https://github.com/voku/portable-ascii",
+            "keywords": [
+                "ascii",
+                "clean",
+                "php"
+            ],
+            "support": {
+                "issues": "https://github.com/voku/portable-ascii/issues",
+                "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
+            },
+            "funding": [
+                {
+                    "url": "https://www.paypal.me/moelleken",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/voku",
+                    "type": "github"
+                },
+                {
+                    "url": "https://opencollective.com/portable-ascii",
+                    "type": "open_collective"
+                },
+                {
+                    "url": "https://www.patreon.com/voku",
+                    "type": "patreon"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2022-03-08T17:03:00+00:00"
+        },
+        {
+            "name": "webmozart/assert",
+            "version": "1.11.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/webmozarts/assert.git",
+                "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
+                "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
+                "shasum": ""
+            },
+            "require": {
+                "ext-ctype": "*",
+                "php": "^7.2 || ^8.0"
+            },
+            "conflict": {
+                "phpstan/phpstan": "<0.12.20",
+                "vimeo/psalm": "<4.6.1 || 4.6.2"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^8.5.13"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.10-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Webmozart\\Assert\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Bernhard Schussek",
+                    "email": "bschussek@gmail.com"
+                }
+            ],
+            "description": "Assertions to validate method input/output with nice error messages.",
+            "keywords": [
+                "assert",
+                "check",
+                "validate"
+            ],
+            "support": {
+                "issues": "https://github.com/webmozarts/assert/issues",
+                "source": "https://github.com/webmozarts/assert/tree/1.11.0"
+            },
+            "time": "2022-06-03T18:03:27+00:00"
+        }
+    ],
+    "packages-dev": [
+        {
+            "name": "doctrine/instantiator",
+            "version": "2.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/instantiator.git",
+                "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
+                "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^8.1"
+            },
+            "require-dev": {
+                "doctrine/coding-standard": "^11",
+                "ext-pdo": "*",
+                "ext-phar": "*",
+                "phpbench/phpbench": "^1.2",
+                "phpstan/phpstan": "^1.9.4",
+                "phpstan/phpstan-phpunit": "^1.3",
+                "phpunit/phpunit": "^9.5.27",
+                "vimeo/psalm": "^5.4"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Marco Pivetta",
+                    "email": "ocramius@gmail.com",
+                    "homepage": "https://ocramius.github.io/"
+                }
+            ],
+            "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
+            "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
+            "keywords": [
+                "constructor",
+                "instantiate"
+            ],
+            "support": {
+                "issues": "https://github.com/doctrine/instantiator/issues",
+                "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
+            },
+            "funding": [
+                {
+                    "url": "https://www.doctrine-project.org/sponsorship.html",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://www.patreon.com/phpdoctrine",
+                    "type": "patreon"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2022-12-30T00:23:10+00:00"
+        },
+        {
+            "name": "fakerphp/faker",
+            "version": "v1.23.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/FakerPHP/Faker.git",
+                "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
+                "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.4 || ^8.0",
+                "psr/container": "^1.0 || ^2.0",
+                "symfony/deprecation-contracts": "^2.2 || ^3.0"
+            },
+            "conflict": {
+                "fzaninotto/faker": "*"
+            },
+            "require-dev": {
+                "bamarni/composer-bin-plugin": "^1.4.1",
+                "doctrine/persistence": "^1.3 || ^2.0",
+                "ext-intl": "*",
+                "phpunit/phpunit": "^9.5.26",
+                "symfony/phpunit-bridge": "^5.4.16"
+            },
+            "suggest": {
+                "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
+                "ext-curl": "Required by Faker\\Provider\\Image to download images.",
+                "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
+                "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
+                "ext-mbstring": "Required for multibyte Unicode string functionality."
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "v1.21-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Faker\\": "src/Faker/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "François Zaninotto"
+                }
+            ],
+            "description": "Faker is a PHP library that generates fake data for you.",
+            "keywords": [
+                "data",
+                "faker",
+                "fixtures"
+            ],
+            "support": {
+                "issues": "https://github.com/FakerPHP/Faker/issues",
+                "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
+            },
+            "time": "2023-06-12T08:44:38+00:00"
+        },
+        {
+            "name": "filp/whoops",
+            "version": "2.15.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/filp/whoops.git",
+                "reference": "c83e88a30524f9360b11f585f71e6b17313b7187"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/filp/whoops/zipball/c83e88a30524f9360b11f585f71e6b17313b7187",
+                "reference": "c83e88a30524f9360b11f585f71e6b17313b7187",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.5.9 || ^7.0 || ^8.0",
+                "psr/log": "^1.0.1 || ^2.0 || ^3.0"
+            },
+            "require-dev": {
+                "mockery/mockery": "^0.9 || ^1.0",
+                "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
+                "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
+            },
+            "suggest": {
+                "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
+                "whoops/soap": "Formats errors as SOAP responses"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.7-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Whoops\\": "src/Whoops/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Filipe Dobreira",
+                    "homepage": "https://github.com/filp",
+                    "role": "Developer"
+                }
+            ],
+            "description": "php error handling for cool kids",
+            "homepage": "https://filp.github.io/whoops/",
+            "keywords": [
+                "error",
+                "exception",
+                "handling",
+                "library",
+                "throwable",
+                "whoops"
+            ],
+            "support": {
+                "issues": "https://github.com/filp/whoops/issues",
+                "source": "https://github.com/filp/whoops/tree/2.15.3"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/denis-sokolov",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-07-13T12:00:00+00:00"
+        },
+        {
+            "name": "hamcrest/hamcrest-php",
+            "version": "v2.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/hamcrest/hamcrest-php.git",
+                "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
+                "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.3|^7.0|^8.0"
+            },
+            "replace": {
+                "cordoval/hamcrest-php": "*",
+                "davedevelopment/hamcrest-php": "*",
+                "kodova/hamcrest-php": "*"
+            },
+            "require-dev": {
+                "phpunit/php-file-iterator": "^1.4 || ^2.0",
+                "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.1-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "hamcrest"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "description": "This is the PHP port of Hamcrest Matchers",
+            "keywords": [
+                "test"
+            ],
+            "support": {
+                "issues": "https://github.com/hamcrest/hamcrest-php/issues",
+                "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
+            },
+            "time": "2020-07-09T08:09:16+00:00"
+        },
+        {
+            "name": "laravel/pint",
+            "version": "v1.13.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/laravel/pint.git",
+                "reference": "bbb13460d7f8c5c0cd9a58109beedd79cd7331ff"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/laravel/pint/zipball/bbb13460d7f8c5c0cd9a58109beedd79cd7331ff",
+                "reference": "bbb13460d7f8c5c0cd9a58109beedd79cd7331ff",
+                "shasum": ""
+            },
+            "require": {
+                "ext-json": "*",
+                "ext-mbstring": "*",
+                "ext-tokenizer": "*",
+                "ext-xml": "*",
+                "php": "^8.1.0"
+            },
+            "require-dev": {
+                "friendsofphp/php-cs-fixer": "^3.26.1",
+                "illuminate/view": "^10.23.1",
+                "laravel-zero/framework": "^10.1.2",
+                "mockery/mockery": "^1.6.6",
+                "nunomaduro/larastan": "^2.6.4",
+                "nunomaduro/termwind": "^1.15.1",
+                "pestphp/pest": "^2.18.2"
+            },
+            "bin": [
+                "builds/pint"
+            ],
+            "type": "project",
+            "autoload": {
+                "psr-4": {
+                    "App\\": "app/",
+                    "Database\\Seeders\\": "database/seeders/",
+                    "Database\\Factories\\": "database/factories/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nuno Maduro",
+                    "email": "enunomaduro@gmail.com"
+                }
+            ],
+            "description": "An opinionated code formatter for PHP.",
+            "homepage": "https://laravel.com",
+            "keywords": [
+                "format",
+                "formatter",
+                "lint",
+                "linter",
+                "php"
+            ],
+            "support": {
+                "issues": "https://github.com/laravel/pint/issues",
+                "source": "https://github.com/laravel/pint"
+            },
+            "time": "2023-09-19T15:55:02+00:00"
+        },
+        {
+            "name": "laravel/sail",
+            "version": "v1.25.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/laravel/sail.git",
+                "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/laravel/sail/zipball/e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
+                "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
+                "shasum": ""
+            },
+            "require": {
+                "illuminate/console": "^8.0|^9.0|^10.0",
+                "illuminate/contracts": "^8.0|^9.0|^10.0",
+                "illuminate/support": "^8.0|^9.0|^10.0",
+                "php": "^8.0",
+                "symfony/yaml": "^6.0"
+            },
+            "require-dev": {
+                "orchestra/testbench": "^6.0|^7.0|^8.0",
+                "phpstan/phpstan": "^1.10"
+            },
+            "bin": [
+                "bin/sail"
+            ],
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.x-dev"
+                },
+                "laravel": {
+                    "providers": [
+                        "Laravel\\Sail\\SailServiceProvider"
+                    ]
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Laravel\\Sail\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Taylor Otwell",
+                    "email": "taylor@laravel.com"
+                }
+            ],
+            "description": "Docker files for running a basic Laravel application.",
+            "keywords": [
+                "docker",
+                "laravel"
+            ],
+            "support": {
+                "issues": "https://github.com/laravel/sail/issues",
+                "source": "https://github.com/laravel/sail"
+            },
+            "time": "2023-09-11T17:37:09+00:00"
+        },
+        {
+            "name": "mockery/mockery",
+            "version": "1.6.6",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/mockery/mockery.git",
+                "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
+                "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
+                "shasum": ""
+            },
+            "require": {
+                "hamcrest/hamcrest-php": "^2.0.1",
+                "lib-pcre": ">=7.0",
+                "php": ">=7.3"
+            },
+            "conflict": {
+                "phpunit/phpunit": "<8.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^8.5 || ^9.6.10",
+                "psalm/plugin-phpunit": "^0.18.4",
+                "symplify/easy-coding-standard": "^11.5.0",
+                "vimeo/psalm": "^4.30"
+            },
+            "type": "library",
+            "autoload": {
+                "files": [
+                    "library/helpers.php",
+                    "library/Mockery.php"
+                ],
+                "psr-4": {
+                    "Mockery\\": "library/Mockery"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Pádraic Brady",
+                    "email": "padraic.brady@gmail.com",
+                    "homepage": "https://github.com/padraic",
+                    "role": "Author"
+                },
+                {
+                    "name": "Dave Marshall",
+                    "email": "dave.marshall@atstsolutions.co.uk",
+                    "homepage": "https://davedevelopment.co.uk",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Nathanael Esayeas",
+                    "email": "nathanael.esayeas@protonmail.com",
+                    "homepage": "https://github.com/ghostwriter",
+                    "role": "Lead Developer"
+                }
+            ],
+            "description": "Mockery is a simple yet flexible PHP mock object framework",
+            "homepage": "https://github.com/mockery/mockery",
+            "keywords": [
+                "BDD",
+                "TDD",
+                "library",
+                "mock",
+                "mock objects",
+                "mockery",
+                "stub",
+                "test",
+                "test double",
+                "testing"
+            ],
+            "support": {
+                "docs": "https://docs.mockery.io/",
+                "issues": "https://github.com/mockery/mockery/issues",
+                "rss": "https://github.com/mockery/mockery/releases.atom",
+                "security": "https://github.com/mockery/mockery/security/advisories",
+                "source": "https://github.com/mockery/mockery"
+            },
+            "time": "2023-08-09T00:03:52+00:00"
+        },
+        {
+            "name": "myclabs/deep-copy",
+            "version": "1.11.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/myclabs/DeepCopy.git",
+                "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
+                "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1 || ^8.0"
+            },
+            "conflict": {
+                "doctrine/collections": "<1.6.8",
+                "doctrine/common": "<2.13.3 || >=3,<3.2.2"
+            },
+            "require-dev": {
+                "doctrine/collections": "^1.6.8",
+                "doctrine/common": "^2.13.3 || ^3.2.2",
+                "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
+            },
+            "type": "library",
+            "autoload": {
+                "files": [
+                    "src/DeepCopy/deep_copy.php"
+                ],
+                "psr-4": {
+                    "DeepCopy\\": "src/DeepCopy/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "description": "Create deep copies (clones) of your objects",
+            "keywords": [
+                "clone",
+                "copy",
+                "duplicate",
+                "object",
+                "object graph"
+            ],
+            "support": {
+                "issues": "https://github.com/myclabs/DeepCopy/issues",
+                "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
+            },
+            "funding": [
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-03-08T13:26:56+00:00"
+        },
+        {
+            "name": "nunomaduro/collision",
+            "version": "v6.4.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/nunomaduro/collision.git",
+                "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
+                "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
+                "shasum": ""
+            },
+            "require": {
+                "filp/whoops": "^2.14.5",
+                "php": "^8.0.0",
+                "symfony/console": "^6.0.2"
+            },
+            "require-dev": {
+                "brianium/paratest": "^6.4.1",
+                "laravel/framework": "^9.26.1",
+                "laravel/pint": "^1.1.1",
+                "nunomaduro/larastan": "^1.0.3",
+                "nunomaduro/mock-final-classes": "^1.1.0",
+                "orchestra/testbench": "^7.7",
+                "phpunit/phpunit": "^9.5.23",
+                "spatie/ignition": "^1.4.1"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-develop": "6.x-dev"
+                },
+                "laravel": {
+                    "providers": [
+                        "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
+                    ]
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "NunoMaduro\\Collision\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nuno Maduro",
+                    "email": "enunomaduro@gmail.com"
+                }
+            ],
+            "description": "Cli error handling for console/command-line PHP applications.",
+            "keywords": [
+                "artisan",
+                "cli",
+                "command-line",
+                "console",
+                "error",
+                "handling",
+                "laravel",
+                "laravel-zero",
+                "php",
+                "symfony"
+            ],
+            "support": {
+                "issues": "https://github.com/nunomaduro/collision/issues",
+                "source": "https://github.com/nunomaduro/collision"
+            },
+            "funding": [
+                {
+                    "url": "https://www.paypal.com/paypalme/enunomaduro",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/nunomaduro",
+                    "type": "github"
+                },
+                {
+                    "url": "https://www.patreon.com/nunomaduro",
+                    "type": "patreon"
+                }
+            ],
+            "time": "2023-01-03T12:54:54+00:00"
+        },
+        {
+            "name": "phar-io/manifest",
+            "version": "2.0.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/phar-io/manifest.git",
+                "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
+                "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
+                "shasum": ""
+            },
+            "require": {
+                "ext-dom": "*",
+                "ext-phar": "*",
+                "ext-xmlwriter": "*",
+                "phar-io/version": "^3.0.1",
+                "php": "^7.2 || ^8.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Arne Blankerts",
+                    "email": "arne@blankerts.de",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Sebastian Heuer",
+                    "email": "sebastian@phpeople.de",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "Developer"
+                }
+            ],
+            "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
+            "support": {
+                "issues": "https://github.com/phar-io/manifest/issues",
+                "source": "https://github.com/phar-io/manifest/tree/2.0.3"
+            },
+            "time": "2021-07-20T11:28:43+00:00"
+        },
+        {
+            "name": "phar-io/version",
+            "version": "3.2.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/phar-io/version.git",
+                "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+                "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.2 || ^8.0"
+            },
+            "type": "library",
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Arne Blankerts",
+                    "email": "arne@blankerts.de",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Sebastian Heuer",
+                    "email": "sebastian@phpeople.de",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "Developer"
+                }
+            ],
+            "description": "Library for handling version information and constraints",
+            "support": {
+                "issues": "https://github.com/phar-io/version/issues",
+                "source": "https://github.com/phar-io/version/tree/3.2.1"
+            },
+            "time": "2022-02-21T01:04:05+00:00"
+        },
+        {
+            "name": "phpunit/php-code-coverage",
+            "version": "9.2.29",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
+                "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/6a3a87ac2bbe33b25042753df8195ba4aa534c76",
+                "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76",
+                "shasum": ""
+            },
+            "require": {
+                "ext-dom": "*",
+                "ext-libxml": "*",
+                "ext-xmlwriter": "*",
+                "nikic/php-parser": "^4.15",
+                "php": ">=7.3",
+                "phpunit/php-file-iterator": "^3.0.3",
+                "phpunit/php-text-template": "^2.0.2",
+                "sebastian/code-unit-reverse-lookup": "^2.0.2",
+                "sebastian/complexity": "^2.0",
+                "sebastian/environment": "^5.1.2",
+                "sebastian/lines-of-code": "^1.0.3",
+                "sebastian/version": "^3.0.1",
+                "theseer/tokenizer": "^1.2.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "suggest": {
+                "ext-pcov": "PHP extension that provides line coverage",
+                "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "9.2-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
+            "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
+            "keywords": [
+                "coverage",
+                "testing",
+                "xunit"
+            ],
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
+                "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
+                "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.29"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-09-19T04:57:46+00:00"
+        },
+        {
+            "name": "phpunit/php-file-iterator",
+            "version": "3.0.6",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
+                "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
+                "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "FilterIterator implementation that filters files based on a list of suffixes.",
+            "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
+            "keywords": [
+                "filesystem",
+                "iterator"
+            ],
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
+                "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2021-12-02T12:48:52+00:00"
+        },
+        {
+            "name": "phpunit/php-invoker",
+            "version": "3.1.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-invoker.git",
+                "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
+                "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "ext-pcntl": "*",
+                "phpunit/phpunit": "^9.3"
+            },
+            "suggest": {
+                "ext-pcntl": "*"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.1-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Invoke callables with a timeout",
+            "homepage": "https://github.com/sebastianbergmann/php-invoker/",
+            "keywords": [
+                "process"
+            ],
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
+                "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-09-28T05:58:55+00:00"
+        },
+        {
+            "name": "phpunit/php-text-template",
+            "version": "2.0.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-text-template.git",
+                "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
+                "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Simple template engine.",
+            "homepage": "https://github.com/sebastianbergmann/php-text-template/",
+            "keywords": [
+                "template"
+            ],
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
+                "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-10-26T05:33:50+00:00"
+        },
+        {
+            "name": "phpunit/php-timer",
+            "version": "5.0.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-timer.git",
+                "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
+                "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "5.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Utility class for timing",
+            "homepage": "https://github.com/sebastianbergmann/php-timer/",
+            "keywords": [
+                "timer"
+            ],
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/php-timer/issues",
+                "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-10-26T13:16:10+00:00"
+        },
+        {
+            "name": "phpunit/phpunit",
+            "version": "9.6.13",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/phpunit.git",
+                "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f3d767f7f9e191eab4189abe41ab37797e30b1be",
+                "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be",
+                "shasum": ""
+            },
+            "require": {
+                "doctrine/instantiator": "^1.3.1 || ^2",
+                "ext-dom": "*",
+                "ext-json": "*",
+                "ext-libxml": "*",
+                "ext-mbstring": "*",
+                "ext-xml": "*",
+                "ext-xmlwriter": "*",
+                "myclabs/deep-copy": "^1.10.1",
+                "phar-io/manifest": "^2.0.3",
+                "phar-io/version": "^3.0.2",
+                "php": ">=7.3",
+                "phpunit/php-code-coverage": "^9.2.28",
+                "phpunit/php-file-iterator": "^3.0.5",
+                "phpunit/php-invoker": "^3.1.1",
+                "phpunit/php-text-template": "^2.0.3",
+                "phpunit/php-timer": "^5.0.2",
+                "sebastian/cli-parser": "^1.0.1",
+                "sebastian/code-unit": "^1.0.6",
+                "sebastian/comparator": "^4.0.8",
+                "sebastian/diff": "^4.0.3",
+                "sebastian/environment": "^5.1.3",
+                "sebastian/exporter": "^4.0.5",
+                "sebastian/global-state": "^5.0.1",
+                "sebastian/object-enumerator": "^4.0.3",
+                "sebastian/resource-operations": "^3.0.3",
+                "sebastian/type": "^3.2",
+                "sebastian/version": "^3.0.2"
+            },
+            "suggest": {
+                "ext-soap": "To be able to generate mocks based on WSDL files",
+                "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
+            },
+            "bin": [
+                "phpunit"
+            ],
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "9.6-dev"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/Framework/Assert/Functions.php"
+                ],
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "The PHP Unit Testing framework.",
+            "homepage": "https://phpunit.de/",
+            "keywords": [
+                "phpunit",
+                "testing",
+                "xunit"
+            ],
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/phpunit/issues",
+                "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
+                "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.13"
+            },
+            "funding": [
+                {
+                    "url": "https://phpunit.de/sponsors.html",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-09-19T05:39:22+00:00"
+        },
+        {
+            "name": "sebastian/cli-parser",
+            "version": "1.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/cli-parser.git",
+                "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
+                "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Library for parsing CLI options",
+            "homepage": "https://github.com/sebastianbergmann/cli-parser",
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
+                "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-09-28T06:08:49+00:00"
+        },
+        {
+            "name": "sebastian/code-unit",
+            "version": "1.0.8",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/code-unit.git",
+                "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
+                "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Collection of value objects that represent the PHP code units",
+            "homepage": "https://github.com/sebastianbergmann/code-unit",
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/code-unit/issues",
+                "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-10-26T13:08:54+00:00"
+        },
+        {
+            "name": "sebastian/code-unit-reverse-lookup",
+            "version": "2.0.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
+                "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
+                "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Looks up which function or method a line of code belongs to",
+            "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
+                "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-09-28T05:30:19+00:00"
+        },
+        {
+            "name": "sebastian/comparator",
+            "version": "4.0.8",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/comparator.git",
+                "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
+                "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3",
+                "sebastian/diff": "^4.0",
+                "sebastian/exporter": "^4.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                },
+                {
+                    "name": "Jeff Welch",
+                    "email": "whatthejeff@gmail.com"
+                },
+                {
+                    "name": "Volker Dusch",
+                    "email": "github@wallbash.com"
+                },
+                {
+                    "name": "Bernhard Schussek",
+                    "email": "bschussek@2bepublished.at"
+                }
+            ],
+            "description": "Provides the functionality to compare PHP values for equality",
+            "homepage": "https://github.com/sebastianbergmann/comparator",
+            "keywords": [
+                "comparator",
+                "compare",
+                "equality"
+            ],
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/comparator/issues",
+                "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2022-09-14T12:41:17+00:00"
+        },
+        {
+            "name": "sebastian/complexity",
+            "version": "2.0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/complexity.git",
+                "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
+                "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
+                "shasum": ""
+            },
+            "require": {
+                "nikic/php-parser": "^4.7",
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Library for calculating the complexity of PHP code units",
+            "homepage": "https://github.com/sebastianbergmann/complexity",
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/complexity/issues",
+                "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-10-26T15:52:27+00:00"
+        },
+        {
+            "name": "sebastian/diff",
+            "version": "4.0.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/diff.git",
+                "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
+                "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3",
+                "symfony/process": "^4.2 || ^5"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                },
+                {
+                    "name": "Kore Nordmann",
+                    "email": "mail@kore-nordmann.de"
+                }
+            ],
+            "description": "Diff implementation",
+            "homepage": "https://github.com/sebastianbergmann/diff",
+            "keywords": [
+                "diff",
+                "udiff",
+                "unidiff",
+                "unified diff"
+            ],
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/diff/issues",
+                "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-05-07T05:35:17+00:00"
+        },
+        {
+            "name": "sebastian/environment",
+            "version": "5.1.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/environment.git",
+                "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
+                "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "suggest": {
+                "ext-posix": "*"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "5.1-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Provides functionality to handle HHVM/PHP environments",
+            "homepage": "http://www.github.com/sebastianbergmann/environment",
+            "keywords": [
+                "Xdebug",
+                "environment",
+                "hhvm"
+            ],
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/environment/issues",
+                "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-02-03T06:03:51+00:00"
+        },
+        {
+            "name": "sebastian/exporter",
+            "version": "4.0.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/exporter.git",
+                "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
+                "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3",
+                "sebastian/recursion-context": "^4.0"
+            },
+            "require-dev": {
+                "ext-mbstring": "*",
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                },
+                {
+                    "name": "Jeff Welch",
+                    "email": "whatthejeff@gmail.com"
+                },
+                {
+                    "name": "Volker Dusch",
+                    "email": "github@wallbash.com"
+                },
+                {
+                    "name": "Adam Harvey",
+                    "email": "aharvey@php.net"
+                },
+                {
+                    "name": "Bernhard Schussek",
+                    "email": "bschussek@gmail.com"
+                }
+            ],
+            "description": "Provides the functionality to export PHP variables for visualization",
+            "homepage": "https://www.github.com/sebastianbergmann/exporter",
+            "keywords": [
+                "export",
+                "exporter"
+            ],
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/exporter/issues",
+                "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2022-09-14T06:03:37+00:00"
+        },
+        {
+            "name": "sebastian/global-state",
+            "version": "5.0.6",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/global-state.git",
+                "reference": "bde739e7565280bda77be70044ac1047bc007e34"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
+                "reference": "bde739e7565280bda77be70044ac1047bc007e34",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3",
+                "sebastian/object-reflector": "^2.0",
+                "sebastian/recursion-context": "^4.0"
+            },
+            "require-dev": {
+                "ext-dom": "*",
+                "phpunit/phpunit": "^9.3"
+            },
+            "suggest": {
+                "ext-uopz": "*"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "5.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Snapshotting of global state",
+            "homepage": "http://www.github.com/sebastianbergmann/global-state",
+            "keywords": [
+                "global state"
+            ],
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/global-state/issues",
+                "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-08-02T09:26:13+00:00"
+        },
+        {
+            "name": "sebastian/lines-of-code",
+            "version": "1.0.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/lines-of-code.git",
+                "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
+                "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
+                "shasum": ""
+            },
+            "require": {
+                "nikic/php-parser": "^4.6",
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Library for counting the lines of code in PHP source code",
+            "homepage": "https://github.com/sebastianbergmann/lines-of-code",
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
+                "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-11-28T06:42:11+00:00"
+        },
+        {
+            "name": "sebastian/object-enumerator",
+            "version": "4.0.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/object-enumerator.git",
+                "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
+                "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3",
+                "sebastian/object-reflector": "^2.0",
+                "sebastian/recursion-context": "^4.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Traverses array structures and object graphs to enumerate all referenced objects",
+            "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
+                "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-10-26T13:12:34+00:00"
+        },
+        {
+            "name": "sebastian/object-reflector",
+            "version": "2.0.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/object-reflector.git",
+                "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
+                "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Allows reflection of object attributes, including inherited and non-public ones",
+            "homepage": "https://github.com/sebastianbergmann/object-reflector/",
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
+                "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-10-26T13:14:26+00:00"
+        },
+        {
+            "name": "sebastian/recursion-context",
+            "version": "4.0.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/recursion-context.git",
+                "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
+                "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                },
+                {
+                    "name": "Jeff Welch",
+                    "email": "whatthejeff@gmail.com"
+                },
+                {
+                    "name": "Adam Harvey",
+                    "email": "aharvey@php.net"
+                }
+            ],
+            "description": "Provides functionality to recursively process PHP variables",
+            "homepage": "https://github.com/sebastianbergmann/recursion-context",
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
+                "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-02-03T06:07:39+00:00"
+        },
+        {
+            "name": "sebastian/resource-operations",
+            "version": "3.0.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/resource-operations.git",
+                "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
+                "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Provides a list of PHP built-in functions that operate on resources",
+            "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
+                "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-09-28T06:45:17+00:00"
+        },
+        {
+            "name": "sebastian/type",
+            "version": "3.2.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/type.git",
+                "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
+                "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^9.5"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.2-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Collection of value objects that represent the types of the PHP type system",
+            "homepage": "https://github.com/sebastianbergmann/type",
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/type/issues",
+                "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-02-03T06:13:03+00:00"
+        },
+        {
+            "name": "sebastian/version",
+            "version": "3.0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/version.git",
+                "reference": "c6c1022351a901512170118436c764e473f6de8c"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
+                "reference": "c6c1022351a901512170118436c764e473f6de8c",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Library that helps with managing the version number of Git-hosted PHP projects",
+            "homepage": "https://github.com/sebastianbergmann/version",
+            "support": {
+                "issues": "https://github.com/sebastianbergmann/version/issues",
+                "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sebastianbergmann",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-09-28T06:39:44+00:00"
+        },
+        {
+            "name": "spatie/backtrace",
+            "version": "1.5.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/spatie/backtrace.git",
+                "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab",
+                "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.3|^8.0"
+            },
+            "require-dev": {
+                "ext-json": "*",
+                "phpunit/phpunit": "^9.3",
+                "spatie/phpunit-snapshot-assertions": "^4.2",
+                "symfony/var-dumper": "^5.1"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Spatie\\Backtrace\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Freek Van de Herten",
+                    "email": "freek@spatie.be",
+                    "homepage": "https://spatie.be",
+                    "role": "Developer"
+                }
+            ],
+            "description": "A better backtrace",
+            "homepage": "https://github.com/spatie/backtrace",
+            "keywords": [
+                "Backtrace",
+                "spatie"
+            ],
+            "support": {
+                "source": "https://github.com/spatie/backtrace/tree/1.5.3"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/sponsors/spatie",
+                    "type": "github"
+                },
+                {
+                    "url": "https://spatie.be/open-source/support-us",
+                    "type": "other"
+                }
+            ],
+            "time": "2023-06-28T12:59:17+00:00"
+        },
+        {
+            "name": "spatie/flare-client-php",
+            "version": "1.4.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/spatie/flare-client-php.git",
+                "reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/5f2c6a7a0d2c1d90c12559dc7828fd942911a544",
+                "reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544",
+                "shasum": ""
+            },
+            "require": {
+                "illuminate/pipeline": "^8.0|^9.0|^10.0",
+                "nesbot/carbon": "^2.62.1",
+                "php": "^8.0",
+                "spatie/backtrace": "^1.5.2",
+                "symfony/http-foundation": "^5.0|^6.0",
+                "symfony/mime": "^5.2|^6.0",
+                "symfony/process": "^5.2|^6.0",
+                "symfony/var-dumper": "^5.2|^6.0"
+            },
+            "require-dev": {
+                "dms/phpunit-arraysubset-asserts": "^0.3.0",
+                "pestphp/pest": "^1.20",
+                "phpstan/extension-installer": "^1.1",
+                "phpstan/phpstan-deprecation-rules": "^1.0",
+                "phpstan/phpstan-phpunit": "^1.0",
+                "spatie/phpunit-snapshot-assertions": "^4.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.3.x-dev"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/helpers.php"
+                ],
+                "psr-4": {
+                    "Spatie\\FlareClient\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "description": "Send PHP errors to Flare",
+            "homepage": "https://github.com/spatie/flare-client-php",
+            "keywords": [
+                "exception",
+                "flare",
+                "reporting",
+                "spatie"
+            ],
+            "support": {
+                "issues": "https://github.com/spatie/flare-client-php/issues",
+                "source": "https://github.com/spatie/flare-client-php/tree/1.4.2"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/spatie",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-07-28T08:07:24+00:00"
+        },
+        {
+            "name": "spatie/ignition",
+            "version": "1.11.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/spatie/ignition.git",
+                "reference": "48b23411ca4bfbc75c75dfc638b6b36159c375aa"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/spatie/ignition/zipball/48b23411ca4bfbc75c75dfc638b6b36159c375aa",
+                "reference": "48b23411ca4bfbc75c75dfc638b6b36159c375aa",
+                "shasum": ""
+            },
+            "require": {
+                "ext-json": "*",
+                "ext-mbstring": "*",
+                "php": "^8.0",
+                "spatie/backtrace": "^1.5.3",
+                "spatie/flare-client-php": "^1.4.0",
+                "symfony/console": "^5.4|^6.0",
+                "symfony/var-dumper": "^5.4|^6.0"
+            },
+            "require-dev": {
+                "illuminate/cache": "^9.52",
+                "mockery/mockery": "^1.4",
+                "pestphp/pest": "^1.20",
+                "phpstan/extension-installer": "^1.1",
+                "phpstan/phpstan-deprecation-rules": "^1.0",
+                "phpstan/phpstan-phpunit": "^1.0",
+                "psr/simple-cache-implementation": "*",
+                "symfony/cache": "^6.0",
+                "symfony/process": "^5.4|^6.0",
+                "vlucas/phpdotenv": "^5.5"
+            },
+            "suggest": {
+                "openai-php/client": "Require get solutions from OpenAI",
+                "simple-cache-implementation": "To cache solutions from OpenAI"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.5.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Spatie\\Ignition\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Spatie",
+                    "email": "info@spatie.be",
+                    "role": "Developer"
+                }
+            ],
+            "description": "A beautiful error page for PHP applications.",
+            "homepage": "https://flareapp.io/ignition",
+            "keywords": [
+                "error",
+                "flare",
+                "laravel",
+                "page"
+            ],
+            "support": {
+                "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
+                "forum": "https://twitter.com/flareappio",
+                "issues": "https://github.com/spatie/ignition/issues",
+                "source": "https://github.com/spatie/ignition"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/spatie",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-09-19T15:29:52+00:00"
+        },
+        {
+            "name": "spatie/laravel-ignition",
+            "version": "1.6.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/spatie/laravel-ignition.git",
+                "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
+                "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
+                "shasum": ""
+            },
+            "require": {
+                "ext-curl": "*",
+                "ext-json": "*",
+                "ext-mbstring": "*",
+                "illuminate/support": "^8.77|^9.27",
+                "monolog/monolog": "^2.3",
+                "php": "^8.0",
+                "spatie/flare-client-php": "^1.0.1",
+                "spatie/ignition": "^1.4.1",
+                "symfony/console": "^5.0|^6.0",
+                "symfony/var-dumper": "^5.0|^6.0"
+            },
+            "require-dev": {
+                "filp/whoops": "^2.14",
+                "livewire/livewire": "^2.8|dev-develop",
+                "mockery/mockery": "^1.4",
+                "nunomaduro/larastan": "^1.0",
+                "orchestra/testbench": "^6.23|^7.0",
+                "pestphp/pest": "^1.20",
+                "phpstan/extension-installer": "^1.1",
+                "phpstan/phpstan-deprecation-rules": "^1.0",
+                "phpstan/phpstan-phpunit": "^1.0",
+                "spatie/laravel-ray": "^1.27"
+            },
+            "type": "library",
+            "extra": {
+                "laravel": {
+                    "providers": [
+                        "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
+                    ],
+                    "aliases": {
+                        "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
+                    }
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/helpers.php"
+                ],
+                "psr-4": {
+                    "Spatie\\LaravelIgnition\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Spatie",
+                    "email": "info@spatie.be",
+                    "role": "Developer"
+                }
+            ],
+            "description": "A beautiful error page for Laravel applications.",
+            "homepage": "https://flareapp.io/ignition",
+            "keywords": [
+                "error",
+                "flare",
+                "laravel",
+                "page"
+            ],
+            "support": {
+                "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
+                "forum": "https://twitter.com/flareappio",
+                "issues": "https://github.com/spatie/laravel-ignition/issues",
+                "source": "https://github.com/spatie/laravel-ignition"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/spatie",
+                    "type": "github"
+                }
+            ],
+            "time": "2023-01-03T19:28:04+00:00"
+        },
+        {
+            "name": "symfony/yaml",
+            "version": "v6.3.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/yaml.git",
+                "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/yaml/zipball/e23292e8c07c85b971b44c1c4b87af52133e2add",
+                "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.1",
+                "symfony/deprecation-contracts": "^2.5|^3",
+                "symfony/polyfill-ctype": "^1.8"
+            },
+            "conflict": {
+                "symfony/console": "<5.4"
+            },
+            "require-dev": {
+                "symfony/console": "^5.4|^6.0"
+            },
+            "bin": [
+                "Resources/bin/yaml-lint"
+            ],
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Yaml\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Loads and dumps YAML files",
+            "homepage": "https://symfony.com",
+            "support": {
+                "source": "https://github.com/symfony/yaml/tree/v6.3.3"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2023-07-31T07:08:24+00:00"
+        },
+        {
+            "name": "theseer/tokenizer",
+            "version": "1.2.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/theseer/tokenizer.git",
+                "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
+                "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
+                "shasum": ""
+            },
+            "require": {
+                "ext-dom": "*",
+                "ext-tokenizer": "*",
+                "ext-xmlwriter": "*",
+                "php": "^7.2 || ^8.0"
+            },
+            "type": "library",
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Arne Blankerts",
+                    "email": "arne@blankerts.de",
+                    "role": "Developer"
+                }
+            ],
+            "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
+            "support": {
+                "issues": "https://github.com/theseer/tokenizer/issues",
+                "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/theseer",
+                    "type": "github"
+                }
+            ],
+            "time": "2021-07-28T10:34:58+00:00"
+        }
+    ],
+    "aliases": [],
+    "minimum-stability": "stable",
+    "stability-flags": [],
+    "prefer-stable": true,
+    "prefer-lowest": false,
+    "platform": {
+        "php": "^8.0.2"
+    },
+    "platform-dev": [],
+    "plugin-api-version": "2.6.0"
+}
diff --git a/config/app.php b/config/app.php
new file mode 100644
index 0000000..95baee0
--- /dev/null
+++ b/config/app.php
@@ -0,0 +1,222 @@
+ env('APP_NAME', 'Laravel'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Application Environment
+    |--------------------------------------------------------------------------
+    |
+    | This value determines the "environment" your application is currently
+    | running in. This may determine how you prefer to configure various
+    | services the application utilizes. Set this in your ".env" file.
+    |
+    */
+
+    'env' => env('APP_ENV', 'production'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Application Debug Mode
+    |--------------------------------------------------------------------------
+    |
+    | When your application is in debug mode, detailed error messages with
+    | stack traces will be shown on every error that occurs within your
+    | application. If disabled, a simple generic error page is shown.
+    |
+    */
+
+    'debug' => (bool) env('APP_DEBUG', false),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Application URL
+    |--------------------------------------------------------------------------
+    |
+    | This URL is used by the console to properly generate URLs when using
+    | the Artisan command line tool. You should set this to the root of
+    | your application so that it is used when running Artisan tasks.
+    |
+    */
+
+    'url' => env('APP_URL', 'http://localhost'),
+
+    'asset_url' => env('ASSET_URL'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Application Timezone
+    |--------------------------------------------------------------------------
+    |
+    | Here you may specify the default timezone for your application, which
+    | will be used by the PHP date and date-time functions. We have gone
+    | ahead and set this to a sensible default for you out of the box.
+    |
+    */
+
+    'timezone' => 'UTC',
+
+    /*
+    |--------------------------------------------------------------------------
+    | Application Locale Configuration
+    |--------------------------------------------------------------------------
+    |
+    | The application locale determines the default locale that will be used
+    | by the translation service provider. You are free to set this value
+    | to any of the locales which will be supported by the application.
+    |
+    */
+
+    'locale' => 'en',
+
+    /*
+    |--------------------------------------------------------------------------
+    | Application Fallback Locale
+    |--------------------------------------------------------------------------
+    |
+    | The fallback locale determines the locale to use when the current one
+    | is not available. You may change the value to correspond to any of
+    | the language folders that are provided through your application.
+    |
+    */
+
+    'fallback_locale' => 'en',
+
+    /*
+    |--------------------------------------------------------------------------
+    | Faker Locale
+    |--------------------------------------------------------------------------
+    |
+    | This locale will be used by the Faker PHP library when generating fake
+    | data for your database seeds. For example, this will be used to get
+    | localized telephone numbers, street address information and more.
+    |
+    */
+
+    'faker_locale' => 'en_US',
+
+    /*
+    |--------------------------------------------------------------------------
+    | Encryption Key
+    |--------------------------------------------------------------------------
+    |
+    | This key is used by the Illuminate encrypter service and should be set
+    | to a random, 32 character string, otherwise these encrypted strings
+    | will not be safe. Please do this before deploying an application!
+    |
+    */
+
+    'key' => env('APP_KEY'),
+
+    'cipher' => 'AES-256-CBC',
+
+    /*
+    |--------------------------------------------------------------------------
+    | Maintenance Mode Driver
+    |--------------------------------------------------------------------------
+    |
+    | These configuration options determine the driver used to determine and
+    | manage Laravel's "maintenance mode" status. The "cache" driver will
+    | allow maintenance mode to be controlled across multiple machines.
+    |
+    | Supported drivers: "file", "cache"
+    |
+    */
+
+    'maintenance' => [
+        'driver' => 'file',
+        // 'store'  => 'redis',
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Autoloaded Service Providers
+    |--------------------------------------------------------------------------
+    |
+    | The service providers listed here will be automatically loaded on the
+    | request to your application. Feel free to add your own services to
+    | this array to grant expanded functionality to your applications.
+    |
+    */
+
+    'providers' => [
+
+        /*
+         * Laravel Framework Service Providers...
+         */
+        Illuminate\Auth\AuthServiceProvider::class,
+        Illuminate\Broadcasting\BroadcastServiceProvider::class,
+        Illuminate\Bus\BusServiceProvider::class,
+        Illuminate\Cache\CacheServiceProvider::class,
+        Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
+        Illuminate\Cookie\CookieServiceProvider::class,
+        Illuminate\Database\DatabaseServiceProvider::class,
+        Illuminate\Encryption\EncryptionServiceProvider::class,
+        Illuminate\Filesystem\FilesystemServiceProvider::class,
+        Illuminate\Foundation\Providers\FoundationServiceProvider::class,
+        Illuminate\Hashing\HashServiceProvider::class,
+        Illuminate\Mail\MailServiceProvider::class,
+        Illuminate\Notifications\NotificationServiceProvider::class,
+        Illuminate\Pagination\PaginationServiceProvider::class,
+        Illuminate\Pipeline\PipelineServiceProvider::class,
+        Illuminate\Queue\QueueServiceProvider::class,
+        Illuminate\Redis\RedisServiceProvider::class,
+        Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
+        Illuminate\Session\SessionServiceProvider::class,
+        Illuminate\Translation\TranslationServiceProvider::class,
+        Illuminate\Validation\ValidationServiceProvider::class,
+        Illuminate\View\ViewServiceProvider::class,
+        Tymon\JWTAuth\Providers\LaravelServiceProvider::class,
+        Ladumor\OneSignal\OneSignalServiceProvider::class,
+
+        /*
+         * Package Service Providers...
+         */
+
+        /*
+         * Application Service Providers...
+         */
+        App\Providers\AppServiceProvider::class,
+        App\Providers\AuthServiceProvider::class,
+        // App\Providers\BroadcastServiceProvider::class,
+        App\Providers\EventServiceProvider::class,
+        App\Providers\RouteServiceProvider::class,
+        Maatwebsite\Excel\ExcelServiceProvider::class,
+
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Class Aliases
+    |--------------------------------------------------------------------------
+    |
+    | This array of class aliases will be registered when this application
+    | is started. However, feel free to register as many as you wish as
+    | the aliases are "lazy" loaded so they don't hinder performance.
+    |
+    */
+
+    'aliases' => Facade::defaultAliases()->merge([
+        // 'ExampleClass' => App\Example\ExampleClass::class,
+         'JWTAuth' => Tymon\JWTAuth\Facades\JWTAuth::class,
+        'JWTFactory' => Tymon\JWTAuth\Facades\JWTFactory::class,
+        'Excel' => Maatwebsite\Excel\Facades\Excel::class,
+        'OneSignal' => \Ladumor\OneSignal\OneSignal::class,
+    ])->toArray(),
+
+];
diff --git a/config/auth.php b/config/auth.php
new file mode 100644
index 0000000..3deca4a
--- /dev/null
+++ b/config/auth.php
@@ -0,0 +1,124 @@
+ [
+        'guard' => 'web',
+        'passwords' => 'users',
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Authentication Guards
+    |--------------------------------------------------------------------------
+    |
+    | Next, you may define every authentication guard for your application.
+    | Of course, a great default configuration has been defined for you
+    | here which uses session storage and the Eloquent user provider.
+    |
+    | All authentication drivers have a user provider. This defines how the
+    | users are actually retrieved out of your database or other storage
+    | mechanisms used by this application to persist your user's data.
+    |
+    | Supported: "session"
+    |
+    */
+
+    'guards' => [
+        'web' => [
+            'driver' => 'session',
+            'provider' => 'users',
+        ],
+        'admin' => [
+            'driver' => 'session',
+            'provider' => 'admin_master',
+        ],
+        'api' => [
+                'driver' => 'jwt',
+                'provider' => 'users',
+        ],
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | User Providers
+    |--------------------------------------------------------------------------
+    |
+    | All authentication drivers have a user provider. This defines how the
+    | users are actually retrieved out of your database or other storage
+    | mechanisms used by this application to persist your user's data.
+    |
+    | If you have multiple user tables or models you may configure multiple
+    | sources which represent each model / table. These sources may then
+    | be assigned to any extra authentication guards you have defined.
+    |
+    | Supported: "database", "eloquent"
+    |
+    */
+
+    'providers' => [
+        'users' => [
+            'driver' => 'eloquent',
+            'model' => App\Models\User::class,
+        ],
+        
+        'admin_master' => [
+            'driver' => 'eloquent',
+            'model' => App\Models\AdminMaster::class,
+        ],
+
+        // 'users' => [
+        //     'driver' => 'database',
+        //     'table' => 'users',
+        // ],
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Resetting Passwords
+    |--------------------------------------------------------------------------
+    |
+    | You may specify multiple password reset configurations if you have more
+    | than one user table or model in the application and you want to have
+    | separate password reset settings based on the specific user types.
+    |
+    | The expire time is the number of minutes that each reset token will be
+    | considered valid. This security feature keeps tokens short-lived so
+    | they have less time to be guessed. You may change this as needed.
+    |
+    */
+
+    'passwords' => [
+        'users' => [
+            'provider' => 'users',
+            'table' => 'password_resets',
+            'expire' => 60,
+            'throttle' => 60,
+        ],
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Password Confirmation Timeout
+    |--------------------------------------------------------------------------
+    |
+    | Here you may define the amount of seconds before a password confirmation
+    | times out and the user is prompted to re-enter their password via the
+    | confirmation screen. By default, the timeout lasts for three hours.
+    |
+    */
+
+    'password_timeout' => 10800,
+
+];
diff --git a/config/broadcasting.php b/config/broadcasting.php
new file mode 100644
index 0000000..9e4d4aa
--- /dev/null
+++ b/config/broadcasting.php
@@ -0,0 +1,70 @@
+ env('BROADCAST_DRIVER', 'null'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Broadcast Connections
+    |--------------------------------------------------------------------------
+    |
+    | Here you may define all of the broadcast connections that will be used
+    | to broadcast events to other systems or over websockets. Samples of
+    | each available type of connection are provided inside this array.
+    |
+    */
+
+    'connections' => [
+
+        'pusher' => [
+            'driver' => 'pusher',
+            'key' => env('PUSHER_APP_KEY'),
+            'secret' => env('PUSHER_APP_SECRET'),
+            'app_id' => env('PUSHER_APP_ID'),
+            'options' => [
+                'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com',
+                'port' => env('PUSHER_PORT', 443),
+                'scheme' => env('PUSHER_SCHEME', 'https'),
+                'encrypted' => true,
+                'useTLS' => env('PUSHER_SCHEME', 'https') === 'https',
+            ],
+            'client_options' => [
+                // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html
+            ],
+        ],
+
+        'ably' => [
+            'driver' => 'ably',
+            'key' => env('ABLY_KEY'),
+        ],
+
+        'redis' => [
+            'driver' => 'redis',
+            'connection' => 'default',
+        ],
+
+        'log' => [
+            'driver' => 'log',
+        ],
+
+        'null' => [
+            'driver' => 'null',
+        ],
+
+    ],
+
+];
diff --git a/config/cache.php b/config/cache.php
new file mode 100644
index 0000000..33bb295
--- /dev/null
+++ b/config/cache.php
@@ -0,0 +1,110 @@
+ env('CACHE_DRIVER', 'file'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Cache Stores
+    |--------------------------------------------------------------------------
+    |
+    | Here you may define all of the cache "stores" for your application as
+    | well as their drivers. You may even define multiple stores for the
+    | same cache driver to group types of items stored in your caches.
+    |
+    | Supported drivers: "apc", "array", "database", "file",
+    |         "memcached", "redis", "dynamodb", "octane", "null"
+    |
+    */
+
+    'stores' => [
+
+        'apc' => [
+            'driver' => 'apc',
+        ],
+
+        'array' => [
+            'driver' => 'array',
+            'serialize' => false,
+        ],
+
+        'database' => [
+            'driver' => 'database',
+            'table' => 'cache',
+            'connection' => null,
+            'lock_connection' => null,
+        ],
+
+        'file' => [
+            'driver' => 'file',
+            'path' => storage_path('framework/cache/data'),
+        ],
+
+        'memcached' => [
+            'driver' => 'memcached',
+            'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
+            'sasl' => [
+                env('MEMCACHED_USERNAME'),
+                env('MEMCACHED_PASSWORD'),
+            ],
+            'options' => [
+                // Memcached::OPT_CONNECT_TIMEOUT => 2000,
+            ],
+            'servers' => [
+                [
+                    'host' => env('MEMCACHED_HOST', '127.0.0.1'),
+                    'port' => env('MEMCACHED_PORT', 11211),
+                    'weight' => 100,
+                ],
+            ],
+        ],
+
+        'redis' => [
+            'driver' => 'redis',
+            'connection' => 'cache',
+            'lock_connection' => 'default',
+        ],
+
+        'dynamodb' => [
+            'driver' => 'dynamodb',
+            'key' => env('AWS_ACCESS_KEY_ID'),
+            'secret' => env('AWS_SECRET_ACCESS_KEY'),
+            'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+            'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
+            'endpoint' => env('DYNAMODB_ENDPOINT'),
+        ],
+
+        'octane' => [
+            'driver' => 'octane',
+        ],
+
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Cache Key Prefix
+    |--------------------------------------------------------------------------
+    |
+    | When utilizing the APC, database, memcached, Redis, or DynamoDB cache
+    | stores there might be other applications using the same cache. For
+    | that reason, you may prefix every cache key to avoid collisions.
+    |
+    */
+
+    'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
+
+];
diff --git a/config/cors.php b/config/cors.php
new file mode 100644
index 0000000..8a39e6d
--- /dev/null
+++ b/config/cors.php
@@ -0,0 +1,34 @@
+ ['api/*', 'sanctum/csrf-cookie'],
+
+    'allowed_methods' => ['*'],
+
+    'allowed_origins' => ['*'],
+
+    'allowed_origins_patterns' => [],
+
+    'allowed_headers' => ['*'],
+
+    'exposed_headers' => [],
+
+    'max_age' => 0,
+
+    'supports_credentials' => false,
+
+];
diff --git a/config/database.php b/config/database.php
new file mode 100644
index 0000000..137ad18
--- /dev/null
+++ b/config/database.php
@@ -0,0 +1,151 @@
+ env('DB_CONNECTION', 'mysql'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Database Connections
+    |--------------------------------------------------------------------------
+    |
+    | Here are each of the database connections setup for your application.
+    | Of course, examples of configuring each database platform that is
+    | supported by Laravel is shown below to make development simple.
+    |
+    |
+    | All database work in Laravel is done through the PHP PDO facilities
+    | so make sure you have the driver for your particular database of
+    | choice installed on your machine before you begin development.
+    |
+    */
+
+    'connections' => [
+
+        'sqlite' => [
+            'driver' => 'sqlite',
+            'url' => env('DATABASE_URL'),
+            'database' => env('DB_DATABASE', database_path('database.sqlite')),
+            'prefix' => '',
+            'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
+        ],
+
+        'mysql' => [
+            'driver' => 'mysql',
+            'url' => env('DATABASE_URL'),
+            'host' => env('DB_HOST', '127.0.0.1'),
+            'port' => env('DB_PORT', '3306'),
+            'database' => env('DB_DATABASE', 'forge'),
+            'username' => env('DB_USERNAME', 'forge'),
+            'password' => env('DB_PASSWORD', ''),
+            'unix_socket' => env('DB_SOCKET', ''),
+            'charset' => 'utf8mb4',
+            'collation' => 'utf8mb4_unicode_ci',
+            'prefix' => '',
+            'prefix_indexes' => true,
+            'strict' => true,
+            'engine' => null,
+            'options' => extension_loaded('pdo_mysql') ? array_filter([
+                PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
+            ]) : [],
+        ],
+
+        'pgsql' => [
+            'driver' => 'pgsql',
+            'url' => env('DATABASE_URL'),
+            'host' => env('DB_HOST', '127.0.0.1'),
+            'port' => env('DB_PORT', '5432'),
+            'database' => env('DB_DATABASE', 'forge'),
+            'username' => env('DB_USERNAME', 'forge'),
+            'password' => env('DB_PASSWORD', ''),
+            'charset' => 'utf8',
+            'prefix' => '',
+            'prefix_indexes' => true,
+            'search_path' => 'public',
+            'sslmode' => 'prefer',
+        ],
+
+        'sqlsrv' => [
+            'driver' => 'sqlsrv',
+            'url' => env('DATABASE_URL'),
+            'host' => env('DB_HOST', 'localhost'),
+            'port' => env('DB_PORT', '1433'),
+            'database' => env('DB_DATABASE', 'forge'),
+            'username' => env('DB_USERNAME', 'forge'),
+            'password' => env('DB_PASSWORD', ''),
+            'charset' => 'utf8',
+            'prefix' => '',
+            'prefix_indexes' => true,
+            // 'encrypt' => env('DB_ENCRYPT', 'yes'),
+            // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'),
+        ],
+
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Migration Repository Table
+    |--------------------------------------------------------------------------
+    |
+    | This table keeps track of all the migrations that have already run for
+    | your application. Using this information, we can determine which of
+    | the migrations on disk haven't actually been run in the database.
+    |
+    */
+
+    'migrations' => 'migrations',
+
+    /*
+    |--------------------------------------------------------------------------
+    | Redis Databases
+    |--------------------------------------------------------------------------
+    |
+    | Redis is an open source, fast, and advanced key-value store that also
+    | provides a richer body of commands than a typical key-value system
+    | such as APC or Memcached. Laravel makes it easy to dig right in.
+    |
+    */
+
+    'redis' => [
+
+        'client' => env('REDIS_CLIENT', 'phpredis'),
+
+        'options' => [
+            'cluster' => env('REDIS_CLUSTER', 'redis'),
+            'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
+        ],
+
+        'default' => [
+            'url' => env('REDIS_URL'),
+            'host' => env('REDIS_HOST', '127.0.0.1'),
+            'username' => env('REDIS_USERNAME'),
+            'password' => env('REDIS_PASSWORD'),
+            'port' => env('REDIS_PORT', '6379'),
+            'database' => env('REDIS_DB', '0'),
+        ],
+
+        'cache' => [
+            'url' => env('REDIS_URL'),
+            'host' => env('REDIS_HOST', '127.0.0.1'),
+            'username' => env('REDIS_USERNAME'),
+            'password' => env('REDIS_PASSWORD'),
+            'port' => env('REDIS_PORT', '6379'),
+            'database' => env('REDIS_CACHE_DB', '1'),
+        ],
+
+    ],
+
+];
diff --git a/config/excel.php b/config/excel.php
new file mode 100644
index 0000000..987883e
--- /dev/null
+++ b/config/excel.php
@@ -0,0 +1,333 @@
+ [
+
+        /*
+        |--------------------------------------------------------------------------
+        | Chunk size
+        |--------------------------------------------------------------------------
+        |
+        | When using FromQuery, the query is automatically chunked.
+        | Here you can specify how big the chunk should be.
+        |
+        */
+        'chunk_size'             => 1000,
+
+        /*
+        |--------------------------------------------------------------------------
+        | Pre-calculate formulas during export
+        |--------------------------------------------------------------------------
+        */
+        'pre_calculate_formulas' => false,
+
+        /*
+        |--------------------------------------------------------------------------
+        | Enable strict null comparison
+        |--------------------------------------------------------------------------
+        |
+        | When enabling strict null comparison empty cells ('') will
+        | be added to the sheet.
+        */
+        'strict_null_comparison' => false,
+
+        /*
+        |--------------------------------------------------------------------------
+        | CSV Settings
+        |--------------------------------------------------------------------------
+        |
+        | Configure e.g. delimiter, enclosure and line ending for CSV exports.
+        |
+        */
+        'csv'                    => [
+            'delimiter'              => ',',
+            'enclosure'              => '"',
+            'line_ending'            => PHP_EOL,
+            'use_bom'                => false,
+            'include_separator_line' => false,
+            'excel_compatibility'    => false,
+            'output_encoding'        => '',
+            'test_auto_detect'       => true,
+        ],
+
+        /*
+        |--------------------------------------------------------------------------
+        | Worksheet properties
+        |--------------------------------------------------------------------------
+        |
+        | Configure e.g. default title, creator, subject,...
+        |
+        */
+        'properties'             => [
+            'creator'        => '',
+            'lastModifiedBy' => '',
+            'title'          => '',
+            'description'    => '',
+            'subject'        => '',
+            'keywords'       => '',
+            'category'       => '',
+            'manager'        => '',
+            'company'        => '',
+        ],
+    ],
+
+    'imports'            => [
+
+        /*
+        |--------------------------------------------------------------------------
+        | Read Only
+        |--------------------------------------------------------------------------
+        |
+        | When dealing with imports, you might only be interested in the
+        | data that the sheet exists. By default we ignore all styles,
+        | however if you want to do some logic based on style data
+        | you can enable it by setting read_only to false.
+        |
+        */
+        'read_only' => true,
+
+        /*
+        |--------------------------------------------------------------------------
+        | Ignore Empty
+        |--------------------------------------------------------------------------
+        |
+        | When dealing with imports, you might be interested in ignoring
+        | rows that have null values or empty strings. By default rows
+        | containing empty strings or empty values are not ignored but can be
+        | ignored by enabling the setting ignore_empty to true.
+        |
+        */
+        'ignore_empty' => false,
+
+        /*
+        |--------------------------------------------------------------------------
+        | Heading Row Formatter
+        |--------------------------------------------------------------------------
+        |
+        | Configure the heading row formatter.
+        | Available options: none|slug|custom
+        |
+        */
+        'heading_row' => [
+            'formatter' => 'slug',
+        ],
+
+        /*
+        |--------------------------------------------------------------------------
+        | CSV Settings
+        |--------------------------------------------------------------------------
+        |
+        | Configure e.g. delimiter, enclosure and line ending for CSV imports.
+        |
+        */
+        'csv'         => [
+            'delimiter'        => null,
+            'enclosure'        => '"',
+            'escape_character' => '\\',
+            'contiguous'       => false,
+            'input_encoding'   => 'UTF-8',
+        ],
+
+        /*
+        |--------------------------------------------------------------------------
+        | Worksheet properties
+        |--------------------------------------------------------------------------
+        |
+        | Configure e.g. default title, creator, subject,...
+        |
+        */
+        'properties'  => [
+            'creator'        => '',
+            'lastModifiedBy' => '',
+            'title'          => '',
+            'description'    => '',
+            'subject'        => '',
+            'keywords'       => '',
+            'category'       => '',
+            'manager'        => '',
+            'company'        => '',
+        ],
+
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Extension detector
+    |--------------------------------------------------------------------------
+    |
+    | Configure here which writer/reader type should be used when the package
+    | needs to guess the correct type based on the extension alone.
+    |
+    */
+    'extension_detector' => [
+        'xlsx'     => Excel::XLSX,
+        'xlsm'     => Excel::XLSX,
+        'xltx'     => Excel::XLSX,
+        'xltm'     => Excel::XLSX,
+        'xls'      => Excel::XLS,
+        'xlt'      => Excel::XLS,
+        'ods'      => Excel::ODS,
+        'ots'      => Excel::ODS,
+        'slk'      => Excel::SLK,
+        'xml'      => Excel::XML,
+        'gnumeric' => Excel::GNUMERIC,
+        'htm'      => Excel::HTML,
+        'html'     => Excel::HTML,
+        'csv'      => Excel::CSV,
+        'tsv'      => Excel::TSV,
+
+        /*
+        |--------------------------------------------------------------------------
+        | PDF Extension
+        |--------------------------------------------------------------------------
+        |
+        | Configure here which Pdf driver should be used by default.
+        | Available options: Excel::MPDF | Excel::TCPDF | Excel::DOMPDF
+        |
+        */
+        'pdf'      => Excel::DOMPDF,
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Value Binder
+    |--------------------------------------------------------------------------
+    |
+    | PhpSpreadsheet offers a way to hook into the process of a value being
+    | written to a cell. In there some assumptions are made on how the
+    | value should be formatted. If you want to change those defaults,
+    | you can implement your own default value binder.
+    |
+    | Possible value binders:
+    |
+    | [x] Maatwebsite\Excel\DefaultValueBinder::class
+    | [x] PhpOffice\PhpSpreadsheet\Cell\StringValueBinder::class
+    | [x] PhpOffice\PhpSpreadsheet\Cell\AdvancedValueBinder::class
+    |
+    */
+    'value_binder' => [
+        'default' => Maatwebsite\Excel\DefaultValueBinder::class,
+    ],
+
+    'cache' => [
+        /*
+        |--------------------------------------------------------------------------
+        | Default cell caching driver
+        |--------------------------------------------------------------------------
+        |
+        | By default PhpSpreadsheet keeps all cell values in memory, however when
+        | dealing with large files, this might result into memory issues. If you
+        | want to mitigate that, you can configure a cell caching driver here.
+        | When using the illuminate driver, it will store each value in the
+        | cache store. This can slow down the process, because it needs to
+        | store each value. You can use the "batch" store if you want to
+        | only persist to the store when the memory limit is reached.
+        |
+        | Drivers: memory|illuminate|batch
+        |
+        */
+        'driver'     => 'memory',
+
+        /*
+        |--------------------------------------------------------------------------
+        | Batch memory caching
+        |--------------------------------------------------------------------------
+        |
+        | When dealing with the "batch" caching driver, it will only
+        | persist to the store when the memory limit is reached.
+        | Here you can tweak the memory limit to your liking.
+        |
+        */
+        'batch'     => [
+            'memory_limit' => 60000,
+        ],
+
+        /*
+        |--------------------------------------------------------------------------
+        | Illuminate cache
+        |--------------------------------------------------------------------------
+        |
+        | When using the "illuminate" caching driver, it will automatically use
+        | your default cache store. However if you prefer to have the cell
+        | cache on a separate store, you can configure the store name here.
+        | You can use any store defined in your cache config. When leaving
+        | at "null" it will use the default store.
+        |
+        */
+        'illuminate' => [
+            'store' => null,
+        ],
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Transaction Handler
+    |--------------------------------------------------------------------------
+    |
+    | By default the import is wrapped in a transaction. This is useful
+    | for when an import may fail and you want to retry it. With the
+    | transactions, the previous import gets rolled-back.
+    |
+    | You can disable the transaction handler by setting this to null.
+    | Or you can choose a custom made transaction handler here.
+    |
+    | Supported handlers: null|db
+    |
+    */
+    'transactions' => [
+        'handler' => 'db',
+        'db'      => [
+            'connection' => null,
+        ],
+    ],
+
+    'temporary_files' => [
+
+        /*
+        |--------------------------------------------------------------------------
+        | Local Temporary Path
+        |--------------------------------------------------------------------------
+        |
+        | When exporting and importing files, we use a temporary file, before
+        | storing reading or downloading. Here you can customize that path.
+        |
+        */
+        'local_path'          => storage_path('framework/cache/laravel-excel'),
+
+        /*
+        |--------------------------------------------------------------------------
+        | Remote Temporary Disk
+        |--------------------------------------------------------------------------
+        |
+        | When dealing with a multi server setup with queues in which you
+        | cannot rely on having a shared local temporary path, you might
+        | want to store the temporary file on a shared disk. During the
+        | queue executing, we'll retrieve the temporary file from that
+        | location instead. When left to null, it will always use
+        | the local path. This setting only has effect when using
+        | in conjunction with queued imports and exports.
+        |
+        */
+        'remote_disk'         => null,
+        'remote_prefix'       => null,
+
+        /*
+        |--------------------------------------------------------------------------
+        | Force Resync
+        |--------------------------------------------------------------------------
+        |
+        | When dealing with a multi server setup as above, it's possible
+        | for the clean up that occurs after entire queue has been run to only
+        | cleanup the server that the last AfterImportJob runs on. The rest of the server
+        | would still have the local temporary file stored on it. In this case your
+        | local storage limits can be exceeded and future imports won't be processed.
+        | To mitigate this you can set this config value to be true, so that after every
+        | queued chunk is processed the local temporary file is deleted on the server that
+        | processed it.
+        |
+        */
+        'force_resync_remote' => null,
+    ],
+];
diff --git a/config/filesystems.php b/config/filesystems.php
new file mode 100644
index 0000000..e9d9dbd
--- /dev/null
+++ b/config/filesystems.php
@@ -0,0 +1,76 @@
+ env('FILESYSTEM_DISK', 'local'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Filesystem Disks
+    |--------------------------------------------------------------------------
+    |
+    | Here you may configure as many filesystem "disks" as you wish, and you
+    | may even configure multiple disks of the same driver. Defaults have
+    | been set up for each driver as an example of the required values.
+    |
+    | Supported Drivers: "local", "ftp", "sftp", "s3"
+    |
+    */
+
+    'disks' => [
+
+        'local' => [
+            'driver' => 'local',
+            'root' => storage_path('app'),
+            'throw' => false,
+        ],
+
+        'public' => [
+            'driver' => 'local',
+            'root' => storage_path('app/public'),
+            'url' => env('APP_URL').'/storage',
+            'visibility' => 'public',
+            'throw' => false,
+        ],
+
+        's3' => [
+            'driver' => 's3',
+            'key' => env('AWS_ACCESS_KEY_ID'),
+            'secret' => env('AWS_SECRET_ACCESS_KEY'),
+            'region' => env('AWS_DEFAULT_REGION'),
+            'bucket' => env('AWS_BUCKET'),
+            'url' => env('AWS_URL'),
+            'endpoint' => env('AWS_ENDPOINT'),
+            'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
+            'throw' => false,
+        ],
+
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Symbolic Links
+    |--------------------------------------------------------------------------
+    |
+    | Here you may configure the symbolic links that will be created when the
+    | `storage:link` Artisan command is executed. The array keys should be
+    | the locations of the links and the values should be their targets.
+    |
+    */
+
+    'links' => [
+        public_path('storage') => storage_path('app/public'),
+    ],
+
+];
diff --git a/config/geoip.php b/config/geoip.php
new file mode 100644
index 0000000..920150d
--- /dev/null
+++ b/config/geoip.php
@@ -0,0 +1,166 @@
+ true,
+
+    /*
+    |--------------------------------------------------------------------------
+    | Include Currency in Results
+    |--------------------------------------------------------------------------
+    |
+    | When enabled the system will do it's best in deciding the user's currency
+    | by matching their ISO code to a preset list of currencies.
+    |
+    */
+
+    'include_currency' => true,
+
+    /*
+    |--------------------------------------------------------------------------
+    | Default Service
+    |--------------------------------------------------------------------------
+    |
+    | Here you may specify the default storage driver that should be used
+    | by the framework.
+    |
+    | Supported: "maxmind_database", "maxmind_api", "ipapi"
+    |
+    */
+
+    'service' => 'ipapi',
+
+    /*
+    |--------------------------------------------------------------------------
+    | Storage Specific Configuration
+    |--------------------------------------------------------------------------
+    |
+    | Here you may configure as many storage drivers as you wish.
+    |
+    */
+
+    'services' => [
+
+        'maxmind_database' => [
+            'class' => \Torann\GeoIP\Services\MaxMindDatabase::class,
+            'database_path' => storage_path('app/geoip.mmdb'),
+            'update_url' => sprintf('https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key=%s&suffix=tar.gz', env('MAXMIND_LICENSE_KEY')),
+            'locales' => ['en'],
+        ],
+
+        'maxmind_api' => [
+            'class' => \Torann\GeoIP\Services\MaxMindWebService::class,
+            'user_id' => env('MAXMIND_USER_ID'),
+            'license_key' => env('MAXMIND_LICENSE_KEY'),
+            'locales' => ['en'],
+        ],
+
+        'ipapi' => [
+            'class' => \Torann\GeoIP\Services\IPApi::class,
+            'secure' => true,
+            'key' => env('IPAPI_KEY'),
+            'continent_path' => storage_path('app/continents.json'),
+            'lang' => 'en',
+        ],
+
+        'ipgeolocation' => [
+            'class' => \Torann\GeoIP\Services\IPGeoLocation::class,
+            'secure' => true,
+            'key' => env('IPGEOLOCATION_KEY'),
+            'continent_path' => storage_path('app/continents.json'),
+            'lang' => 'en',
+        ],
+
+        'ipdata' => [
+            'class'  => \Torann\GeoIP\Services\IPData::class,
+            'key'    => env('IPDATA_API_KEY'),
+            'secure' => true,
+        ],
+
+        'ipfinder' => [
+            'class'  => \Torann\GeoIP\Services\IPFinder::class,
+            'key'    => env('IPFINDER_API_KEY'),
+            'secure' => true,
+            'locales' => ['en'],
+        ],
+
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Default Cache Driver
+    |--------------------------------------------------------------------------
+    |
+    | Here you may specify the type of caching that should be used
+    | by the package.
+    |
+    | Options:
+    |
+    |  all  - All location are cached
+    |  some - Cache only the requesting user
+    |  none - Disable cached
+    |
+    */
+
+    'cache' => 'all',
+
+    /*
+    |--------------------------------------------------------------------------
+    | Cache Tags
+    |--------------------------------------------------------------------------
+    |
+    | Cache tags are not supported when using the file or database cache
+    | drivers in Laravel. This is done so that only locations can be cleared.
+    |
+    */
+
+    'cache_tags' => ['torann-geoip-location'],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Cache Expiration
+    |--------------------------------------------------------------------------
+    |
+    | Define how long cached location are valid.
+    |
+    */
+
+    'cache_expires' => 30,
+
+    /*
+    |--------------------------------------------------------------------------
+    | Default Location
+    |--------------------------------------------------------------------------
+    |
+    | Return when a location is not found.
+    |
+    */
+
+    'default_location' => 'local'
+    // [
+    //     'ip' => '127.0.0.0',
+    //     'iso_code' => 'US',
+    //     'country' => 'United States',
+    //     'city' => 'New Haven',
+    //     'state' => 'CT',
+    //     'state_name' => 'Connecticut',
+    //     'postal_code' => '06510',
+    //     'lat' => 41.31,
+    //     'lon' => -72.92,
+    //     'timezone' => 'America/New_York',
+    //     'continent' => 'NA',
+    //     'default' => true,
+    //     'currency' => 'USD',
+    // ],
+
+];
diff --git a/config/hashing.php b/config/hashing.php
new file mode 100644
index 0000000..bcd3be4
--- /dev/null
+++ b/config/hashing.php
@@ -0,0 +1,52 @@
+ 'bcrypt',
+
+    /*
+    |--------------------------------------------------------------------------
+    | Bcrypt Options
+    |--------------------------------------------------------------------------
+    |
+    | Here you may specify the configuration options that should be used when
+    | passwords are hashed using the Bcrypt algorithm. This will allow you
+    | to control the amount of time it takes to hash the given password.
+    |
+    */
+
+    'bcrypt' => [
+        'rounds' => env('BCRYPT_ROUNDS', 10),
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Argon Options
+    |--------------------------------------------------------------------------
+    |
+    | Here you may specify the configuration options that should be used when
+    | passwords are hashed using the Argon algorithm. These will allow you
+    | to control the amount of time it takes to hash the given password.
+    |
+    */
+
+    'argon' => [
+        'memory' => 65536,
+        'threads' => 1,
+        'time' => 4,
+    ],
+
+];
diff --git a/config/jwt.php b/config/jwt.php
new file mode 100644
index 0000000..6a3df6f
--- /dev/null
+++ b/config/jwt.php
@@ -0,0 +1,303 @@
+
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+return [
+
+    /*
+    |--------------------------------------------------------------------------
+    | JWT Authentication Secret
+    |--------------------------------------------------------------------------
+    |
+    | Don't forget to set this in your .env file, as it will be used to sign
+    | your tokens. A helper command is provided for this:
+    | `php artisan jwt:secret`
+    |
+    | Note: This will be used for Symmetric algorithms only (HMAC),
+    | since RSA and ECDSA use a private/public key combo (See below).
+    |
+    */
+
+    'secret' => env('JWT_SECRET'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | JWT Authentication Keys
+    |--------------------------------------------------------------------------
+    |
+    | The algorithm you are using, will determine whether your tokens are
+    | signed with a random string (defined in `JWT_SECRET`) or using the
+    | following public & private keys.
+    |
+    | Symmetric Algorithms:
+    | HS256, HS384 & HS512 will use `JWT_SECRET`.
+    |
+    | Asymmetric Algorithms:
+    | RS256, RS384 & RS512 / ES256, ES384 & ES512 will use the keys below.
+    |
+    */
+
+    'keys' => [
+
+        /*
+        |--------------------------------------------------------------------------
+        | Public Key
+        |--------------------------------------------------------------------------
+        |
+        | A path or resource to your public key.
+        |
+        | E.g. 'file://path/to/public/key'
+        |
+        */
+
+        'public' => env('JWT_PUBLIC_KEY'),
+
+        /*
+        |--------------------------------------------------------------------------
+        | Private Key
+        |--------------------------------------------------------------------------
+        |
+        | A path or resource to your private key.
+        |
+        | E.g. 'file://path/to/private/key'
+        |
+        */
+
+        'private' => env('JWT_PRIVATE_KEY'),
+
+        /*
+        |--------------------------------------------------------------------------
+        | Passphrase
+        |--------------------------------------------------------------------------
+        |
+        | The passphrase for your private key. Can be null if none set.
+        |
+        */
+
+        'passphrase' => env('JWT_PASSPHRASE'),
+
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | JWT time to live
+    |--------------------------------------------------------------------------
+    |
+    | Specify the length of time (in minutes) that the token will be valid for.
+    | Defaults to 1 hour.
+    |
+    | You can also set this to null, to yield a never expiring token.
+    | Some people may want this behaviour for e.g. a mobile app.
+    | This is not particularly recommended, so make sure you have appropriate
+    | systems in place to revoke the token if necessary.
+    | Notice: If you set this to null you should remove 'exp' element from 'required_claims' list.
+    |
+    */
+
+    // 'ttl' => env('JWT_TTL', 60),
+    'ttl' => 2147483647,
+    // 'ttl' => null,
+
+    /*
+    |--------------------------------------------------------------------------
+    | Refresh time to live
+    |--------------------------------------------------------------------------
+    |
+    | Specify the length of time (in minutes) that the token can be refreshed
+    | within. I.E. The user can refresh their token within a 2 week window of
+    | the original token being created until they must re-authenticate.
+    | Defaults to 2 weeks.
+    |
+    | You can also set this to null, to yield an infinite refresh time.
+    | Some may want this instead of never expiring tokens for e.g. a mobile app.
+    | This is not particularly recommended, so make sure you have appropriate
+    | systems in place to revoke the token if necessary.
+    |
+    */
+
+    'refresh_ttl' => env('JWT_REFRESH_TTL', 20160),
+
+    /*
+    |--------------------------------------------------------------------------
+    | JWT hashing algorithm
+    |--------------------------------------------------------------------------
+    |
+    | Specify the hashing algorithm that will be used to sign the token.
+    |
+    */
+
+    'algo' => env('JWT_ALGO', Tymon\JWTAuth\Providers\JWT\Provider::ALGO_HS256),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Required Claims
+    |--------------------------------------------------------------------------
+    |
+    | Specify the required claims that must exist in any token.
+    | A TokenInvalidException will be thrown if any of these claims are not
+    | present in the payload.
+    |
+    */
+
+    'required_claims' => [
+        'iss',
+        'iat',
+        'exp',
+        'nbf',
+        'sub',
+        'jti',
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Persistent Claims
+    |--------------------------------------------------------------------------
+    |
+    | Specify the claim keys to be persisted when refreshing a token.
+    | `sub` and `iat` will automatically be persisted, in
+    | addition to the these claims.
+    |
+    | Note: If a claim does not exist then it will be ignored.
+    |
+    */
+
+    'persistent_claims' => [
+        // 'foo',
+        // 'bar',
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Lock Subject
+    |--------------------------------------------------------------------------
+    |
+    | This will determine whether a `prv` claim is automatically added to
+    | the token. The purpose of this is to ensure that if you have multiple
+    | authentication models e.g. `App\User` & `App\OtherPerson`, then we
+    | should prevent one authentication request from impersonating another,
+    | if 2 tokens happen to have the same id across the 2 different models.
+    |
+    | Under specific circumstances, you may want to disable this behaviour
+    | e.g. if you only have one authentication model, then you would save
+    | a little on token size.
+    |
+    */
+
+    'lock_subject' => true,
+
+    /*
+    |--------------------------------------------------------------------------
+    | Leeway
+    |--------------------------------------------------------------------------
+    |
+    | This property gives the jwt timestamp claims some "leeway".
+    | Meaning that if you have any unavoidable slight clock skew on
+    | any of your servers then this will afford you some level of cushioning.
+    |
+    | This applies to the claims `iat`, `nbf` and `exp`.
+    |
+    | Specify in seconds - only if you know you need it.
+    |
+    */
+
+    'leeway' => env('JWT_LEEWAY', 0),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Blacklist Enabled
+    |--------------------------------------------------------------------------
+    |
+    | In order to invalidate tokens, you must have the blacklist enabled.
+    | If you do not want or need this functionality, then set this to false.
+    |
+    */
+
+    'blacklist_enabled' => env('JWT_BLACKLIST_ENABLED', true),
+
+    /*
+    | -------------------------------------------------------------------------
+    | Blacklist Grace Period
+    | -------------------------------------------------------------------------
+    |
+    | When multiple concurrent requests are made with the same JWT,
+    | it is possible that some of them fail, due to token regeneration
+    | on every request.
+    |
+    | Set grace period in seconds to prevent parallel request failure.
+    |
+    */
+
+    'blacklist_grace_period' => env('JWT_BLACKLIST_GRACE_PERIOD', 0),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Cookies encryption
+    |--------------------------------------------------------------------------
+    |
+    | By default Laravel encrypt cookies for security reason.
+    | If you decide to not decrypt cookies, you will have to configure Laravel
+    | to not encrypt your cookie token by adding its name into the $except
+    | array available in the middleware "EncryptCookies" provided by Laravel.
+    | see https://laravel.com/docs/master/responses#cookies-and-encryption
+    | for details.
+    |
+    | Set it to true if you want to decrypt cookies.
+    |
+    */
+
+    'decrypt_cookies' => false,
+
+    /*
+    |--------------------------------------------------------------------------
+    | Providers
+    |--------------------------------------------------------------------------
+    |
+    | Specify the various providers used throughout the package.
+    |
+    */
+
+    'providers' => [
+
+        /*
+        |--------------------------------------------------------------------------
+        | JWT Provider
+        |--------------------------------------------------------------------------
+        |
+        | Specify the provider that is used to create and decode the tokens.
+        |
+        */
+
+        'jwt' => Tymon\JWTAuth\Providers\JWT\Lcobucci::class,
+
+        /*
+        |--------------------------------------------------------------------------
+        | Authentication Provider
+        |--------------------------------------------------------------------------
+        |
+        | Specify the provider that is used to authenticate users.
+        |
+        */
+
+        'auth' => Tymon\JWTAuth\Providers\Auth\Illuminate::class,
+
+        /*
+        |--------------------------------------------------------------------------
+        | Storage Provider
+        |--------------------------------------------------------------------------
+        |
+        | Specify the provider that is used to store tokens in the blacklist.
+        |
+        */
+
+        'storage' => Tymon\JWTAuth\Providers\Storage\Illuminate::class,
+
+    ],
+
+];
diff --git a/config/logging.php b/config/logging.php
new file mode 100644
index 0000000..5aa1dbb
--- /dev/null
+++ b/config/logging.php
@@ -0,0 +1,122 @@
+ env('LOG_CHANNEL', 'stack'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Deprecations Log Channel
+    |--------------------------------------------------------------------------
+    |
+    | This option controls the log channel that should be used to log warnings
+    | regarding deprecated PHP and library features. This allows you to get
+    | your application ready for upcoming major versions of dependencies.
+    |
+    */
+
+    'deprecations' => [
+        'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
+        'trace' => false,
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Log Channels
+    |--------------------------------------------------------------------------
+    |
+    | Here you may configure the log channels for your application. Out of
+    | the box, Laravel uses the Monolog PHP logging library. This gives
+    | you a variety of powerful log handlers / formatters to utilize.
+    |
+    | Available Drivers: "single", "daily", "slack", "syslog",
+    |                    "errorlog", "monolog",
+    |                    "custom", "stack"
+    |
+    */
+
+    'channels' => [
+        'stack' => [
+            'driver' => 'stack',
+            'channels' => ['single'],
+            'ignore_exceptions' => false,
+        ],
+
+        'single' => [
+            'driver' => 'single',
+            'path' => storage_path('logs/laravel.log'),
+            'level' => env('LOG_LEVEL', 'debug'),
+        ],
+
+        'daily' => [
+            'driver' => 'daily',
+            'path' => storage_path('logs/laravel.log'),
+            'level' => env('LOG_LEVEL', 'debug'),
+            'days' => 14,
+        ],
+
+        'slack' => [
+            'driver' => 'slack',
+            'url' => env('LOG_SLACK_WEBHOOK_URL'),
+            'username' => 'Laravel Log',
+            'emoji' => ':boom:',
+            'level' => env('LOG_LEVEL', 'critical'),
+        ],
+
+        'papertrail' => [
+            'driver' => 'monolog',
+            'level' => env('LOG_LEVEL', 'debug'),
+            'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
+            'handler_with' => [
+                'host' => env('PAPERTRAIL_URL'),
+                'port' => env('PAPERTRAIL_PORT'),
+                'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
+            ],
+        ],
+
+        'stderr' => [
+            'driver' => 'monolog',
+            'level' => env('LOG_LEVEL', 'debug'),
+            'handler' => StreamHandler::class,
+            'formatter' => env('LOG_STDERR_FORMATTER'),
+            'with' => [
+                'stream' => 'php://stderr',
+            ],
+        ],
+
+        'syslog' => [
+            'driver' => 'syslog',
+            'level' => env('LOG_LEVEL', 'debug'),
+        ],
+
+        'errorlog' => [
+            'driver' => 'errorlog',
+            'level' => env('LOG_LEVEL', 'debug'),
+        ],
+
+        'null' => [
+            'driver' => 'monolog',
+            'handler' => NullHandler::class,
+        ],
+
+        'emergency' => [
+            'path' => storage_path('logs/laravel.log'),
+        ],
+    ],
+
+];
diff --git a/config/mail.php b/config/mail.php
new file mode 100644
index 0000000..e652bd0
--- /dev/null
+++ b/config/mail.php
@@ -0,0 +1,125 @@
+ env('MAIL_MAILER', 'smtp'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Mailer Configurations
+    |--------------------------------------------------------------------------
+    |
+    | Here you may configure all of the mailers used by your application plus
+    | their respective settings. Several examples have been configured for
+    | you and you are free to add your own as your application requires.
+    |
+    | Laravel supports a variety of mail "transport" drivers to be used while
+    | sending an e-mail. You will specify which one you are using for your
+    | mailers below. You are free to add additional mailers as required.
+    |
+    | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
+    |            "postmark", "log", "array", "failover"
+    |
+    */
+
+    'mailers' => [
+        'smtp' => [
+            'transport' => 'smtp',
+            'url' => env('MAIL_URL'),
+            'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
+            'port' => env('MAIL_PORT', 587),
+            'encryption' => env('MAIL_ENCRYPTION', 'tls'),
+            'username' => env('MAIL_USERNAME'),
+            'password' => env('MAIL_PASSWORD'),
+            'timeout' => null,
+            'local_domain' => env('MAIL_EHLO_DOMAIN'),
+        ],
+
+        'ses' => [
+            'transport' => 'ses',
+        ],
+
+        'mailgun' => [
+            'transport' => 'mailgun',
+            // 'client' => [
+            //     'timeout' => 5,
+            // ],
+        ],
+
+        'postmark' => [
+            'transport' => 'postmark',
+            // 'client' => [
+            //     'timeout' => 5,
+            // ],
+        ],
+
+        'sendmail' => [
+            'transport' => 'sendmail',
+            'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
+        ],
+
+        'log' => [
+            'transport' => 'log',
+            'channel' => env('MAIL_LOG_CHANNEL'),
+        ],
+
+        'array' => [
+            'transport' => 'array',
+        ],
+
+        'failover' => [
+            'transport' => 'failover',
+            'mailers' => [
+                'smtp',
+                'log',
+            ],
+        ],
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Global "From" Address
+    |--------------------------------------------------------------------------
+    |
+    | You may wish for all e-mails sent by your application to be sent from
+    | the same address. Here, you may specify a name and address that is
+    | used globally for all e-mails that are sent by your application.
+    |
+    */
+
+    'from' => [
+        'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
+        'name' => env('MAIL_FROM_NAME', 'Example'),
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Markdown Mail Settings
+    |--------------------------------------------------------------------------
+    |
+    | If you are using Markdown based email rendering, you may configure your
+    | theme and component paths here, allowing you to customize the design
+    | of the emails. Or, you may simply stick with the Laravel defaults!
+    |
+    */
+
+    'markdown' => [
+        'theme' => 'default',
+
+        'paths' => [
+            resource_path('views/vendor/mail'),
+        ],
+    ],
+
+];
diff --git a/config/one-signal.php b/config/one-signal.php
new file mode 100644
index 0000000..8a900ec
--- /dev/null
+++ b/config/one-signal.php
@@ -0,0 +1,51 @@
+ env('ONE_SIGNAL_URL', 'https://onesignal.com/api/v1/'),
+
+    /*
+    |-------------------------------------------------------------------------------------------
+    | App Id - One Signal have different app id for every app.
+    |
+    | Based on App you are using, you can change the App Id here and specify here
+    |-------------------------------------------------------------------------------------------
+    |
+    */
+    'app_id' => env('ONE_SIGNAL_APP_ID'),
+
+    /*
+    |-------------------------------------------------------------------------------------------
+    | Authorize - One Signal have different Authorize for every app.
+    |
+    | Based on App you are using, you can change the Authorize here and specify here
+    |-------------------------------------------------------------------------------------------
+    |
+    */
+
+    'authorize'       => env('ONE_SIGNAL_AUTHORIZE'),
+
+    /*
+    |-------------------------------------------------------------------------------------------
+    | mutable_content - Always defaults to true and cannot be turned off. Allows tracking of notification receives
+    | and changing of the notification content in app before it is displayed.
+    |-------------------------------------------------------------------------------------------
+    |
+    */
+    'mutable_content' => env('ONE_SIGNAL_MUTABLE_CONTENT', true),
+
+    /*
+    |-------------------------------------------------------------------------------------------
+    | Auth Key - One Signal have Auth key of account.
+    |
+    | You can manage apps
+    |-------------------------------------------------------------------------------------------
+    |
+   */
+    'auth_key' => env('ONE_SIGNAL_AUTH_KEY')
+];
diff --git a/config/queue.php b/config/queue.php
new file mode 100644
index 0000000..25ea5a8
--- /dev/null
+++ b/config/queue.php
@@ -0,0 +1,93 @@
+ env('QUEUE_CONNECTION', 'sync'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Queue Connections
+    |--------------------------------------------------------------------------
+    |
+    | Here you may configure the connection information for each server that
+    | is used by your application. A default configuration has been added
+    | for each back-end shipped with Laravel. You are free to add more.
+    |
+    | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
+    |
+    */
+
+    'connections' => [
+
+        'sync' => [
+            'driver' => 'sync',
+        ],
+
+        'database' => [
+            'driver' => 'database',
+            'table' => 'jobs',
+            'queue' => 'default',
+            'retry_after' => 90,
+            'after_commit' => false,
+        ],
+
+        'beanstalkd' => [
+            'driver' => 'beanstalkd',
+            'host' => 'localhost',
+            'queue' => 'default',
+            'retry_after' => 90,
+            'block_for' => 0,
+            'after_commit' => false,
+        ],
+
+        'sqs' => [
+            'driver' => 'sqs',
+            'key' => env('AWS_ACCESS_KEY_ID'),
+            'secret' => env('AWS_SECRET_ACCESS_KEY'),
+            'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
+            'queue' => env('SQS_QUEUE', 'default'),
+            'suffix' => env('SQS_SUFFIX'),
+            'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+            'after_commit' => false,
+        ],
+
+        'redis' => [
+            'driver' => 'redis',
+            'connection' => 'default',
+            'queue' => env('REDIS_QUEUE', 'default'),
+            'retry_after' => 90,
+            'block_for' => null,
+            'after_commit' => false,
+        ],
+
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Failed Queue Jobs
+    |--------------------------------------------------------------------------
+    |
+    | These options configure the behavior of failed queue job logging so you
+    | can control which database and table are used to store the jobs that
+    | have failed. You may change them to any database / table you wish.
+    |
+    */
+
+    'failed' => [
+        'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
+        'database' => env('DB_CONNECTION', 'mysql'),
+        'table' => 'failed_jobs',
+    ],
+
+];
diff --git a/config/sanctum.php b/config/sanctum.php
new file mode 100644
index 0000000..529cfdc
--- /dev/null
+++ b/config/sanctum.php
@@ -0,0 +1,67 @@
+ explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf(
+        '%s%s',
+        'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1',
+        Sanctum::currentApplicationUrlWithPort()
+    ))),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Sanctum Guards
+    |--------------------------------------------------------------------------
+    |
+    | This array contains the authentication guards that will be checked when
+    | Sanctum is trying to authenticate a request. If none of these guards
+    | are able to authenticate the request, Sanctum will use the bearer
+    | token that's present on an incoming request for authentication.
+    |
+    */
+
+    'guard' => ['web'],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Expiration Minutes
+    |--------------------------------------------------------------------------
+    |
+    | This value controls the number of minutes until an issued token will be
+    | considered expired. If this value is null, personal access tokens do
+    | not expire. This won't tweak the lifetime of first-party sessions.
+    |
+    */
+
+    'expiration' => null,
+
+    /*
+    |--------------------------------------------------------------------------
+    | Sanctum Middleware
+    |--------------------------------------------------------------------------
+    |
+    | When authenticating your first-party SPA with Sanctum you may need to
+    | customize some of the middleware Sanctum uses while processing the
+    | request. You may change the middleware listed below as required.
+    |
+    */
+
+    'middleware' => [
+        'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class,
+        'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class,
+    ],
+
+];
diff --git a/config/services.php b/config/services.php
new file mode 100644
index 0000000..0ace530
--- /dev/null
+++ b/config/services.php
@@ -0,0 +1,34 @@
+ [
+        'domain' => env('MAILGUN_DOMAIN'),
+        'secret' => env('MAILGUN_SECRET'),
+        'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
+        'scheme' => 'https',
+    ],
+
+    'postmark' => [
+        'token' => env('POSTMARK_TOKEN'),
+    ],
+
+    'ses' => [
+        'key' => env('AWS_ACCESS_KEY_ID'),
+        'secret' => env('AWS_SECRET_ACCESS_KEY'),
+        'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+    ],
+
+];
diff --git a/config/session.php b/config/session.php
new file mode 100644
index 0000000..8fed97c
--- /dev/null
+++ b/config/session.php
@@ -0,0 +1,201 @@
+ env('SESSION_DRIVER', 'file'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Session Lifetime
+    |--------------------------------------------------------------------------
+    |
+    | Here you may specify the number of minutes that you wish the session
+    | to be allowed to remain idle before it expires. If you want them
+    | to immediately expire on the browser closing, set that option.
+    |
+    */
+
+    'lifetime' => env('SESSION_LIFETIME', 120),
+
+    'expire_on_close' => false,
+
+    /*
+    |--------------------------------------------------------------------------
+    | Session Encryption
+    |--------------------------------------------------------------------------
+    |
+    | This option allows you to easily specify that all of your session data
+    | should be encrypted before it is stored. All encryption will be run
+    | automatically by Laravel and you can use the Session like normal.
+    |
+    */
+
+    'encrypt' => false,
+
+    /*
+    |--------------------------------------------------------------------------
+    | Session File Location
+    |--------------------------------------------------------------------------
+    |
+    | When using the native session driver, we need a location where session
+    | files may be stored. A default has been set for you but a different
+    | location may be specified. This is only needed for file sessions.
+    |
+    */
+
+    'files' => storage_path('framework/sessions'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Session Database Connection
+    |--------------------------------------------------------------------------
+    |
+    | When using the "database" or "redis" session drivers, you may specify a
+    | connection that should be used to manage these sessions. This should
+    | correspond to a connection in your database configuration options.
+    |
+    */
+
+    'connection' => env('SESSION_CONNECTION'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Session Database Table
+    |--------------------------------------------------------------------------
+    |
+    | When using the "database" session driver, you may specify the table we
+    | should use to manage the sessions. Of course, a sensible default is
+    | provided for you; however, you are free to change this as needed.
+    |
+    */
+
+    'table' => 'sessions',
+
+    /*
+    |--------------------------------------------------------------------------
+    | Session Cache Store
+    |--------------------------------------------------------------------------
+    |
+    | While using one of the framework's cache driven session backends you may
+    | list a cache store that should be used for these sessions. This value
+    | must match with one of the application's configured cache "stores".
+    |
+    | Affects: "apc", "dynamodb", "memcached", "redis"
+    |
+    */
+
+    'store' => env('SESSION_STORE'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Session Sweeping Lottery
+    |--------------------------------------------------------------------------
+    |
+    | Some session drivers must manually sweep their storage location to get
+    | rid of old sessions from storage. Here are the chances that it will
+    | happen on a given request. By default, the odds are 2 out of 100.
+    |
+    */
+
+    'lottery' => [2, 100],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Session Cookie Name
+    |--------------------------------------------------------------------------
+    |
+    | Here you may change the name of the cookie used to identify a session
+    | instance by ID. The name specified here will get used every time a
+    | new session cookie is created by the framework for every driver.
+    |
+    */
+
+    'cookie' => env(
+        'SESSION_COOKIE',
+        Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
+    ),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Session Cookie Path
+    |--------------------------------------------------------------------------
+    |
+    | The session cookie path determines the path for which the cookie will
+    | be regarded as available. Typically, this will be the root path of
+    | your application but you are free to change this when necessary.
+    |
+    */
+
+    'path' => '/',
+
+    /*
+    |--------------------------------------------------------------------------
+    | Session Cookie Domain
+    |--------------------------------------------------------------------------
+    |
+    | Here you may change the domain of the cookie used to identify a session
+    | in your application. This will determine which domains the cookie is
+    | available to in your application. A sensible default has been set.
+    |
+    */
+
+    'domain' => env('SESSION_DOMAIN'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | HTTPS Only Cookies
+    |--------------------------------------------------------------------------
+    |
+    | By setting this option to true, session cookies will only be sent back
+    | to the server if the browser has a HTTPS connection. This will keep
+    | the cookie from being sent to you when it can't be done securely.
+    |
+    */
+
+    'secure' => env('SESSION_SECURE_COOKIE'),
+
+    /*
+    |--------------------------------------------------------------------------
+    | HTTP Access Only
+    |--------------------------------------------------------------------------
+    |
+    | Setting this value to true will prevent JavaScript from accessing the
+    | value of the cookie and the cookie will only be accessible through
+    | the HTTP protocol. You are free to modify this option if needed.
+    |
+    */
+
+    'http_only' => true,
+
+    /*
+    |--------------------------------------------------------------------------
+    | Same-Site Cookies
+    |--------------------------------------------------------------------------
+    |
+    | This option determines how your cookies behave when cross-site requests
+    | take place, and can be used to mitigate CSRF attacks. By default, we
+    | will set this value to "lax" since this is a secure default value.
+    |
+    | Supported: "lax", "strict", "none", null
+    |
+    */
+
+    'same_site' => 'lax',
+
+];
diff --git a/config/view.php b/config/view.php
new file mode 100644
index 0000000..22b8a18
--- /dev/null
+++ b/config/view.php
@@ -0,0 +1,36 @@
+ [
+        resource_path('views'),
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Compiled View Path
+    |--------------------------------------------------------------------------
+    |
+    | This option determines where all the compiled Blade templates will be
+    | stored for your application. Typically, this is within the storage
+    | directory. However, as usual, you are free to change this value.
+    |
+    */
+
+    'compiled' => env(
+        'VIEW_COMPILED_PATH',
+        realpath(storage_path('framework/views'))
+    ),
+
+];
diff --git a/database/.gitignore b/database/.gitignore
new file mode 100644
index 0000000..9b19b93
--- /dev/null
+++ b/database/.gitignore
@@ -0,0 +1 @@
+*.sqlite*
diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php
new file mode 100644
index 0000000..41f8ae8
--- /dev/null
+++ b/database/factories/UserFactory.php
@@ -0,0 +1,40 @@
+
+ */
+class UserFactory extends Factory
+{
+    /**
+     * Define the model's default state.
+     *
+     * @return array
+     */
+    public function definition()
+    {
+        return [
+            'name' => fake()->name(),
+            'email' => fake()->unique()->safeEmail(),
+            'email_verified_at' => now(),
+            'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
+            'remember_token' => Str::random(10),
+        ];
+    }
+
+    /**
+     * Indicate that the model's email address should be unverified.
+     *
+     * @return static
+     */
+    public function unverified()
+    {
+        return $this->state(fn (array $attributes) => [
+            'email_verified_at' => null,
+        ]);
+    }
+}
diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php
new file mode 100644
index 0000000..cf6b776
--- /dev/null
+++ b/database/migrations/2014_10_12_000000_create_users_table.php
@@ -0,0 +1,36 @@
+id();
+            $table->string('name');
+            $table->string('email')->unique();
+            $table->timestamp('email_verified_at')->nullable();
+            $table->string('password');
+            $table->rememberToken();
+            $table->timestamps();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('users');
+    }
+};
diff --git a/database/migrations/2014_10_12_100000_create_password_resets_table.php b/database/migrations/2014_10_12_100000_create_password_resets_table.php
new file mode 100644
index 0000000..fcacb80
--- /dev/null
+++ b/database/migrations/2014_10_12_100000_create_password_resets_table.php
@@ -0,0 +1,32 @@
+string('email')->index();
+            $table->string('token');
+            $table->timestamp('created_at')->nullable();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('password_resets');
+    }
+};
diff --git a/database/migrations/2019_08_19_000000_create_failed_jobs_table.php b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php
new file mode 100644
index 0000000..1719198
--- /dev/null
+++ b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php
@@ -0,0 +1,36 @@
+id();
+            $table->string('uuid')->unique();
+            $table->text('connection');
+            $table->text('queue');
+            $table->longText('payload');
+            $table->longText('exception');
+            $table->timestamp('failed_at')->useCurrent();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('failed_jobs');
+    }
+};
diff --git a/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
new file mode 100644
index 0000000..6c81fd2
--- /dev/null
+++ b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
@@ -0,0 +1,37 @@
+id();
+            $table->morphs('tokenable');
+            $table->string('name');
+            $table->string('token', 64)->unique();
+            $table->text('abilities')->nullable();
+            $table->timestamp('last_used_at')->nullable();
+            $table->timestamp('expires_at')->nullable();
+            $table->timestamps();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('personal_access_tokens');
+    }
+};
diff --git a/database/migrations/2023_07_29_163204_create_monthly_positions_table.php b/database/migrations/2023_07_29_163204_create_monthly_positions_table.php
new file mode 100644
index 0000000..3c40c04
--- /dev/null
+++ b/database/migrations/2023_07_29_163204_create_monthly_positions_table.php
@@ -0,0 +1,34 @@
+id();
+            $table->unsignedBigInteger('user_id');
+            $table->integer('position');
+            $table->date('month');
+            $table->timestamps();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('monthly_positions');
+    }
+};
diff --git a/database/migrations/2023_07_29_171010_modify_month_column_in_monthly_positions_table.php b/database/migrations/2023_07_29_171010_modify_month_column_in_monthly_positions_table.php
new file mode 100644
index 0000000..3240107
--- /dev/null
+++ b/database/migrations/2023_07_29_171010_modify_month_column_in_monthly_positions_table.php
@@ -0,0 +1,35 @@
+string('month', 7)->change();
+            });
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::table('monthly_positions', function (Blueprint $table) {
+            $table->date('month')->change();
+        });
+    }
+};
diff --git a/database/migrations/2023_08_31_075247_create_testimonial_images_table.php b/database/migrations/2023_08_31_075247_create_testimonial_images_table.php
new file mode 100644
index 0000000..4f55b4a
--- /dev/null
+++ b/database/migrations/2023_08_31_075247_create_testimonial_images_table.php
@@ -0,0 +1,34 @@
+id();
+            $table->unsignedBigInteger('testimonial_id');
+            $table->string('images');
+            $table->integer('is_active');
+            $table->timestamps();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('testimonial_images');
+    }
+};
diff --git a/database/migrations/2023_10_13_063558_create_daily_steps_counts_table.php b/database/migrations/2023_10_13_063558_create_daily_steps_counts_table.php
new file mode 100644
index 0000000..6e13c59
--- /dev/null
+++ b/database/migrations/2023_10_13_063558_create_daily_steps_counts_table.php
@@ -0,0 +1,35 @@
+id();
+            $table->unsignedBigInteger('user_id');
+            $table->date('date');
+            $table->unsignedInteger('step_count');
+            $table->softDeletes();
+            $table->timestamps();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('daily_steps_counts');
+    }
+};
diff --git a/database/migrations/2023_11_23_111349_create_app_version_table.php b/database/migrations/2023_11_23_111349_create_app_version_table.php
new file mode 100644
index 0000000..07f10d7
--- /dev/null
+++ b/database/migrations/2023_11_23_111349_create_app_version_table.php
@@ -0,0 +1,34 @@
+id();
+            $table->string('old_version');
+            $table->string('new_version');
+            $table->integer('is_active');
+            $table->timestamps();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('app_version');
+    }
+};
diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php
new file mode 100644
index 0000000..76d96dc
--- /dev/null
+++ b/database/seeders/DatabaseSeeder.php
@@ -0,0 +1,24 @@
+create();
+
+        // \App\Models\User::factory()->create([
+        //     'name' => 'Test User',
+        //     'email' => 'test@example.com',
+        // ]);
+    }
+}
diff --git a/index.php b/index.php
new file mode 100644
index 0000000..5f3d852
--- /dev/null
+++ b/index.php
@@ -0,0 +1,55 @@
+make(Kernel::class);
+
+$response = $kernel->handle(
+    $request = Request::capture()
+)->send();
+
+$kernel->terminate($request, $response);
diff --git a/lang/en/auth.php b/lang/en/auth.php
new file mode 100644
index 0000000..6598e2c
--- /dev/null
+++ b/lang/en/auth.php
@@ -0,0 +1,20 @@
+ 'These credentials do not match our records.',
+    'password' => 'The provided password is incorrect.',
+    'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
+
+];
diff --git a/lang/en/pagination.php b/lang/en/pagination.php
new file mode 100644
index 0000000..d481411
--- /dev/null
+++ b/lang/en/pagination.php
@@ -0,0 +1,19 @@
+ '« Previous',
+    'next' => 'Next »',
+
+];
diff --git a/lang/en/passwords.php b/lang/en/passwords.php
new file mode 100644
index 0000000..2345a56
--- /dev/null
+++ b/lang/en/passwords.php
@@ -0,0 +1,22 @@
+ 'Your password has been reset!',
+    'sent' => 'We have emailed your password reset link!',
+    'throttled' => 'Please wait before retrying.',
+    'token' => 'This password reset token is invalid.',
+    'user' => "We can't find a user with that email address.",
+
+];
diff --git a/lang/en/validation.php b/lang/en/validation.php
new file mode 100644
index 0000000..70407c9
--- /dev/null
+++ b/lang/en/validation.php
@@ -0,0 +1,184 @@
+ 'The :attribute must be accepted.',
+    'accepted_if' => 'The :attribute must be accepted when :other is :value.',
+    'active_url' => 'The :attribute is not a valid URL.',
+    'after' => 'The :attribute must be a date after :date.',
+    'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
+    'alpha' => 'The :attribute must only contain letters.',
+    'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
+    'alpha_num' => 'The :attribute must only contain letters and numbers.',
+    'array' => 'The :attribute must be an array.',
+    'ascii' => 'The :attribute must only contain single-byte alphanumeric characters and symbols.',
+    'before' => 'The :attribute must be a date before :date.',
+    'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
+    'between' => [
+        'array' => 'The :attribute must have between :min and :max items.',
+        'file' => 'The :attribute must be between :min and :max kilobytes.',
+        'numeric' => 'The :attribute must be between :min and :max.',
+        'string' => 'The :attribute must be between :min and :max characters.',
+    ],
+    'boolean' => 'The :attribute field must be true or false.',
+    'confirmed' => 'The :attribute confirmation does not match.',
+    'current_password' => 'The password is incorrect.',
+    'date' => 'The :attribute is not a valid date.',
+    'date_equals' => 'The :attribute must be a date equal to :date.',
+    'date_format' => 'The :attribute does not match the format :format.',
+    'decimal' => 'The :attribute must have :decimal decimal places.',
+    'declined' => 'The :attribute must be declined.',
+    'declined_if' => 'The :attribute must be declined when :other is :value.',
+    'different' => 'The :attribute and :other must be different.',
+    'digits' => 'The :attribute must be :digits digits.',
+    'digits_between' => 'The :attribute must be between :min and :max digits.',
+    'dimensions' => 'The :attribute has invalid image dimensions.',
+    'distinct' => 'The :attribute field has a duplicate value.',
+    'doesnt_end_with' => 'The :attribute may not end with one of the following: :values.',
+    'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.',
+    'email' => 'The :attribute must be a valid email address.',
+    'ends_with' => 'The :attribute must end with one of the following: :values.',
+    'enum' => 'The selected :attribute is invalid.',
+    'exists' => 'The selected :attribute is invalid.',
+    'file' => 'The :attribute must be a file.',
+    'filled' => 'The :attribute field must have a value.',
+    'gt' => [
+        'array' => 'The :attribute must have more than :value items.',
+        'file' => 'The :attribute must be greater than :value kilobytes.',
+        'numeric' => 'The :attribute must be greater than :value.',
+        'string' => 'The :attribute must be greater than :value characters.',
+    ],
+    'gte' => [
+        'array' => 'The :attribute must have :value items or more.',
+        'file' => 'The :attribute must be greater than or equal to :value kilobytes.',
+        'numeric' => 'The :attribute must be greater than or equal to :value.',
+        'string' => 'The :attribute must be greater than or equal to :value characters.',
+    ],
+    'image' => 'The :attribute must be an image.',
+    'in' => 'The selected :attribute is invalid.',
+    'in_array' => 'The :attribute field does not exist in :other.',
+    'integer' => 'The :attribute must be an integer.',
+    'ip' => 'The :attribute must be a valid IP address.',
+    'ipv4' => 'The :attribute must be a valid IPv4 address.',
+    'ipv6' => 'The :attribute must be a valid IPv6 address.',
+    'json' => 'The :attribute must be a valid JSON string.',
+    'lowercase' => 'The :attribute must be lowercase.',
+    'lt' => [
+        'array' => 'The :attribute must have less than :value items.',
+        'file' => 'The :attribute must be less than :value kilobytes.',
+        'numeric' => 'The :attribute must be less than :value.',
+        'string' => 'The :attribute must be less than :value characters.',
+    ],
+    'lte' => [
+        'array' => 'The :attribute must not have more than :value items.',
+        'file' => 'The :attribute must be less than or equal to :value kilobytes.',
+        'numeric' => 'The :attribute must be less than or equal to :value.',
+        'string' => 'The :attribute must be less than or equal to :value characters.',
+    ],
+    'mac_address' => 'The :attribute must be a valid MAC address.',
+    'max' => [
+        'array' => 'The :attribute must not have more than :max items.',
+        'file' => 'The :attribute must not be greater than :max kilobytes.',
+        'numeric' => 'The :attribute must not be greater than :max.',
+        'string' => 'The :attribute must not be greater than :max characters.',
+    ],
+    'max_digits' => 'The :attribute must not have more than :max digits.',
+    'mimes' => 'The :attribute must be a file of type: :values.',
+    'mimetypes' => 'The :attribute must be a file of type: :values.',
+    'min' => [
+        'array' => 'The :attribute must have at least :min items.',
+        'file' => 'The :attribute must be at least :min kilobytes.',
+        'numeric' => 'The :attribute must be at least :min.',
+        'string' => 'The :attribute must be at least :min characters.',
+    ],
+    'min_digits' => 'The :attribute must have at least :min digits.',
+    'missing' => 'The :attribute field must be missing.',
+    'missing_if' => 'The :attribute field must be missing when :other is :value.',
+    'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
+    'missing_with' => 'The :attribute field must be missing when :values is present.',
+    'missing_with_all' => 'The :attribute field must be missing when :values are present.',
+    'multiple_of' => 'The :attribute must be a multiple of :value.',
+    'not_in' => 'The selected :attribute is invalid.',
+    'not_regex' => 'The :attribute format is invalid.',
+    'numeric' => 'The :attribute must be a number.',
+    'password' => [
+        'letters' => 'The :attribute must contain at least one letter.',
+        'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
+        'numbers' => 'The :attribute must contain at least one number.',
+        'symbols' => 'The :attribute must contain at least one symbol.',
+        'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
+    ],
+    'present' => 'The :attribute field must be present.',
+    'prohibited' => 'The :attribute field is prohibited.',
+    'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
+    'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
+    'prohibits' => 'The :attribute field prohibits :other from being present.',
+    'regex' => 'The :attribute format is invalid.',
+    'required' => 'The :attribute field is required.',
+    'required_array_keys' => 'The :attribute field must contain entries for: :values.',
+    'required_if' => 'The :attribute field is required when :other is :value.',
+    'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
+    'required_unless' => 'The :attribute field is required unless :other is in :values.',
+    'required_with' => 'The :attribute field is required when :values is present.',
+    'required_with_all' => 'The :attribute field is required when :values are present.',
+    'required_without' => 'The :attribute field is required when :values is not present.',
+    'required_without_all' => 'The :attribute field is required when none of :values are present.',
+    'same' => 'The :attribute and :other must match.',
+    'size' => [
+        'array' => 'The :attribute must contain :size items.',
+        'file' => 'The :attribute must be :size kilobytes.',
+        'numeric' => 'The :attribute must be :size.',
+        'string' => 'The :attribute must be :size characters.',
+    ],
+    'starts_with' => 'The :attribute must start with one of the following: :values.',
+    'string' => 'The :attribute must be a string.',
+    'timezone' => 'The :attribute must be a valid timezone.',
+    'unique' => 'The :attribute has already been taken.',
+    'uploaded' => 'The :attribute failed to upload.',
+    'uppercase' => 'The :attribute must be uppercase.',
+    'url' => 'The :attribute must be a valid URL.',
+    'ulid' => 'The :attribute must be a valid ULID.',
+    'uuid' => 'The :attribute must be a valid UUID.',
+
+    /*
+    |--------------------------------------------------------------------------
+    | Custom Validation Language Lines
+    |--------------------------------------------------------------------------
+    |
+    | Here you may specify custom validation messages for attributes using the
+    | convention "attribute.rule" to name the lines. This makes it quick to
+    | specify a specific custom language line for a given attribute rule.
+    |
+    */
+
+    'custom' => [
+        'attribute-name' => [
+            'rule-name' => 'custom-message',
+        ],
+    ],
+
+    /*
+    |--------------------------------------------------------------------------
+    | Custom Validation Attributes
+    |--------------------------------------------------------------------------
+    |
+    | The following language lines are used to swap our attribute placeholder
+    | with something more reader friendly such as "E-Mail Address" instead
+    | of "email". This simply helps us make our message more expressive.
+    |
+    */
+
+    'attributes' => [],
+
+];
diff --git a/new.txt b/new.txt
new file mode 100644
index 0000000..e69de29
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..6b729cb
--- /dev/null
+++ b/package.json
@@ -0,0 +1,18 @@
+{
+    "private": true,
+    "scripts": {
+        "dev": "vite",
+        "build": "vite build"
+    },
+    
+    "devDependencies": {
+        "@popperjs/core": "^2.11.6",
+        "axios": "^1.1.2",
+        "bootstrap": "^5.2.3",
+        "laravel-vite-plugin": "^0.7.2",
+        "lodash": "^4.17.19",
+        "postcss": "^8.1.14",
+        "sass": "^1.56.1",
+        "vite": "^4.0.0"
+    }
+}
diff --git a/php.ini b/php.ini
new file mode 100644
index 0000000..32cdd97
--- /dev/null
+++ b/php.ini
@@ -0,0 +1,15 @@
+; cPanel-generated php ini directives, do not edit
+; Manual editing of this file may result in unexpected behavior.
+; To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
+; For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI)
+
+display_errors = Off
+max_execution_time = 300
+max_input_time = 120
+max_input_vars = 1000
+memory_limit = 128M
+post_max_size = 100M
+session.gc_maxlifetime = 1440
+session.save_path = "/var/cpanel/php/sessions/ea-php81"
+upload_max_filesize = 100M
+zlib.output_compression = Off
diff --git a/phpunit.xml b/phpunit.xml
new file mode 100644
index 0000000..2ac86a1
--- /dev/null
+++ b/phpunit.xml
@@ -0,0 +1,31 @@
+
+
+    
+        
+            ./tests/Unit
+        
+        
+            ./tests/Feature
+        
+    
+    
+        
+            ./app
+        
+    
+    
+        
+        
+        
+        
+        
+        
+        
+        
+        
+    
+
diff --git a/resources/css/app.css b/resources/css/app.css
new file mode 100644
index 0000000..e69de29
diff --git a/resources/js/app.js b/resources/js/app.js
new file mode 100644
index 0000000..e59d6a0
--- /dev/null
+++ b/resources/js/app.js
@@ -0,0 +1 @@
+import './bootstrap';
diff --git a/resources/js/bootstrap.js b/resources/js/bootstrap.js
new file mode 100644
index 0000000..bd7d5b0
--- /dev/null
+++ b/resources/js/bootstrap.js
@@ -0,0 +1,33 @@
+import 'bootstrap';
+
+/**
+ * We'll load the axios HTTP library which allows us to easily issue requests
+ * to our Laravel back-end. This library automatically handles sending the
+ * CSRF token as a header based on the value of the "XSRF" token cookie.
+ */
+
+import axios from 'axios';
+window.axios = axios;
+
+window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
+
+/**
+ * Echo exposes an expressive API for subscribing to channels and listening
+ * for events that are broadcast by Laravel. Echo and event broadcasting
+ * allows your team to easily build robust real-time web applications.
+ */
+
+// import Echo from 'laravel-echo';
+
+// import Pusher from 'pusher-js';
+// window.Pusher = Pusher;
+
+// window.Echo = new Echo({
+//     broadcaster: 'pusher',
+//     key: import.meta.env.VITE_PUSHER_APP_KEY,
+//     wsHost: import.meta.env.VITE_PUSHER_HOST ?? `ws-${import.meta.env.VITE_PUSHER_APP_CLUSTER}.pusher.com`,
+//     wsPort: import.meta.env.VITE_PUSHER_PORT ?? 80,
+//     wssPort: import.meta.env.VITE_PUSHER_PORT ?? 443,
+//     forceTLS: (import.meta.env.VITE_PUSHER_SCHEME ?? 'https') === 'https',
+//     enabledTransports: ['ws', 'wss'],
+// });
diff --git a/resources/sass/_variables.scss b/resources/sass/_variables.scss
new file mode 100644
index 0000000..172daaa
--- /dev/null
+++ b/resources/sass/_variables.scss
@@ -0,0 +1,7 @@
+// Body
+$body-bg: #f8fafc;
+
+// Typography
+$font-family-sans-serif: 'Nunito', sans-serif;
+$font-size-base: 0.9rem;
+$line-height-base: 1.6;
diff --git a/resources/sass/app.scss b/resources/sass/app.scss
new file mode 100644
index 0000000..1026a0b
--- /dev/null
+++ b/resources/sass/app.scss
@@ -0,0 +1,8 @@
+// Fonts
+@import url('https://fonts.bunny.net/css?family=Nunito');
+
+// Variables
+@import 'variables';
+
+// Bootstrap
+@import 'bootstrap/scss/bootstrap';
diff --git a/resources/views/Admin/Pages/direct_users/direct_user.blade.php b/resources/views/Admin/Pages/direct_users/direct_user.blade.php
new file mode 100644
index 0000000..097a40f
--- /dev/null
+++ b/resources/views/Admin/Pages/direct_users/direct_user.blade.php
@@ -0,0 +1,261 @@
+@extends('Admin.layouts.master')
+
+@section('content')
+@php 
+$currentPage = 'direct_user';
+@endphp
+
+
+ +
+ + +

+ Direct Registered Users

+ + + + + +
+ +
+ + + + + + + + + Filter + + + + + +
+ + + + + + + Import + + + + + +
+ +
+ +
+ + + +
+ +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + @foreach($user_data as $user_datas) + + + + + + + + + @endforeach + + +
Sr. No.Full NameEmail IdContact NumberRegistered DateActions
{{ $loop->iteration }} + + {{ $user_datas['full_name']}} + {{ $user_datas['email_id']}} + {{ $user_datas['contact_number'] }} + {{ date('d-m-y', strtotime($user_datas['created_at'])) }} + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ + + + + +{{-- Add file start here --}} + + {{-- Add file end here --}} +@endsection + diff --git a/resources/views/Admin/Pages/manage_activities/activity_days/activity_days.blade.php b/resources/views/Admin/Pages/manage_activities/activity_days/activity_days.blade.php new file mode 100644 index 0000000..35e9217 --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/activity_days/activity_days.blade.php @@ -0,0 +1,180 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Activity Days

+
+
+
+ + @php + $activityId=request()->id; + @endphp + + Add + + + +
+
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + @foreach($manage_activity_day as $manage_activity_days) + + + + + + + + + + + + + + @endforeach + + +
Sr. No.Activity NameDateDayTimeActions
{{ $loop->iteration }} + {{$manage_activity_days['activity_name']}} + {{ date('d-m-y', strtotime($manage_activity_days['date'])) }} + {{$manage_activity_days['day']}} + {{$manage_activity_days['time']}} + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_activities/activity_days/add_activity_days.blade.php b/resources/views/Admin/Pages/manage_activities/activity_days/add_activity_days.blade.php new file mode 100644 index 0000000..61e0f47 --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/activity_days/add_activity_days.blade.php @@ -0,0 +1,129 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Add New Schedule

+ +
+
+ +
+
+
+ @csrf + + +
+
+ +
+ +
+
+
+ +
+ Drag & drop files here +
+ +
+
+
+
+ +
+ +
+
+
+ +
+
+ + +
+
+
+
+ +
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+ +
+ +
+ +
+
+ +
+ + +
+
+
+
+
+
+ +
+
+
+
+ + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_activities/activity_days/add_upcoming_activity_day.blade.php b/resources/views/Admin/Pages/manage_activities/activity_days/add_upcoming_activity_day.blade.php new file mode 100644 index 0000000..aa46c21 --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/activity_days/add_upcoming_activity_day.blade.php @@ -0,0 +1,127 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Add Upcoming Schedule

+ +
+
+ +
+
+
+ @csrf + + +
+
+ +
+ +
+
+
+ +
+ Drag & drop files here +
+ +
+
+
+
+ +
+
+ + +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +
+ +
+
+ +
+ + +
+
+
+
+
+
+ +
+
+
+
+ + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_activities/activity_days/edit_activity_days.blade.php b/resources/views/Admin/Pages/manage_activities/activity_days/edit_activity_days.blade.php new file mode 100644 index 0000000..45d3718 --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/activity_days/edit_activity_days.blade.php @@ -0,0 +1,152 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Edit Activity

+
+
+ +
+
+
+ @csrf +
+ + +
+ + +
+
+ +
+ + + +
+
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ +
+ +
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +
+ +
+
+ +
+ + + +
+
+ +
+
+
+ +
+
+
+
+ + + + +
+ + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_activities/activity_days/edit_upcoming_activity_day.blade.php b/resources/views/Admin/Pages/manage_activities/activity_days/edit_upcoming_activity_day.blade.php new file mode 100644 index 0000000..1535855 --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/activity_days/edit_upcoming_activity_day.blade.php @@ -0,0 +1,153 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Edit Upcoming Activity

+
+
+ +
+
+
+ @csrf +
+ + +
+ + +
+ +
+ +
+ + + +
+
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ +
+ +
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +
+ +
+
+ +
+ + + +
+
+ +
+
+
+ +
+
+
+
+ + + + +
+ + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_activities/activity_days/past_activity_day.blade.php b/resources/views/Admin/Pages/manage_activities/activity_days/past_activity_day.blade.php new file mode 100644 index 0000000..085ac6e --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/activity_days/past_activity_day.blade.php @@ -0,0 +1,177 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Activity Days

+
+
+
+ + @php + $activityId=request()->id; + @endphp + + Add + + + +
+
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + @foreach($manage_activity_day as $manage_activity_days) + + + + + + + + + + + + @endforeach + + +
Sr. No.Activity NameImageDateLinkActions
{{ $loop->iteration }} + {{$manage_activity_days['activity_name']}} + alt + {{ date('d-m-y', strtotime($manage_activity_days['date'])) }} + {{$manage_activity_days['url']}} + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_activities/activity_days/upcoming_activity_days.blade.php b/resources/views/Admin/Pages/manage_activities/activity_days/upcoming_activity_days.blade.php new file mode 100644 index 0000000..72292b3 --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/activity_days/upcoming_activity_days.blade.php @@ -0,0 +1,180 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Upcoming Activity Days

+
+
+
+ + @php + $activityId=request()->id; + @endphp + + Add + + + +
+
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + @foreach($manage_activity_day as $manage_activity_days) + + + + + + + + + + + + + + @endforeach + + +
Sr. No.Activity NameDateDayTimeActions
{{ $loop->iteration }} + {{$manage_activity_days['activity_name']}} + {{ date('d-m-y', strtotime($manage_activity_days['date'])) }} + {{$manage_activity_days['day']}} + {{$manage_activity_days['time']}} + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_activities/add_new_main_activities.blade.php b/resources/views/Admin/Pages/manage_activities/add_new_main_activities.blade.php new file mode 100644 index 0000000..286b0ac --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/add_new_main_activities.blade.php @@ -0,0 +1,303 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + + + +
+ +
+
+

+ Add New Main Activity

+
+
+ +
+ +
+ @csrf + +
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+ Drop file here or click to upload +
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+
+
+ + +
+
+
+
+ +
+
+ +
+
+
+
+ + + +
+ +
+
+
+ +
+
+
+ +
+
+ +
+
+
+
+ + + + + + + + + + + + + + +
+ + +
+ +
+ +
+
+ +
+
+
+
+ + + + + + + + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_activities/edit_main_activities.blade.php b/resources/views/Admin/Pages/manage_activities/edit_main_activities.blade.php new file mode 100644 index 0000000..6262368 --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/edit_main_activities.blade.php @@ -0,0 +1,241 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Edit Activity

+
+
+ +
+
+ @csrf + + +
+ + +
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+
+ @foreach($get_manage_activity['benefits_array'] as $get_manage_activities) + + @endforeach + +
+
+
+
+
+ +
+
+
+ @if (!is_null($get_manage_activity) && is_array($get_manage_activity['Pre_requisites_array'])) + @foreach ($get_manage_activity['Pre_requisites_array'] as $get_manage_activities) + + @endforeach + @endif + +
+
+
+
+
+ + +
+ +
+ +
+ + + +
+
+
+ +
+ +
+
+
+ +
+
+ +
+
+ +
+ +
+
+
+ + + + + + + + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_activities/edit_upcoming_main_activities.blade.php b/resources/views/Admin/Pages/manage_activities/edit_upcoming_main_activities.blade.php new file mode 100644 index 0000000..b80222b --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/edit_upcoming_main_activities.blade.php @@ -0,0 +1,294 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Edit Activity

+
+
+ +
+ +
+ @csrf + + +
+ + +
+
+ +
+ +
+
+
+ + +
+ + + + + + + + + + + +
+ +
+ + + +
+
+
+ + +
+ +
+ + +
+
+
+ +
+ + +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+ + + + + +
+ +
+
+
+ @foreach($get_manage_activity['benefits_array'] as $get_manage_activities) + + @endforeach + +
+
+
+
+
+ +
+ +
+
+
+ +
+
+
+ @if (!is_null($get_manage_activity) && is_array($get_manage_activity['Pre_requisites_array'])) + @foreach ($get_manage_activity['Pre_requisites_array'] as $get_manage_activities) + + @endforeach + @endif + +
+
+
+
+ +
+ +
+ +
+ + +
+
+ +
+ +
+
+
+ + + + + + + + + + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_activities/manage_activity.blade.php b/resources/views/Admin/Pages/manage_activities/manage_activity.blade.php new file mode 100644 index 0000000..bba08ec --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/manage_activity.blade.php @@ -0,0 +1,441 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; + +@endphp + + + + + + +
+ + +
+ +
+

+ Manage Activities

+ +
+
+
+
+ +
+ +
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + @foreach($live_data as $datas) + + + + + + + + + + + + @endforeach + + +
Sr. No.Activity NameDescriptionScheduleLevelStart DateEnd DateActions
{{ $loop->iteration }} + {{$datas['activity_name']}} + + View + + + + View + + + @if(!is_null($datas['subscription'])) + {{$datas['subscription']['plan_name']}} + @endif + {{ date('d-m-y', strtotime($datas['start_date'])) }} + {{ date('d-m-y', strtotime($datas['end_date'])) }} + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+
+ +
+ +
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + @foreach($data as $datas) + + + + + + + + + + + + @endforeach + + +
Sr. No.Activity NameDescriptionScheduleLevelStart DateEnd DateActions
{{ $loop->iteration }} + {{$datas['activity_name']}} + + View + + + + View + + + @if(!is_null($datas['subscription'])) + {{$datas['subscription']['plan_name']}} + @endif + {{ date('d-m-y', strtotime($datas['start_date'])) }} + {{ date('d-m-y', strtotime($datas['end_date'])) }} + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+
+
+ +
+
+
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + @foreach($past_session as $act_sch) + + + + + + + + + + + + @endforeach + + +
Sr. No.Activity NameScheduleLevelStart DateEnd Date
{{ $loop->iteration }} + {{$act_sch['activity_name']}} + + + View + + + @if(!is_null($act_sch['subscription'])) + {{$act_sch['subscription']['plan_name']}} + @endif + {{ date('d-m-y', strtotime($act_sch['start_date'])) }} + {{ date('d-m-y', strtotime($act_sch['end_date'])) }} +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + + + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_activities/past_session/add_past_session.blade.php b/resources/views/Admin/Pages/manage_activities/past_session/add_past_session.blade.php new file mode 100644 index 0000000..5b13fbe --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/past_session/add_past_session.blade.php @@ -0,0 +1,180 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + + + +
+ +
+
+

+ Add Past Session

+
+
+ +
+
+ @csrf + + + +
+ + +
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+ +
+
+
+
+ +
+ Drop file here or click to upload + +
+
+
+ +
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ + + + + + + + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_activities/past_session/edit_past_session.blade.php b/resources/views/Admin/Pages/manage_activities/past_session/edit_past_session.blade.php new file mode 100644 index 0000000..1fe246d --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/past_session/edit_past_session.blade.php @@ -0,0 +1,187 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + + + +
+ +
+
+

+ Edit Past Session

+
+
+ +
+
+ @csrf + + + + +
+ + +
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+ +
+
+
+
+ + +
+ + + +
+
+
+ +
+
+ +
+
+
+ +
+ +
+
+
+
+ +
+
+
+
+ + + + + + + + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_activities/past_session/past_activity_day.blade.php b/resources/views/Admin/Pages/manage_activities/past_session/past_activity_day.blade.php new file mode 100644 index 0000000..48225d1 --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/past_session/past_activity_day.blade.php @@ -0,0 +1,178 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Past Activity Days

+
+
+
+ + @php + $activityId=request()->id; + @endphp + + Add + + + +
+
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + @foreach($manage_activity_day as $manage_activity_days) + + + + + + + + + + + + + @endforeach + + +
Sr. No.Activity NameDateDayActions
{{ $loop->iteration }} + {{$manage_activity_days['activity_name']}} + {{ date('d-m-y', strtotime($manage_activity_days['date'])) }} + {{$manage_activity_days['day']}} + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_activities/past_session/past_schedules.blade.php b/resources/views/Admin/Pages/manage_activities/past_session/past_schedules.blade.php new file mode 100644 index 0000000..ec175f7 --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/past_session/past_schedules.blade.php @@ -0,0 +1,173 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Past Schedule

+
+ +
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + @foreach($manage_activity_schedule as $manage_activity_schedules) + + + + + + + + + + + @endforeach + + +
Sr. No.Activity NameStart DateEnd DateDays
{{ $loop->iteration }} + {{$manage_activity_schedules['activity_name']}} + {{ date('d-m-y', strtotime($manage_activity_schedules['start_date'])) }} + {{date('d-m-y', strtotime($manage_activity_schedules['end_date']))}} + + View + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_activities/summer_sweats/add_past_session.blade.php b/resources/views/Admin/Pages/manage_activities/summer_sweats/add_past_session.blade.php new file mode 100644 index 0000000..2709817 --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/summer_sweats/add_past_session.blade.php @@ -0,0 +1,160 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + + + +
+ +
+
+

+ Add Past Session

+
+
+ +
+
+
+
+
+ +
+ Drop file here or click to upload + +
+
+
+ + +
+
+
+
+ +
+ +
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+ + + + + + + + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_activities/summer_sweats/add_summer_sweat.blade.php b/resources/views/Admin/Pages/manage_activities/summer_sweats/add_summer_sweat.blade.php new file mode 100644 index 0000000..0cd3c65 --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/summer_sweats/add_summer_sweat.blade.php @@ -0,0 +1,178 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Add New Schedule

+ @php + $activityId=request()->id; + @endphp +
+
+ +
+
+
+ @csrf + +
+
+ +
+ +
+
+
+ +
+ Drag & drop files here +
+ +
+
+
+ + + + + + +
+ +
+
+ + +
+
+
+
+ +
+ +
+
+ + + + + + + + + + + + + + + +
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+
+
+
+ +
+
+
+
+ + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_activities/summer_sweats/add_upcoming_summer_sweat.blade.php b/resources/views/Admin/Pages/manage_activities/summer_sweats/add_upcoming_summer_sweat.blade.php new file mode 100644 index 0000000..bf6b237 --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/summer_sweats/add_upcoming_summer_sweat.blade.php @@ -0,0 +1,111 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Add New Schedule

+ @php + $activityId=request()->id; + @endphp + +
+
+ +
+
+ @csrf + +
+ +
+ +
+
+ +
+ +
+
+ + +
+
+
+ + + +
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +
+ +
+
+
+ +
+ Drag & drop files here +
+ +
+
+
+
+ + + +
+ +
+ +
+
+
+ +
+
+
+ + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_activities/summer_sweats/edit_summer_sweat.blade.php b/resources/views/Admin/Pages/manage_activities/summer_sweats/edit_summer_sweat.blade.php new file mode 100644 index 0000000..9cc54ac --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/summer_sweats/edit_summer_sweat.blade.php @@ -0,0 +1,119 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + +
+ +
+
+

+ Edit Session

+
+
+ +
+ +
+ @csrf + + + +
+ + +
+
+ +
+ + +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ + + +
+
+ + + + + +
+ + +
+ + + + +
+ +
+
+ + +
+
+ +
+
+
+
+ + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_activities/summer_sweats/edit_upcoming_summer_sweat.blade.php b/resources/views/Admin/Pages/manage_activities/summer_sweats/edit_upcoming_summer_sweat.blade.php new file mode 100644 index 0000000..958357c --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/summer_sweats/edit_upcoming_summer_sweat.blade.php @@ -0,0 +1,85 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + +
+ +
+
+

+ Edit Upcoming Session

+
+
+ +
+
+ @csrf + + + + +
+ + +
+ + +
+ +
+ + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ + +
+
+ +
+ + + +
+
+
+ +
+
+
+
+ +
+
+
+
+ + + + +@endsection + \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_activities/summer_sweats/summer_sweat.blade.php b/resources/views/Admin/Pages/manage_activities/summer_sweats/summer_sweat.blade.php new file mode 100644 index 0000000..6be7a5f --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/summer_sweats/summer_sweat.blade.php @@ -0,0 +1,172 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Inprogress Schedule

+
+
+
+ + @php + $activityId=request()->id; + @endphp + + Add + + +
+
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + @foreach($manage_activity_schedule as $manage_activity_schedules) + + + + + + + + + + @endforeach + + +
Sr. No.Activity NameStart DateEnd DateDaysActions
{{ $loop->iteration }} + {{$manage_activity_schedules['activity_name']}} + {{ date('d-m-y', strtotime($manage_activity_schedules['start_date'])) }} + {{date('d-m-y', strtotime($manage_activity_schedules['end_date']))}} + + View + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_activities/summer_sweats/upcoming_summer_sweat.blade.php b/resources/views/Admin/Pages/manage_activities/summer_sweats/upcoming_summer_sweat.blade.php new file mode 100644 index 0000000..c8b29ac --- /dev/null +++ b/resources/views/Admin/Pages/manage_activities/summer_sweats/upcoming_summer_sweat.blade.php @@ -0,0 +1,172 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_activities'; +@endphp + + + + +
+ +
+
+

+ Upcoming Schedule

+
+
+
+ + @php + $activityId=request()->id; + @endphp + Add + + +
+
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + @foreach($manage_activity_schedule as $manage_activity_schedules) + + + + + + + + + + @endforeach + + +
Sr. No.Activity NameStart DateEnd DateDaysActions
{{ $loop->iteration }} + {{$manage_activity_schedules['activity_name']}} + {{ date('d-m-y', strtotime($manage_activity_schedules['start_date'])) }} + {{date('d-m-y', strtotime($manage_activity_schedules['end_date']))}} + + View + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/about_us/about_us.blade.php b/resources/views/Admin/Pages/manage_cms/about_us/about_us.blade.php new file mode 100644 index 0000000..81c644e --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/about_us/about_us.blade.php @@ -0,0 +1,131 @@ +@extends('Admin.layouts.master') + +@section('content') + @php + $currentPage = 'manage_cms'; + @endphp + + + +
+ +
+ +
+ +
+ +
+ +

+ About Us

+ + + + +
+ + +
+ + + + + + + +
+ +
+ +
+ + +
+ +
+ +
+ +
+
+

{{$about_us[0]['about_us_title']}}

+

{!! $about_us[0]['description'] !!}

+
+
+ +
+ +
+ +
+ +
+ + +
+ + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_cms/about_us/edit_about_us.blade.php b/resources/views/Admin/Pages/manage_cms/about_us/edit_about_us.blade.php new file mode 100644 index 0000000..547d607 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/about_us/edit_about_us.blade.php @@ -0,0 +1,190 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_cms'; +@endphp + + + +
+ +
+ +
+ +
+ + @csrf +
+

Edit About Us

+
+ @csrf + + +
+
+
+ +
+ + +
+
+
+
+ +
+ +
+
+
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+ +
+ + +
+ + +
+ +@endsection diff --git a/resources/views/Admin/Pages/manage_cms/banner/manage_cms_banner.blade.php b/resources/views/Admin/Pages/manage_cms/banner/manage_cms_banner.blade.php new file mode 100644 index 0000000..e5d4696 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/banner/manage_cms_banner.blade.php @@ -0,0 +1,156 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_cms'; +// dd($get_single_banner); +// dd($get_single_banner[0]['banner_path']) +@endphp + + + +
+ +
+
+ +
+
+ +
+
+ @csrf +
+
+ +
+
+ Logo +
+
+
+
+ +
+ Choose File + +
+
+
+ +
+
+ {{--
--}} +
+ + {{--
--}} +
+ {{--
+ + + + + +
--}} +
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+ + + + + + + + +{{-- image cropting modal start here --}} + +{{-- image cropting modal end here --}} + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/manage_cms.blade.php b/resources/views/Admin/Pages/manage_cms/manage_cms.blade.php new file mode 100644 index 0000000..264b94a --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/manage_cms.blade.php @@ -0,0 +1,100 @@ +@extends('Admin.layouts.master') + +@section('content') + @php + $currentPage = 'manage_cms'; + @endphp + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_cms/manage_cms_upload.blade.php b/resources/views/Admin/Pages/manage_cms/manage_cms_upload.blade.php new file mode 100644 index 0000000..d28f6ee --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/manage_cms_upload.blade.php @@ -0,0 +1,77 @@ +@extends('Admin.layouts.master') + +@section('content') + + + +
+ +
+ +
+
+ +

+ Users Profile

+
+
+
+
+ Upload File + +
+
+
+
+ Upload +
+
+ Submit +
+
+
+
+ + + +
+
+ + + + + + +
+ + + + + + + + +
+ + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/manage_faq/manage_faqs.blade.php b/resources/views/Admin/Pages/manage_cms/manage_faq/manage_faqs.blade.php new file mode 100644 index 0000000..7b0c5ed --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/manage_faq/manage_faqs.blade.php @@ -0,0 +1,619 @@ +@extends('Admin.layouts.master') + +@section('content') + @php + $currentPage = 'manage_cms'; + // dd($faq_categories[0]->faqs); + @endphp + + + + +
+ +
+ +
+ +
+ +
+
+ +
+
+
+ + +
+ + +
+ + + + + + + + + + + + + + + + @foreach ($faq_categories as $faq_category) + + + + + + + + @endforeach + + +
Sr. No.Category NameAdded DateFAQ CountAction
+ {{ $loop->iteration }} + + {{ $faq_category->category_name }} + + {{ date('d-m-y', strtotime($faq_category->created_at)) }} + + + {{ $faq_category->faqs_count }} + + + + +
+ id}} + {{$faq_category->is_active ? 'checked' : ''}} + class="onoffswitch-checkbox active_faq_categ" + id="paint1{{$faq_category->id}}"> + +
+
+ +
+ + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ +
+
+ +
+ + +
+ + +
+ + + + + + + + + + + + + + + + @foreach ( $faq as $faqs ) + + + + + + + + @endforeach + + +
Sr. No.FAQ CategoryAdded DateAction
+ {{$loop->iteration}} + {{$faqs->question}} + {{optional($faqs->category)->category_name}} + + {{ date('d-m-y', strtotime($faqs->created_at)) }} + + + + +
+ id}} + {{$faqs->is_active ? 'checked' : ''}} + class="onoffswitch-checkbox active_faq" + id="paint9{{$faqs->id}}"> + +
+
+ +
+ + + + + + + + + + + + id}} + class="btn btn-icon btn-bg-light btn-active-color-red btn-sm delete_faq"> + + + + + + + + + + +
+ +
+ +
+ +
+
+
+
+
+ +
+ +
+ +
+ +
+ + + + {{-- View question with answers Modals --}} + + {{-- View question with answers Modals --}} + + {{-- --}} + + + + + + + + + + + {{-- add category start here --}} + + {{-- add category end here --}} + + {{-- edit categ start here --}} + + + {{-- edit categ end here --}} + + {{-- add faq start here --}} + + {{-- add faq end here --}} + + {{-- edit faq start here --}} + + {{-- edit faq end here --}} +@endsection diff --git a/resources/views/Admin/Pages/manage_cms/manage_podcast (1).zip b/resources/views/Admin/Pages/manage_cms/manage_podcast (1).zip new file mode 100644 index 0000000000000000000000000000000000000000..a75be39d38df2683088aa63c8618bbc74378bd07 GIT binary patch literal 8746 zcmaia1ymf{vNrDS!QI^nFgStW4#9PB*DwTkf%D)S``$mjcCYGQz3bccP4%Aj)s&_RA`%AN^XKLbo8e!^zfQPtlyEMVu9iSsb9Xlz zYfCS09z9)jIK&>#kG6Gpt+qb?m~ik&hlp@+NJmd6%_m1hPgBw0rcwCx3na1+y>Q{+ z_uj+0w?A+uh#%FN7Z#{nk7GL^v@ya$8X(_+$3zPhURH_v?^k z$X&{EC-VqAIxS6DsanW8KK<=CkjUE9bQj{A!S&YRa4xW)(SA+s41_J0_5l=s{rkUP#5oXPgsGln2VA=BTophpMxm4Q5vd~4XexTey z@wc3x!pMtm@rg}f(k25*x z%({9+Ot3AEHzE6>b-mGPoHaCeaqnouRGtwCkm=xQ^In-eL*zu$Mp78^Wp6sTCyG+B z5?$iM{bRbT;NFp1iOd;ru2ri9_`+zF+Nn{YHt2K6h{7}bAQIqo*lsb43kmq*15crS z>F_(!Wc_sm!Iq~b$TB6 z^sm6 zoyra`@i@x;%mthKyeh%w`|A0SF+>(!I8dsEYSOM@-{Vk{u)|jUb0dn1piSjkCNxY* ziJ*b9--|8!JSS<$vb9oZjwxdreSJTBf`3e1Z3wt!<$;lVgCDV>lO0p+ zL!M@=tdoA7C~e89xBiOM&FIutW~A?|f?c*SWam1QgoWY`{_uBR^vTR3h||9AhsG9t zrgnC4kL(%zyRc28^+qXx-NicaE9!CmnB+@wA~)mNNVKNL_!|GStdH}H^@DDjT|z?5 zn5-%OTIjfFj(Kaa?+U??Vz1sXZ<) z*t2!S-tRG>?IUBM$4^1&-o!1R%G3l&?5U?EC~ODi@GuZ;GvXEsn&1b&P~gBnMHRk^ z{y{e^6ly5_2_p&fQ9{95$*C&6hco^i-rf1n^e@|?FKXCwnAtLmjSzKAgc3p>+7r2h zY48h3blFp35;k})mE2>W()XHah(Oe2-3!aBz)wjcUYFEy?w3-j(^eO8NRz{ZkNj+z zd=wKe(su>7gNf%du5ts;oUJj;Sd+!UEI^rM*=^}Muy(AU(o;}omORE zT5odqKn7w=SeD)#$JR%*?{W(FBl87AIz%b1;LUY3ca8>AyoE_zU)mn{|8R(F#&XD=S+Y<{)CIGew1HZ0^LXe@Kws#Hg zjeOpgxt$j}^(krOzNUYEi{-s8`|u%R*DWWnRqAVPl2>FK3++7#E8RRKdkkY_J&2@! zHn0a~i)OdfwyP9bqQVyu=508==O7{$K8ln!)&!X%1+C)RfvuGlW0?MjG-p86pt~(r zf`)d2cm^ZeuP`fQ_Mw;6Wmi)rr6VXFHmkG5K^Td1SQ+JU&XtF{bGChav2-h?VtQ&z z{N9DbrI=ELbE(8*?w@KaqDl$(bEE9=^?XeiJYpP2ESl(eSyPeQ zE4-rbz1Hk9h+<7->VxE_pf`tpO*Ja)Z!X{+zfzM`=#)i5hJx}Uip(|C$@06ye(C;7 z4bGMYHD{4`$Vh(}RNG_Jo4K{xp%R@CL0eFPiPtaFGQI{vHrZ%m>$2B2a=dPud{s5z`ZXieJGao1GHK9~!W*lp7Qb1F zSp}Eirvhw=>j?t(LU>1(8nHIprztWW+Xy?WiB7G~zifJ%v(=QM9pt#ice+;feu%Sr zW5o_z-Vi8TvC42vG#;-W`A}lD^b4HJ&WSYI2+a`^bb0Frar*%3A^R1^2lGUr=(o}y z9kY!aD_Pvx_3Yo(HUTa(-#cFQ77a~0h1BNh2a(i=nKB)Ss8rsEbf}iE3%_^#UBL7{ z->^S;g%OlfPhU>pXC;dxfVDF3pF5AU$NJl*)=fhzxSIot2cBg=+;EEWa@vq1&Bldm0L1SrZ{iNT`vp zeT{Hf-u7mr1Q;YNM!V~kjKoI+2H{=F{6PKNSSk*p7J{<^tf0{EdcBr=zP*NbwTaDF z@a}{sOBEGX3&N5I;a!L+b_{Cc;1{f6;}>uf$b(Qow4$uwL4R`apfnh0j6n~0UhdUB zqQu|UU$Jmm{WUdCgdWgFK@ZTA1D81>dT`PMT$bsWXJqIB%+C)~7Oh#cMaO8IMa5{4 zqSFHq0eF-|5NiN7#F`$`z=e!Y^Xw(y5uW;QOXiso628Bt_EX>&tUfKN@`;6 z0^t+9v;*ls<|3HS0VZml)uqe*DD!(7@ko3H@HFT+7*}=qC|3cKvTLc)Srg2tU=U6! z?QZxpi7~K$8M)skicq9~09T~JAa#f5+kF&Pfc7VDYafu)4ru>mB)xzBw*F=v^29pi ziS?L?5Zou$p^F;f(8U<2v&!>QpH`nA9P;XK3-3Y(T&9rlJoVLuA{glROi2t>*M&Aw z0bHgg4z_uz1RjJ{(E-q)v>O7PefZ~3xzY{n-U|&!0OggzgD8=nb7dnu1Q+42T>0C2 ze)=g_x>4bub7kWxS2lEnkp9kqt%Cr4t#I8xBA+)mN9mM2b^xFhy zWznJbiOrFyXjbg;}k)4>x0lcDcSi z-3&`LkUi%nPK@&V5$nDB27u-7UPho^>4K%*)D^1Aji$+;vK~22IdlPo~Ht8@o~8Y0DG{n&!tTq zKcVnA5^eN1Y#hE2NF(>a_fu>G)toip$T}TGp>2-j!_r&7z$cct#X90pjG zJ|lT2L#8 z80~&>bmAMnPBl997<)a?th~GTh4Xj)Y<80wrFxHaj5|;NXwOwdZjX-h$s{4L!>fj3 zOM1-x)uLFC%ony%q3ffG8NiW)+T2h2QLNsH*u8etGZCzNMecx!^{cbS(fJ6qT4~FH z&PwA%EM84XZ|>Gsyb6Lg(j9{nN}e)I|68b%8yO50CKSmC{@rB^{gqD^Y*jZQ!X455 z2l2l}{d09dp;`M^1r{9KiYy!)%l|Iw|D&dVt{VI&O;73MwlZ`P7;+!YMUhAKsTlfB zw23EinjStKGI{OU-H2+*RKp|;qEd!=I6MXdeU;-_6hU&T|T$YB@~}d zW4DSke4J)KECth(V2Z4!^oms~0L3DNk`_NX`ATZ&GJz`$dVE}#P|7xH1G~InI0oE= zQ}E+DZ*HSGC;zmd9i2 zi6OqdK1sXF&>kG`ixeJ+<~Au~SOIQOu;xrxaHS}mx4=&AOn~~K#~r2GS)Y<*cd;mo z7Uk|c5n!uh!m|i5aos7s<)MJ$bK3;w>WYhnmBQ6GnDz$7XdD?)IL~%qSNr+VIXE)& z?B54bxEbGj2ylkc+k8oI;gCXh&kj$^^not0^MoA*wtNc=z@f>|g4CzR3@eiAti-L1 z5~7+pu7*QrwgZOCX~6MuM+m>`j%SV~TRJm<%KK?Yl=IhcmW6>vt1JkQ?VHB$?~|ck z=a_p%CG!jd$G4?msw3X8$i;?2%3->r7X3?NKV6uNin-&H)~C-5f71FTsmN-!AA@_N z7P~srIR$)!=z^fq{O)FR8)yrcI=lmR z?lKB*CaI>l(Q&m70YW}>hCEKSsP=Mol0kmciF?OB4kb)yP=f2$4(@LscM%`nD4$rq zQ#)M4$M%x}(v1#lgmzgVPbGw_zEu~9i5FPvO={EhZBuqh2~2_B+j_}bl$&f%?7qQK=(S$pWo)jmsXU+x{q}~twq*1JX8}+q?$nPp z9*?y<&urT2>sKl1`GTSq>Zn~8nRq<_7N!Ujew0iv4F4^{`LX5-jU*VlfPWlg+SKt1 z81(3C?c4LwrKFIpiMoC!-<;(|(bdjD8b1S_Ad3d*&1BiDle_3M&tU5yw-3p#mSGqo z6f^({^fbl{p3fXb-`8lQ0C;!h{xN?Jt@kanM4Q;rCG7ZL;mKpB0=-ljVD&>E1jyw= z@=*3ic>{_q;l&gTm5Qv%wwEAUZyt&D)v~d~^7ew=HFqKq=Zy`8X{BH4B{GWB&Kfrp6=T)yTx4!>o4NgZh&!#ux zltrN~b)LpL#c+qRMtc=g)V3I-HZ+T1UXou1T)I8g00I;d?6(<$Gl;6P-jiVEkzrpL z&q*+K8BtPR`Nr(Bz2_Lm$JeHx>)%}RnZbZTCGHAWK7%pl` zT>M?b5`IrbI9N*Ml#yU2#w9uJjbSo}zqaCOGZX9DM`!Ph#{(Lc(BMl<#ROa$^{RZ( zYr3>nOO~$WcuabSX`M?+{A%eD_3;?SpnFl>k>qj1MP>w=WVCHsNlx7D5U;6ksmz4% zQ91{gpa{4wmd~DCQrIO|_y%iuGiy3HhXvx&5igBvOu$;=U2WrYlGb0(xT`|E)>upd z30r-b$WFIDkKYfDi@;@@O@qL9n!1twj#z}1il>ImhCB8Q<__J?HhfGru|BOMy(l(C z%~8&FWr3;sYZOo zqV(nc^+UIXFLvG-HVsC1qo9-~H5Fb+|H*Yn**ebHj z&*X%f)vk{6I>ah7%sHR4Y7|ua>#Aez*qR*hOzR||R8CEWhozV#5BQO!~SEf}32) zg-2@Mv^%^JMngf!W=3t6X@qmlj_O}Y1j12Phr3`P+bfX_VGg*AQc=X!IFWFoX-?_A z?_ORi?aQrv`o;J?`)1srWKqfh#Sjomy_G*W6hFYfxH#F)*-t<~L1+_NwLX(#I@2Vf zb`IP}S`yJzvUg%-1{d3+>D;OsR-qoFy;FrZ9T4B9;RiKn!HVSjyY3}>gp)Fie>f2^GuW|i$LM!>WZVZ z#u%wCnQ%Ui@Vd!7X+>AnoJA9ob(2a4;SYl%9}Zj6#$vlxT0fD(roFP)#U#&-hA@QH zrVDYpNR4}L1p3WD^I8L@J+r|aYlq_t1a7EnO`tV<$poX*pjeS6+QsbBt$i{LShI>V zq;r~@E(*3^O^FPa0ma&u!O2vx?G zY>O*DiBhNG%R66w8mICX>8*_eS(Gk^^GK^XYO6WrnqFUwk3L3LHoEKX1>m9f*~=aq z{QfR$6E4g_iwVTmJ0dMI)LdBXyN^8T;pn1M(2c!#Eii~j-!k%Pu(D@k8U*aTT+99w z{`U4yd@F7>oy0~g!{bKE&}Hb)o+P%5*maL2Hr#iUXu9sbp=IpzM7Ovel$v47R<~aX z>4Rcc5}UC^1?S$<@5Nl{Jg~g~onPQ6PT44F8LfYXRSD;$UeU9#X9deP!O&w* zRj#R+kf$TpAx`lOLr1QgpmjBxAN_>zhBmH7cT1J5v`$15aPmdmHxqqNlC6$=sOZzc;_OnS;I6x= z{z$_tNk)(X68>m`&s)e+L4{{d zDgDb22iJ9jBgTR;#=7oHVLfZ5hfWi6l}EP}{1{jz{NP!=*Z#9rI`8?_0*5gbB7jH` z@7vCAMMg)rjs&=$5mY67CtUrIH!^p6d$rAeG6b0=iZgUiHN@C`0%jrOOTA?9Z{1v? zYy4EHXj^eaPHfh^>ZG618}b7Irk;M1P*PiMX zzR&JbI1kwAjoA-%V}AoNXb7%?%B&j9?V_OT)T!m3Yg8J>>Cqcd5`R@Sfv~m$BVHzs zLJyqfHrJ7)s34xAAf@_PHM2f^oEM(D!b^%n@UX#%8DwRo;7lt+yR`a|&o3jkZgyQB z-7Cz^Y!iO6aHQ7q|9*g>y?wKh1JsEaj_-)9ZHXmhUv*Q@EBnw}hP*!$lXRqU375JT zLmb?DM*;FkCa%JoKA^?Ev`BR0tm6%t%7gKSf3?U6XG;rHa7Ya``LKFs>TLMvle!`I zcF}#fGAmBMY=URzi~xSUnEqf*btt-I!)o29c+;AE!svT5^>j+C8|KtoT&=mCD%3R! zVm}F=#4$;vsJ0t!12y6GNZB(UPUkDyK7*|;jyjZ8?$QszD1t{fC)2fu`Iq~jd_UUY zH-FT_NY&eYU#2UrV883pX`a2(N%a#XrW+!saVD-#Uk0&L8m}a(+RIX@y5ds4fvu}c z_=i;t^lBjJ#mHMLNxH;1lJj&@*3c3~*(J=^I@hG=Y74c|a_b8KQnEUFg)HbcBDpBK z+?F?Us)3k0576e}&vDg2VJ_s$*kxgTBY(X0=yXrqP=`)cXh7q@I*#}v!qISBT$M08 zr0Ry<4aBTKU1th>m{=3(d)=9%01s8U%v|HWq=Kc0uXXB{B(wav+(|N%Oe-<6?;@`SqA!+>iu$(^TqV!6`#Y`76V@6U2UJefSEW$sbxL8& zE^41nX>F+=C;mZW@nALY?aR;0?m|H#+0{Zx2}9FW4(TQ3PMY7x{lrw^))XVPS#M>U zDKmN1?BlA`()SO_hRGia*K97Ll9SyOUKae(7o2FJx6yk|swyGFSTR2eCo;6=BF6~} zmCxo(o&BQM#8StJgh(2y`J2(ZH1U&vKAW5;5en@hzrP@bcYTEkG6w}_3W7gxr&h|F z05(@kC3jqRt;ZyUx>u{31Hu6V^u@dySjRPx>SJcKgdRS&=lo-UP-7p#{do_uuGMx=F29{V-!ohL4=;1 ziLdwJ`k|6Etg7Lb2yB0o5?bWhy=tpp+8?(%5O!02#Zl82TCl^oO0b{-SL+>AB#tnU z{d%NQq499?W_A*l=teK!Ty-3QNlu8)VQ8na8a0c@?v(iUmqHFH$`8K1(Qdn!A?eJ% zE|S-u$%h6x;McvV*iu#~&5%}POX6lQxWuzjtNN?g9$rD07uS?9n4)nuvNwFX<&x6x zy8*+8ERPD zn~#l;o@&`orzG`+^{QWxiBCHWm1kxoIZ;-J&1u|5WXKtW(mxyK zc#YPMLXbyfO%-?qYQ+Do>45BC?FV>pCo<3G|N9<2wICq>-GcCs_Je1q|62pX-%jD5 z+!co^|I_KeG5$k4!V}taJHr2g_Rq@5|3st4`$q`>M*HW^@c$3(pPSGB1Y@Q82iX6; c6+HnyZ$d@9HW09Ez^)oBn?u_tD6lkaN;k?ymWGYR59K zoVEV{U3}L~N`ADNuhOo(sK95Z$H}`#6u#%1hH74y67}_4xP6mM!P?POwFcaPzz`&)Ti&iA*9dX8K!H?aCYgX^>G zM4g9P_ncFDJve4>vlC=3yUoNZrtp(FX6ky@->=zzXS&oW*R#adn{&9WE8&Tq6#K7z zbN)2*@buN&?Q4EdmRI)rJ4O0aw~A(bMab%}Gf%$T`K9jb;SPz#O!L!bcx3+Bu(;s5 zZObE;XDv&e&dvVt-qPsvj;G%a+|vuU4apHwxu?F=Tm4tyC8p$9CDoGVUDs7E)?QIs zHg&W8fz6?kt}(GiyYUpReiVG_pwda_;FBi1V#K#G4=- zvmk7Yb*q%6j)&gP{AhJu)?asqnE%V=k5}!E+qCuc z1C{%?eg{Qz%)hVu>ht~;dwR-NG_H*5jl93&;`GA!b^DFq&Cg6zmrOi(de6V|XIo<* zAHMC!J16>&!M?wXA6MVn;U=wqcV^hmiyt5C_&Mw9tY@=a_r&e_`R^?Ib%&j1?Eb&3 zu6b;)+U9rlGcRY|%?VNmqeFfhiy!nYob7sK2Cq$;Wt~#cKjxb~d$L5%XluRCJK4*>j#ZqW!M0QIkC{m2X`b$6%C5OhZxa0GC|2Y++>sIf@AgcLV8pEFc~L_`6qL literal 0 HcmV?d00001 diff --git a/resources/views/Admin/Pages/manage_cms/manage_podcast/add_manage_podcast.blade.php b/resources/views/Admin/Pages/manage_cms/manage_podcast/add_manage_podcast.blade.php new file mode 100644 index 0000000..02d64f9 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/manage_podcast/add_manage_podcast.blade.php @@ -0,0 +1,67 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_cms'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ New Podcast

+
+ +
+ +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+ +
+ + +
+ + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/manage_podcast/manage_podcast.blade.php b/resources/views/Admin/Pages/manage_cms/manage_podcast/manage_podcast.blade.php new file mode 100644 index 0000000..6cc2018 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/manage_podcast/manage_podcast.blade.php @@ -0,0 +1,296 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_cms'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage Podcast

+ + +
+ + + + +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + @foreach($podcast as $data) + + + + + + + + + + + + @endforeach + + +
Sr. No.ImageTitleDescriptionAdded DatePlays StatusAction
{{$loop->iteration}} + + + alt + + + {{$data->title}} + + {{$data->description}} + + {{ \Carbon\Carbon::parse($data->created_at)->toFormattedDateString() }} + + 144 + + + + +
+ + +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/manage_quiz.zip b/resources/views/Admin/Pages/manage_cms/manage_quiz.zip new file mode 100644 index 0000000000000000000000000000000000000000..a49fcd2be1361bec0d4fbf78c9640e17fec284a6 GIT binary patch literal 6265 zcmai&1yCGYn}%@+!7YOaOVGh45C|GPxJw9w4KTO{3(layCO~j^_rcvIFeF%T_k`fi zCjV~L-o5|b-R`PWr@N}(ug|IKr}}%;6wxtoQT`l9plIEHP5x`ZL!m*jGqE?Zgn*sg zpkCbCT8~iBnR2}#m(QCaZXSZ>cZtYT32`|jmq z6cqZur9jM~uK&sdn%bI}Lx7G}j{gd#eP;#X#X3ND{t{6R44T)jip6t5yW?Py2JDN~-h;U=WLwiig+eQP?D; z$rC{WC07H~-jfNdKT#7=j%Q%Qr6saG6iE`Ln)_Uk7Ig-bN2TKN&3$d)3A8r}b0Tz% zd$>UNTpisLhBYM?W=6(#?e2Hkl!utfmYvP~h;Z|C{b{^RD)XU)hiJpB2QqR9Rv_^_ zg|&Q#pd;A6rEOg)QszA&p&cwtjIkFtP7dH*sT3jbSe&76I|3_G%Z_j3q%cf|Tocj` z8tgdhP?<0;VV0(&D>A@sq~wI}hw6yCVDaw$mzSEnQ_r55s)(IRSYzAas8>*b@xD0t zib3N%94w+0i*IDvUF7AzBHhYtN@R7s%Jn>)+g!kZS*(M{WJU4W{X69zPgRLR0P?=q zSVoWY$FXzHtK!K!&%0gib~k|4*2_d}PFmZCu+SaT_pwDU3#}9RtS>)*TvoW_!1ZRV zJ*&s9;M=br2ba^R$H-B;7TQ_qd|hh;g9kzU#y~dkD}hY{d8+m6>bjNAI9W=txM&nR z^3K-%rw;e`MN#n%q%SLAy=HZlzjXAK-A$l=kB^{>KlLsay3g91$^xirksZe_x=4;X zmFeh5yVvfs-ojk*cSSCQ{Nu&+(Q=>xRIMHyHi_rDwKv`o5aqr7-9BS&p3KY#zv##Q z*K}k0{@N4n7n`u97jQ6ZJlJsPid>{ATBUfQtl(<7%7V15nRj9 zNt2UY?#B<~D9`kkBhp6S!8`0PhI;<{Dp;x@vNcq`_GGAUQGdAUx`9BzPZKfyZdcsQ z{7Mhow;hj!v~ZWdC@ydmdnSZk#~nt6T@jJa?@7zgTRVw%XxyH7M!hcb@OP`rI62>( z)M`I!Cd#g5^!{856 zp0AlNEa0P{WND+IF#HV$f5FS&aPWsS|A2!-8mPm(?76pZA1C!U0yT|R!hy+t^|yKc zqjR&A}0KF>1ns{NoJE`&Y0ds%}j6{RHD|FwF~{K*+U74 z{+>y7-I!Rm&y5N^^0_PUhGg|#?K&2WvLf>c809FE6%tETG7~T70bW?@B<-$kmnYI; z51H%a0rpB(=qhn#TjTgp%5_9mGy-`mn(d!nu|)?xdPn^sJWCd0$zfP_!LC}7l2L6#QCS&l#d^2KKJ-iG@h$3<4iEk zb_2ST09I})&|Gft1q~f^DR^*{(w?qw*YoHcuLnLj2`AYsjs|kg=-DOSqx3F|MVbcF zxirELl8;{LXU+jPWzfYU%`<9wN-=nI!^sa4a@{@y(OaLoo$$R3v4z}WHm1CS z-S8)pj_sKFYo=T?rwvm0E@ITohghP|jLdc%YSrP>WG&s7<3QiG&OZ}h%(0V7Hq#Y? z=%b|!SI$!8DTg7lNqsQrco8O`Py9Hj$Qi6`dcMb+!X7_*}D#>rRQZ^`aRvOVa91CwQ8 zz!CasF5toEw3@Fsce$ODK&3WVcFJ)Fw#jo2ts0Owtz(ah-;<&+l3`?J*JJo%ff|&= zG!cJcg{$tz>I0j2;spPEQM{8x9G7^X(TBv0ET|rjj)CH;Z|bw%q8;oYEHOyFA-w^) z{L6MMzWz0{PQdq>qNAp-luebsD$v{&UJ3~*Sfy02!>7tl%by4lG8m(eALD!!$-DZ6 z?ATDFQ1Ak~*Dx2)zkbW}$q$as#`0X+i&ReOdS1D}uu!?L&8Mtj@}yFr&Py{p-)GcH zT)ZXEj@)GF-Pj;uY!Lhb9=vrz+MOMTe=C#5%_xw>JE#Qp?QW&b>V5YuUPTRoSYkcqWLA$BDJAUNflRo7%Y$(5)h_v_>5+4KlZx z&BMaoz|Amr^wI4$5l)vF&g8}qy#bIihmj{hj}8J~^SShOhJ{EmLMQoo3ed#O6RaqV zNj4;=(S%JTNf*}wq&op`*LCMApz=%$8cjO1r{X${z11=)s#jR5hHooudv&<{Z}0 zt}bIYfGJJOcjp`-M<}GwNoN+ux1|&WS@b5e$Rcf&hK>3Kr4(4$k;;J=Ku;pPe4HS` zrbj_II4Rqn&U^qvFqmT|gru-GprT|C1xqX#7|$9`D!h5crIrOCG6|iud8etg#vTGG z>KBsN7JQLY9FY&*PRUNHkWuQZE^`^vu>Jb9+0^q$aN1U8O8Lq6W{W+nfCk8(0FrF{ z#PG9KbWU@#cKyIagPXDE)q*xib4vH_UEk!H^`(nsLVi-TP>ABd6pd9=;-`N^7*%Md};)6p(KHeWBQ`q6Y}J7X>48BTY7xr-(e zk37{e+iSZy=Q|c!(5aRK-aA9x+A1hz;>wtl7W(hsSmDl()>ajOw^JZHJiD3qO1Aq2 zCQLs|SW*fg=w_XBlRHP`#W(53J5Eky#4{6nrGwb)e(C^FT<>ehMZjnx3mR z6OVhtZdk!y%0!*0+t79?{1D7>$Kj4PAhUSo>ObsURFVB&KSGs${x0HrW zD5htKN~{;UXK+J^NH>jj!Oo*=ls71?-mo%}DQTpB7PSR$Qv;j1E>6!hjl)NS{G4FP zx`NOg4bgYxvu-`ac0I^oR_&>pKBXM%m0rqdHI2oyi0~;j4(<8kt;I+|1m8Vi+{r|@DfD(#-bJAX)0aCAWYxdyMDx{S7v%T#7=+a|rUJ@EC87ZUW+C60}~ z)NhHFl)gH-e#}~%VG(cwLy1BdMh%GU8Bn|xSsPE6)}@FqY)8&{K170P7oIdDb$xU zXzU1W7X*9$9P@sj$JqU2?o9DvSUet)vuVAL`Az14gn&i=lRTB#)~*XxZ|(7HG;1j4Xr{j$ zL=dEec1|Tn9a+-+vP#>lF+@`gvp6+)5ED(qAzs_7EG$vF_p3};C^&^sl)|U9hv(Y` z)5`BpG0yPahucQam0v2l3j=+78;f%poX0eiojEFoAlzc*pqHcyz=g;}ZBr-2XunSe z>_d1iuqzux;mBppPJ+Zj^-VvCg^bUO{M^mTa%iDgTBR3_00qiL?X|zpB7aTrIKMwv z4~N4yvSe3ZTkJ5nJcbs+w`XD*N)>2ld?_U7JVdC_fOF$NgTRa~;d@Z$RxR!5V+VC{>AP~hF=CUgwNt~-9L1IL z^dbCgvvQU-p1oyb5kFKYD(-7;DV!qvjvt{~XM|RL#I_U-@3QD24fHk`zbTt7f#u~_ zP{2JF@F?uiMub7 zAFD>ZI#P_(`BgaQr*)dOQ2JU8A67j3tW5eSmAxvO662)xXF*%bo@J0k+Teul-ok>Dd>;5EMz zOe$WPC+7s`5ixsq^NaPZFLSOOfy~5CpMK=#Q?rEE@`P&|S8ST^q-=rvd4H4y)%Qi- z=2+FsAoy|;?_dEGk}jhC0wEJiymeJAi7$lb85|Gn~^HyuYAyi*{m9nhRk9PC}C-?KdLI5q($1k1|uK|4IDztuz2j2 ziJqz+0t}WBL5HWGJVrFq96%kU*+S`fVIp-wK~$_6wQx<9&z!*~#1!(8=;H`B(v) zYKnOqux1UQ&?a>iF^(`yW4#wLgHCgeN9SLQu0v@;jpY$-$<|`u9hV!?F0>aUWj;_( zSY__+nFN5-&}u(8I4#J99HHEij|+LfEP3U7_d{JDhF>c(@Wg{IqGHHul%jXeh zT~lvSI-)iG6f0T}v_E@moFC>Cn|-+{?g96|j5%KwG6?=OZ8|8>aITx^^{znqZK7qA zY>O5s5BbWgo*fLLBemx?0fFAK1MFlXzEj^+p{YJq-q-K;$9%x->$^51&c#rcUA_|W zD>DV5-MeYyIm-lLf|d$y6J_al?l^30H7-p<5DCx)SF8K#HK!O3y1WmFqLciZfwh4k z4&PhKlY2evrUy>ZX-T^Mr(k%q*tBGOu<&3eu_&D)qg@-7BBS>3yH{1`etOS}^RjkB zAk7(9dV+IJ_OGc+7(KF%APUyQmi)Ke)G}@unQO?iW50KI^#9#9hDd$Ty~?hLdHC&+ zhDlIR=>FC=nwXpalR`?(gZxv^IHsrUF#nRM4SUdUr37<9l;{0-y8t&D27Bj2`$&q} zT#4}b@(@N!c*Mc|H36G`0=eRGe`r5;Dt%9~U=06hte~w~a@N+Exx$H(p<_(~?8Ory z-o)LZ%x%kUOTiEpflq5=%yDRW<<#x!Hn1<_L|*A+20bg5HKsdM%Fc{g1n;A|q*A~ZZw#`-*+r}D3lCf$O0U$a>+nXo_nK(Tbk}IIv58t>aY9J7!&lRXm zqs5qB#C@VN8<~sVa@@uvponNx!AK;`EaA#<7msTG7oS<-@WHd|q$Y)rDg!1!_TBpy3CJ2fh*_4Lr^p&QFp(mArtrS~0 z0}~|aE2OhwgTy)^J?OXrZagD)WyxGCF(Jm)iUEb59{F@ z1KjZ27|Ge5EM5K`=RT)pERo2Kc~S)xBjzClcjQJ3sX_rae52))0^Rnk$i$$95H)ia zM-2b!a2>C>_T>wGegj9{$PegDcMtSqDUDS+5h*m9y`C1S&T8bm1g}a4X&}1Gn zfScdMo_aDqVQlqV0#hNRnz_jrjaPCGmewwtHrqm8FH*-UOpDp#AKTO8^2_}+F_5H1 ziQV3DsF(cgV8R@7?VJxm&ByX0AJ{#pB-E9>Y^sU5kJ~ggK&5vXf9H;4V3R0p*pjND zCHPL%5p^cNVjwOSGC=bPdql>;*0QKMC&`?)kAmIbOEXE+IWL6G3DE<6Y(ca{62~J} zmZx&|Jd@OnLgd$2ZV&~91Y%9Hice!wLhmk9B)_*NL{4=%oxYgFT~McRQeygjHVbhX z?Fe&+6*qs03hDFk<;Y6!!9C_V$s0R;_%|nKtw0aed4dg X|7|IlSbz2w + + + +
+ +
+ +
+ +
+ +
+ +

+ Add Quiz

+
+ +
+ +
+
+
+ @csrf +
+ + +
+

Answers

+
+ + + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+
+

Scheduling Time

+ + + Schedule + Cancel +
+
+
+
+ +
+ + + +
+
+
+
+
+ +
+ + +
+ + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/manage_quiz/edit_quiz.blade.php b/resources/views/Admin/Pages/manage_cms/manage_quiz/edit_quiz.blade.php new file mode 100644 index 0000000..6eae88c --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/manage_quiz/edit_quiz.blade.php @@ -0,0 +1,92 @@ +@extends('Admin.layouts.master') +@php +use Carbon\Carbon; +@endphp +@section('content') +@php + $currentPage = 'manage_cms'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Edit Quiz

+
+ +
+ +
+
+
+ @csrf +
+ + + +
+

Answers

+ @php + $alphabet = 'A'; + @endphp + @foreach($answer as $data) +
+ + + +
+ @php + $alphabet = chr(ord($alphabet) + 1); // Increment the alphabet + @endphp + @endforeach + + + + + + + +
+
+

Scheduling Time

+ + + Schedule + Cancel +
+
+
+
+ +
+ + + +
+
+
+
+
+
+ +
+ + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/manage_quiz/manage_quiz.blade.php b/resources/views/Admin/Pages/manage_cms/manage_quiz/manage_quiz.blade.php new file mode 100644 index 0000000..e8f8c41 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/manage_quiz/manage_quiz.blade.php @@ -0,0 +1,411 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_cms'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage Quiz

+ + +
+ + +
+ Add Quiz + + + +
+ +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + @foreach($quiz as $index => $data) + + + + + + + + + @endforeach + + +
Sr. No.QuestionsCorrect AnswerSchedule DateAction
{{$loop->iteration}} + + {{$data['questions']}} + + + View + + {{$data['schedule_timing'] ? Carbon\Carbon::parse($data['schedule_timing'])->format('Y-m-d') : "None"}} + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/manage_thoughts/add_thoughts.blade.php b/resources/views/Admin/Pages/manage_cms/manage_thoughts/add_thoughts.blade.php new file mode 100644 index 0000000..a4b8e6d --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/manage_thoughts/add_thoughts.blade.php @@ -0,0 +1,83 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_cms'; +@endphp + + + + + +
+ +
+
+

+ Add Thought

+
+
+ +
+
+ @csrf +
+
+
+ +
+ +
+
+ +
+ + +
+
+
+
+
+
+ +
+
+
+
+ + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/manage_thoughts/manage_thoughts.blade.php b/resources/views/Admin/Pages/manage_cms/manage_thoughts/manage_thoughts.blade.php new file mode 100644 index 0000000..a4df320 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/manage_thoughts/manage_thoughts.blade.php @@ -0,0 +1,261 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_cms'; +// echo "
";
+        // print_r($manage_thoughts);exit;
+    @endphp
+    
+    
+    
+    
+ +
+ +
+ +
+ +
+ +

+ Manage Thoughts

+ + +
+ + +
+ + Add New + +
+ +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + @foreach ($manage_thought as $manage_thoughts) + + + + + + @endforeach + + +
Sr. No.ThoughtsAction
{{ $loop->iteration }} + {{ $manage_thoughts['user_thought'] }} + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + {{-- Delete thought start here --}} + + {{-- Delete thought end here --}} + + {{-- Add thought start here --}} + + {{-- Add thought end here --}} + + {{-- Edit thought start here --}} + + {{-- Edit thought end here --}} + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_cms/manage_video/add_manage_video.blade.php b/resources/views/Admin/Pages/manage_cms/manage_video/add_manage_video.blade.php new file mode 100644 index 0000000..4f22627 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/manage_video/add_manage_video.blade.php @@ -0,0 +1,119 @@ +@extends('Admin.layouts.master') + +@section('content') + @php + $currentPage = 'manage_cms'; + @endphp + + + + +
+ +
+ +
+ +
+ +
+

New Video

+
+ @csrf +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ +
+ + +
+
+
+
+
+ +
+ +
+
+
+
+
+
+ +
+
+
+
+ + + +
+ +
+ + +
+ + +
+ + + +{{-- image cropting modal start here --}} + +{{-- image cropting modal end here --}} +@endsection diff --git a/resources/views/Admin/Pages/manage_cms/manage_video/edit_manage_video.blade.php b/resources/views/Admin/Pages/manage_cms/manage_video/edit_manage_video.blade.php new file mode 100644 index 0000000..12202b3 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/manage_video/edit_manage_video.blade.php @@ -0,0 +1,125 @@ +@extends('Admin.layouts.master') + +@section('content') + @php + $currentPage = 'manage_cms'; + @endphp + + + +
+ +
+ +
+ +
+ + @csrf +
+

Edit Video

+
+ @csrf + +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ +
+ + +
+
+
+ +
+
+ +
+ +
+
+
+
+
+
+ +
+
+
+
+ + +
+ +
+ + +
+ + +
+ + + + {{-- image cropting modal start here --}} + +{{-- image cropting modal end here --}} +@endsection diff --git a/resources/views/Admin/Pages/manage_cms/manage_video/manage_video.blade.php b/resources/views/Admin/Pages/manage_cms/manage_video/manage_video.blade.php new file mode 100644 index 0000000..3d3c544 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/manage_video/manage_video.blade.php @@ -0,0 +1,461 @@ +@extends('Admin.layouts.master') + +@section('content') + @php + $currentPage = 'manage_cms'; + // echo "
";
+        // print_r($manage_video);exit;
+    @endphp
+    
+    
+    
+    
+ +
+ +
+ +
+ +
+ +

+ Manage Video

+ + +
+ + + + +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + @foreach ($manage_video as $manage_videos) + + + + + + + + + + @endforeach + + +
Sr. No.VideoCategoryTitleAdded DateStatusAction
{{ $loop->iteration }} + + alt + + @if ($manage_videos['video_type'] == 1) + Free Trial Videos + @else + Help Videos + @endif + {{ $manage_videos['video_title'] }} + + {{ date('d-m-y', strtotime($manage_videos['created_at'])) }} + + + + +
+ + +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_cms/news_and_articles.zip b/resources/views/Admin/Pages/manage_cms/news_and_articles.zip new file mode 100644 index 0000000000000000000000000000000000000000..275c032855da2b11ab7f2a94aef2b056f064ce91 GIT binary patch literal 8435 zcmai(Wl&u~x~?~x;O-ur;O-iNY}_3-79<3B2<}dB2=4Cg?(Pm73GNc~Br~V(Oxc)nl`XqYDB60{RdN0DwOFH7Wek!u+lD4=q=F#`aYt0HDee0ATy8mKEp= z=#z=Qk(IsvKSBS5FdBXa8JjTLnA!Y4*zTXO6J2-f6>jv`4&e?c`G&>XPU-o_7^?RA zb!`WqTJFp+;!5Wr;d)%{1~-vxu(A8kQ!X*->e73wJSlCyN(O0){jROi=m$+#S!-Nb z-|fDkR8nLN%1i4R+V^pbOt@q6dV*fJPfJI>ks3)_ltw?NNl_q<=Ls!RvbWNw0zKsn zd@kLEWT2O@hj1B7vl=Fa=Hnk|c*!E#--vP<&qqh9n@7VNAKwX*+3HNwt<*KYGRWp+ z37yrSHh1A+IOgUX@AAa14a0u@V6^llRzoguQ_?TZA!ZXlJJB%==JICgV-yz`nz==` z!OM>*PI-p*M#rjX@oQqSAUao7p&8%3fVABMRop36B$piXUM%#Dmpzm)t*71&s`G>z z=1};r*Bj{fy0AMArCcQb37seM{x&fvS@x%5gL$^tv6|w-UTUGI$r3 zk)Fi~Yi%cj0w0pOZ>%KBu-M3>I@^=LXD$)%y;gFd!8spI=^Lf9A_E6Hm2vZ!JgKgN z`^dEVevg8fJt7-c~sD8pXOKQyq8vJdK4kreyi-3{Z%Ad`o^@$CkZk~jU>%+=@m-Dg@MyXJ}hg5xlz7rWx~hJ#PItgQF4>r|RTR$=)Q*EsuM<7W39^6y|aoJz=L<5N&sOBUJomyQxVX*{_8UE+51L_3DU@ooFcj z^^(Nys~m-_o7BrkXtu^OJ86o8({jruaxcjo6VVFcqlE6#NsP`=+Lp5N0cTatyP@RIlc#NZ7t}!lBVrCioHJ&Vy!QT0hMnDkv z!OBc)bN_yn4c+^z8o3_%I<8(K4r0UsJIqMxa2)@Rt~D@w#cfz|S#HuW{*W0uMjToL zcgf8$OYVs*LT_3CL~0tanYJq%RYH_dKgi*hvyCTFB^!N>!sV1MJlmdD3Zt?-m0Q}o z2hM28yn-urEG{`K_h(~4N%68@B%cZ98=u@{A^0VR%3NH7?)_|!jsVM(Dznm8$Wi}@lBeV3conM`izilELi3JP?{L!I16hdd0YQ-^JPLLUBXhx#x{JJ3SUoKC zC5pG~J+-i^ONufh%=eD#>x%pmV(3UdUS8HT^_K3$XMK}Q{C&IP3jUVbIQiLlbl6+M zH;fMAbx5U%%gSvK?6$gN-PtA@I-CQFNc4P>N8ZfESxv3hsx!3^ak?ukRi&wc5!EHw zOeqOSzCObFLnSMjT7_Sd1N%lIKM4!qzFEP9pNyuD#tC0Z;A6(rU7*KB&CD*r_o=Fp z4Z=}f@XtOes!KbQuJWottZt>{6|V3>LyO3>2aDO)U;@oL8-)|@ZCrS(t(OxD;JzY# z&*X-MM>0VQ2o#x3cG)F zXD6*;B}EuRFy86U3mG!K7|Q20takONE=qT=T09Snz;OF+6j`ONf91}dsvPe9F>Y#v z7bwYA&$;B1dktZ&8CT@Dd2gPJ(0tXFi$GKnNX+%~hZ-)iOfXj^X+ml~_(u}sxpm@V zuV;bCI0R1sOcRVTfu1e`a+|zM%p2F0YJpMJ`v&B4Jh5IrXTVT^xk30`uE{#Nv}&mGSnbVW9U}6s=A-p)wiGHkH%jE z+ytl?9&hX?^Iy`P^)CWQM=saFdJWcht@}&Oo-GTq>Y0%dcix4gv}ds5%UGHCf4 zG_!{CT@0AzIlU9R1@BdlF7^EG!bY}1F92iuc2vS%u7^jEcXXz^w-2*$u!80%h>yZ@LqkJZ3hjRL>vKm#kt!iycxqplGe36$HKG~ZYIqs32M-Ukhl=SuGm;i{n@iWX|C%53i7j_}1{`XX* z;V2=eZU()p3n3?QtDeG~2fZy<&%@E$xTP!&mXc zoB~32jAg>kn0cKe{^fjDYHPh?9_RCdpqjPXwa-T-wB_2aF!tspHlsGb@%y2Y2?bT`md~9!@ zX^4Qm6Jq+SZ-dR4{X3k5O;~es++pL`Z=?fK=2yYTQ~Z{`6t>y z6HeNa)_M3Xm)II;Ob5=XM{7IjFEg~X`8>}nnkeJ+MTs{|q}T%#qoK6)Berj)&{($z z;-3A9-)0=kEU{C6MKuMXMRps@m|=F$LC#-^NSkppbmGJ1*e2|CF0=BEX~!B`FvysC zcvm+H(aJqFW0tyZyi`nMg65b{rfFL+^Wx=CiR8MDk2rWUiWRlIt>Ei>ckT8m-iC3P z9gZp_jo=LzCiB)qzWTwv!zWINJ8>X7D)Qq7ddj_16`8$ z@bnjFW!&dveFf`L+=I#NbY)=>H#7AeL=!0QLiU5K?H=Av=zrO>EX!fP?HP5?Gk+cI zPQtEGTfT)))wZx+32G`~k9zN(^cn;SEmwg_3Kp`leBtvmK`t44!&`vVF@wQedy7%R zC6bHHPo8c6UP7bHrYbeQo4vL{GcbQd=l!5B7S;@iuv%5{~p7sx{*haOCks03gm8oxV@_S6SO53ci+VJ0kz$_GP-MSa>F6wzt)H<(k{*_3| z3M8mQd^pf!fdK$+2mk=qzb29<#^w(Hn?n9uuKNGwk=p_RCV$BzcQqBQ!JLR+nI>O5 z@%r*SCt+49L4&cS4M(tqm3)YnE$U)b@gKOCSSfhS)pt6gVzCCC(%9u%>N_8zhifIj zqSGFJa~wKF1R8m+KcZ6edoulK8;$sypr*7Pn9Fz*;wQ0Y{iUOxJcr*VhlQR zK4-)#r+M+cAgONF0L|~a6Y$r48Zv`CJzj%h(oLHn>@%tqnfGl+rvXYSn-~nG9^DkW z3Nbl5TU()#>3b|$T<_=nOb1#uoY)F zdHJ=x7Xz#LitFx5_&7t+P#N$aKla<2GTPRLf4sV?F(YCu-Wolj!;u$NTT0d$sR;-Q zx*B5(|5&LRXbDXg#k7g@1IvDRn;0>3LA$J`rC=K;BnpZd}kr?bNthMO`w3m<2aw_?tV3ahM^>Z6m4y_?x zt-7hQ3(lUhnPm*!CqDKRYKmh4bB^h{r}?~rOp}4TNNWK3-qra*k8>B1 zX3%uGJ~#3c&9usq^v#|3X&O;qF%9;R6%|E9l;(SFa$d;Lnk^djCaHnY@otTw($z6K z^yKANHHsSh`p%qfak5;trpnLX;mH!!;~T*5sH0to2E&|?CYmW;2d`a*E7(%LXd?8; z3{kLk-NV0uIO}YOXffp&O*R~qS3EJtG~7t+5>O3ZaR!~D?{K?S24v-7V^J2G=)rei z3B9A#eZM*`7+?CmDvp-l>ZkRxZWw_Cx)jaikg=UjOzMuLuQG|vcX{;4FBJ!n%1tge zqRK4C+W4(UsU7NHnu=*QYB$_BLH5k|n~d$(x0FDHd?oW&)gjJorKt@3vy_D}3 z3&0mQD_w{%i3NB2D--#Nmv?9S|1#%m!#H(qMqNK#rO|T; zHU%c{+)=1iOV%*YTS%E!qaym!i!O=c=8*_r>6ioUC_a)dx?V5IDGcUfVnx8=p`c=T zD|7FL433WrD#Y+KQ#UZ@-ji&0zJ7T#t+2QEQA7tgqpCqjvsD^bkHxl~TTy}lRsyTf zC&X&!?Zk2VtHWE+SS4Z4l`)t{3q|X%ic#(80;fz(HtUJT_AD)&3)59(kWjJesIFi1 zL_Jl*^Dg$02DN^)j%b1?H=s+}jsrwwyZj7N8t2qfdR5p4hbpw=T=CfQl&wijj+M00 zfG^asPL(e8Kjp!|{!Mayd>1H6uvzfVng_?=4{v!hbNftH3KN2c8(Os<%5*z)gvZI4 z6=1Z(@NOeJir{oy&ypE#;ac9T?2k8{HDUBj^ov1h84}n%n$UQVT|@|#gvElKNN92c zFvl!6P4f??r#ko8V;%wVP9;E&f-#ueXu@nWe*E(M)=l4@2HgwGFNO?uiIDpCL%N94 zHPBZXz(&E?m-)+U{Auf2Ecu{<$eDD3P@jvQWQ}Xyr(LouyUkFo^u}p$r4^GRZ3hc1 zeuXE5+NEDyJbYrFq*QT4h~hLBGZK?X$vU|eMvNk`?UOmBdZSll=Qn#PBSH08TTkLO zn_{r*&j}soNO&R`s7l7$s(}^E1ZaT6PBHBQV(KqrrjB^3(=LAPC&A%CMTOtn%^!^ikKdmjPsvEG}Gk z&Nt>#zq~W05Z*ASm+EtZq1zl{J$t)YPS3q1qv3B=<<|+3kaBMntV?I3B4#R|Xp4kI z2KnSSUcPxcqyGjrK*xUCf{HiHrbt*LJ*Ck01*0sK-&ep_3JIrP7yrnTRdv1?lXa9# zgKMI3UM0m7#i?+T@N?p~C++t%Yvy+)tG$41p)zOujA zvLoi|rR#u}dUevbkzEkA*Su~;Au|6K=kfKPo z<$36~w_r7CDtbA;Q~_}Fs8}v`Oq%E5uv!wzy*)l`S%a!=a#Ne)L%mx&+0^M;IJGOH zS?SrGA3Z?n4LhHck7rNLAM!VkSBJ~{sF?idND-fL4#TNg;3J7qXQLS`U6im;=QYrU z!>sI3s#K4=&mQZgTJOB|*)F9FE>*^^Y?`p;(vlrw-TU#)>Q6T2{S>3`!JprlT$f4k zrtKg_i=MuE8P9+1GCqn+$)Vr}<3EO9Qq_DSMbqF$TjofJi&tDURF+W&l^`Ki?AC3N zV6XU9^RUi3)^OdI9v0%v-$JzHW}*o^!C%$yZkny#I3xdPxwBw*=sQSA{n6R{)m3kr zYrWeD!NtkxK&UOL4&l|29&2RW@{uz(wB*S{(ewS!;!J_OmjH5)6;1Ij5stct({22v z%f~6NfBEP%EQ?y-_iq!8zkGBK7XaY?tB?NCE&0!(?&w9I(O*K{HBJ5Bp6bOkd1f;s z7Hen_&Th#99T}6kk? zT$gGVm$l)32b(H(>J zGPo_PiU|j-}y#0Ss!UGxB9eu`Fj8Dl{<|Y#Epp zC!496B9U>qCuG2AKX39QZ>-ldj&0cjJUZKOk!FHUlxB$|QKh=-&t@0}2Pm7#hy3*& zKoQ5W`8tt@JY6_iHjTK*bQTh5vO5AQ5_(xO2VG2v9Wwl|Y0#!B3HO&$+IpQ5;Nk2m z9oXR9kyu9}=jgn)@31{BJxu~f-GP0%3Chf|rXIzVU?(e85pJ7oW;=*d`cN2Xs*R}06K3p` zO(paLMJnP%-3ZsJiCR)Lg1%|07zLwBZx&c3}5qb~Yf z5u%$=H~c7b1M;5@BP1j&g{jTjZ++|0^+Gg;Gt9K3Q)bOD3QTBpac|g9JLc@*_N-*} z5MUe9mOpFV$-sbVXcU;ySE{)N-`1v3r0A|KYWK1trOjb%epcxcNHf#$D9vGk6<%Hs$-*Fd>XR99 z>KD}Gfc*gAyrJk9NAt;IcYJXuG~#ah`9+Gk^&?13Dir$f)T>%_YkFu|bmx$p(IMN~ zknkg;9HKRVW7W!1CSjr*Qt3V&-}`kxjt)Ir~{_ zOkLRq*+>{B2a|Stuk9OJF)arwqro&m7XUiE{@I-Zi4 zzpy$rrddjUTY_IVCKxYa_(D=>9G*+frBtY!-^L=J3U6&1j|BN8Z1*yXZIgUHbXKqd zg^2O}GQB6=9g(p6iSe#TyqG74lJfjQ1*hp0hUiX|$t)c$8}N#yX1VlI$uC>=9)-e6 z?i{!DDK%8mUI1YzQo3lLD`H)-ZeK&jk$X^(vn(^xW5J>$bRDmllOkfE|FAoAf1T8Y z+jkO*td%>-E({rS@sa z-f_zqaG!xrU8bcXk_)X2_bBx`DC{vX;Wo4G==Qp%L{zjgmp$NHbT5Wf_2ePsTs`-da{*}wk3 z!GBgb{v8~T{I?DL-}R1P+~4(%|FYpfgZF>uvi>@iKM(T1h4R0MzeD-|Lj3cZ`*)%n l-rtCS9Pxj+^nTHQUwVJgVPJp%5-`6W9>`xGlKA)A{{Yq+s_Fm$ literal 0 HcmV?d00001 diff --git a/resources/views/Admin/Pages/manage_cms/news_and_articles/add_news_article.blade.php b/resources/views/Admin/Pages/manage_cms/news_and_articles/add_news_article.blade.php new file mode 100644 index 0000000..89dae37 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/news_and_articles/add_news_article.blade.php @@ -0,0 +1,123 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_cms'; +@endphp + + + +
+ +
+ +
+ +
+ +
+
+

Add News & Article

+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
+
+ +
+ +
+ Drag & drop files here + +
+
+
+
+
+
+
+
+ + +
+ +
+
+
+ +
+ + + +
+ +
+ + +
+ + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/news_and_articles/edit_news_and_articles.blade.php b/resources/views/Admin/Pages/manage_cms/news_and_articles/edit_news_and_articles.blade.php new file mode 100644 index 0000000..3acb3d4 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/news_and_articles/edit_news_and_articles.blade.php @@ -0,0 +1,123 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_cms'; +@endphp + + + +
+ +
+ +
+ +
+ +
+
+

Edit Manage News & Articles

+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
+
+ +
+ +
+ Drag & drop files here + + +
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+ + + +
+ +
+ + +
+ + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/news_and_articles/manage_cms_news_and_articles.blade.php b/resources/views/Admin/Pages/manage_cms/news_and_articles/manage_cms_news_and_articles.blade.php new file mode 100644 index 0000000..ae979f5 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/news_and_articles/manage_cms_news_and_articles.blade.php @@ -0,0 +1,115 @@ +@extends('Admin.layouts.master') + +@section('content') + + + +
+ +
+ +
+ +
+ +
+

Edit Manage News & Articles

+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ +
+ + +
+
+ +
+ +
+
+
+ +
+
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ Save +
+
+
+
+ +
+
+
+
+ +
+ +
+ Drag & drop files here + +
+
+
+
+
+
+
+ +
+ + + +
+ +
+ + +
+ + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/news_and_articles/manage_cms_news_article.blade.php b/resources/views/Admin/Pages/manage_cms/news_and_articles/manage_cms_news_article.blade.php new file mode 100644 index 0000000..eba501d --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/news_and_articles/manage_cms_news_article.blade.php @@ -0,0 +1,369 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_cms'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+
+ + +
+
+
+ +
+ + +
+ + + + + + + + + + + + + + + + @foreach($category as $value) + + + + + + + + @endforeach + + +
Sr. No.Category NameAdded DateArticle CountAction
{{$loop->iteration}} + + {{$value->category_name}} + + {{ \Carbon\Carbon::parse($value->created_at)->toFormattedDateString() }} + + {{count($value->articles)}} + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ +
+ +
+
+ +
+ + +
+ + +
+ + + + + + + + + + + + + + + + + @foreach($article as $value) + + + + + + + + + @endforeach + + +
Sr. No.Articles NameAdded DateCategoryImageAction
{{$loop->iteration}} + + {{$value->article_name}} + + {{ \Carbon\Carbon::parse($value->created_at)->toFormattedDateString() }} + + @foreach($category as $data) + {{($data->id == $value->category_id) ? $data->category_name : ''}} + @endforeach + + + alt + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+
+
+
+ + + + + + +
+ +
+ + + + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/testimonial/add_testimonial.blade.php b/resources/views/Admin/Pages/manage_cms/testimonial/add_testimonial.blade.php new file mode 100644 index 0000000..dff550c --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/testimonial/add_testimonial.blade.php @@ -0,0 +1,215 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_cms'; +@endphp + + + + + + + + +
+ +
+
+

+ Add Testimonial

+
+
+ +
+
+ @csrf +
+
+
+ +
+ +
+
+ +
+
+
+ +
+ +
+
+
+ +
+
+ +
+ +
+
+ +
+ + + + + + + + + + +
+
+ + + +
+
+
+
+
+ + +
+
+
+
+
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/testimonial/add_testimonial.php b/resources/views/Admin/Pages/manage_cms/testimonial/add_testimonial.php new file mode 100644 index 0000000..080b5a3 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/testimonial/add_testimonial.php @@ -0,0 +1,83 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_cms'; +@endphp + + + + +
+ +
+
+

+ Add Testimonial

+
+
+ +
+
+ @csrf +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ +
+ + +
+
+
+
+
+
+ +
+
+
+
+ + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/testimonial/edit_testimonial.blade.php b/resources/views/Admin/Pages/manage_cms/testimonial/edit_testimonial.blade.php new file mode 100644 index 0000000..9753d5c --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/testimonial/edit_testimonial.blade.php @@ -0,0 +1,259 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_cms'; +@endphp + + + + + + + +
+ +
+
+

+ Edit Testimonial

+
+
+ +
+
+ @csrf + +
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + @if(isset($data['testimonial_data']) && count($data['testimonial_data']) > 0) +
+ @foreach($data['testimonial_data'] as $image) +
+ Image {{ $image['id'] }} + x +
+ @endforeach +
+ @endif +
+
+ + {{-- --}} + {{-- Save + --}} + {{-- Save & Create Schedule + --}} +
+ +
+
+
+
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_cms/testimonial/testimonial.blade.php b/resources/views/Admin/Pages/manage_cms/testimonial/testimonial.blade.php new file mode 100644 index 0000000..a274ee5 --- /dev/null +++ b/resources/views/Admin/Pages/manage_cms/testimonial/testimonial.blade.php @@ -0,0 +1,316 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_cms'; +@endphp + + + + +
+ +
+ +
+ +
+ + + +
+ +

+ Testimonials

+ + +
+ + +
+ + + + + Add + + + + +
+ +
+ +
+ + +
+ +
+ +
+ +
+ +
+ + + + @foreach ($data as $datas) + + + + + + @endforeach + + + +
+
+
+ user +
+
+ {{ $datas['user_name'] }} + {{ date('d-m-y', strtotime($datas['created_at'])) }} +
+
+
+
+ + {{ $datas['title'] }} +

+ {{ $datas['description'] }} +

+
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ +
+ +
+ +
+ + +
+ + + + + +
+ + + + + + + + +
+ + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_company_users/add_company.blade.php b/resources/views/Admin/Pages/manage_company_users/add_company.blade.php new file mode 100644 index 0000000..dc5d9d4 --- /dev/null +++ b/resources/views/Admin/Pages/manage_company_users/add_company.blade.php @@ -0,0 +1,88 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_company_users'; +@endphp + +
+ +
+ + +
+

+ Add Company

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+ +
+
+ + +
+ + +
+ + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_company_users/add_company_user.blade.php b/resources/views/Admin/Pages/manage_company_users/add_company_user.blade.php new file mode 100644 index 0000000..5563018 --- /dev/null +++ b/resources/views/Admin/Pages/manage_company_users/add_company_user.blade.php @@ -0,0 +1,141 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_company_users'; +@endphp + + + + + + +
+ +
+ + +
+

+ Add Company Users

+
+
+ + + +
+ +
+ + + + + + + + + + + + + + + + + +
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+ Save +
+
+ + +
+ +
+ + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_company_users/company.blade.php b/resources/views/Admin/Pages/manage_company_users/company.blade.php new file mode 100644 index 0000000..97c4b96 --- /dev/null +++ b/resources/views/Admin/Pages/manage_company_users/company.blade.php @@ -0,0 +1,1007 @@ +@extends('Admin.layouts.master') + +@section('content') + +@php + $currentPage = 'manage_company_users'; +@endphp + +
+ +
+ +
+
+ +
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Company Logo : + Logo
+ Company Name : + GetSetFit
+ Contact Number : + 9920185020
+ Email Address : + GetSetFit@gmail.com
+ Bio : + Lorem Ipsum is simply dummy text of
the printing and typesetting
industry.
+ Company Users : + 10
+ Location : + Malad
+ Website URL : + getsetfit.in
+ Founded Date : + 02-07-2015 +
+
+ + +
+
+
+
+ +
+ +
+ +
+
+ +
+ + + +

+

+ + + + + +
+ +
+ +
+ +
+ + + + + + Filter + + +
+ + Export + + + Upload + + + +
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+
+ +
+ +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.NameEmailContact NumberAgeCityGenderDepartmentStatusActions
1 + user + Priyanka Joshi + Priyankajoshi@gmail.com + 7208055681 + 25 + malad + male + Lorem Ipsum + +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2 + user + Anushka Varma + Anushkavarma@gmail.com + 7208055681 + 25 + malad + male + Lorem Ipsum + +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
3 + user + Vishakha Patel + Vishakhapatel@gmail.com + 7208055681 + 25 + malad + male + Lorem Ipsum + +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
4 + user + Pooja Kamble + Poojakamble@gmail.com + 7208055681 + 25 + malad + male + Lorem Ipsum + +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
5 + user + Aditi Sharma + Aditisharma@gmail.com + 7208055681 + 25 + malad + male + Lorem Ipsum + +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
6 + user + Shikha Roy + Shikharoy@gmail.com + 7208055681 + 25 + malad + male + Lorem Ipsum + +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
7 + user + Dipali Shah + Dipalishah@gmail.com + 7208055681 + 25 + malad + male + Lorem Ipsum + +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
8 + user + Dipti Varma + Diptivarma@gmail.com + 7208055681 + 25 + malad + male + Lorem Ipsum + +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ +
+ +
+
+
+
+ + +
+
+ + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_company_users/company_users.php b/resources/views/Admin/Pages/manage_company_users/company_users.php new file mode 100644 index 0000000..a717c11 --- /dev/null +++ b/resources/views/Admin/Pages/manage_company_users/company_users.php @@ -0,0 +1,131 @@ +@extends('Admin.layouts.master') + +@section('content') + +@php + $currentPage = 'manage_company_users'; +@endphp + +
+ +
+ + +
+

+ Add Company Users

+
+
+ + + +
+ +
+ + + + + + + + + + + + + + + + + +
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+ Save +
+
+ + +
+ + +
+ + + + + + + + + + +@endsection + diff --git a/resources/views/Admin/Pages/manage_company_users/manage_company_user.blade.php b/resources/views/Admin/Pages/manage_company_users/manage_company_user.blade.php new file mode 100644 index 0000000..ec9c4b3 --- /dev/null +++ b/resources/views/Admin/Pages/manage_company_users/manage_company_user.blade.php @@ -0,0 +1,628 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_company_users'; +@endphp + +
+ +
+ + + +

+ Manage Company

+ +
+ Export + + + +
+ +
+ + +
+ +
+
+
+ +
+
+ +
+
+
+ +
+ +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.Company NameEmployee CountContact NumberEmail IdActions
1 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
2 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
3 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
4 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
5 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + +
6 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
7 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
8 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_company_users/users-profile-three.blade.php b/resources/views/Admin/Pages/manage_company_users/users-profile-three.blade.php new file mode 100644 index 0000000..72aa804 --- /dev/null +++ b/resources/views/Admin/Pages/manage_company_users/users-profile-three.blade.php @@ -0,0 +1,605 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_company_users'; +@endphp +
+ +
+ +
+ +

+ Users Profile

+
+
+
+ +
+
+
+
+ user +

Profile Photo

+
+
+
+ Name : Priyanka Joshi +
+
+ Email : Priyanka60@gmail.com +
+
+ Phone : 7202066330 +
+
+
+
+
+
+ Bio : Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. +
+
+ City : Malad +
+
+ Full Address : Malad West, Mumbai, Maharashtra 400064 +
+
+ Weight : 40 +
+
+
+
+ D.O.B : 10-12-1996 +
+
+ Age : 25 +
+
+ Height : 5.2 +
+
+ Last Updated Date : 08-07-2022 +
+
+
+
+ Badges : user useruser +
+
+ Current Rank : 1 +
+
+ Previous Rank : 1 +
+
+ Mood-M-Meter : user +
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.Quiz DateQuiz ScoreView Questions
1 + + 22-08-2022 + 8/10 + + + + View + + +
2 + + 22-08-2022 + 8/10 + + + + View + + +
3 + + 22-08-2022 + 8/10 + + + + View + + +
4 + + 22-08-2022 + 8/10 + + + + View + + +
5 + + 22-08-2022 + 8/10 + + + + View + + +
6 + + 22-08-2022 + 8/10 + + + + View + + +
7 + + 22-08-2022 + 8/10 + + + + View + + +
+ +
+ +
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Primary Goals : + Weight Loss
+ Secondary Goals : + Detox
+ Activity Level : + Lightly Action (1-3 Days a week)
+ Desired Body Type : + Basic-Fit
+ Food Type : + Vegetarian
+ Allergies : + Nuts
+ Health Condition : + Diabetes
+ BMR Calculation : + 1000 - 1500 + + View + +
+ Suggested Diet : + Keto Diet + + + Change Diet + + + +
+
+ + +
+
+
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+
+ + + + + + + +
+
+
+
+
+ + +
+ + +
+ + +
+ +
+
+ +
+
+ +
+
+
+ + + + + +
+
+
+
+
+ +
+ Save + +
+
+ +
+
+
+ +
+
+
+
+ + +
+
+ + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_company_users/users_profile_three.blade.php b/resources/views/Admin/Pages/manage_company_users/users_profile_three.blade.php new file mode 100644 index 0000000..741bd07 --- /dev/null +++ b/resources/views/Admin/Pages/manage_company_users/users_profile_three.blade.php @@ -0,0 +1,604 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_company_users'; +@endphp +
+ +
+ +
+ +

+ Users Profile

+
+
+
+ +
+
+
+
+ user +

Profile Photo

+
+
+
+ Name : Priyanka Joshi +
+
+ Email : Priyanka60@gmail.com +
+
+ Phone : 7202066330 +
+
+
+
+
+
+ Bio : Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. +
+
+ City : Malad +
+
+ Full Address : Malad West, Mumbai, Maharashtra 400064 +
+
+ Weight : 40 +
+
+
+
+ D.O.B : 10-12-1996 +
+
+ Age : 25 +
+
+ Height : 5.2 +
+
+ Last Updated Date : 08-07-2022 +
+
+
+
+ Badges : user useruser +
+
+ Current Rank : 1 +
+
+ Previous Rank : 1 +
+
+ Mood-M-Meter : user +
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.Quiz DateQuiz ScoreView Questions
1 + + 22-08-2022 + 8/10 + + + + View + + +
2 + + 22-08-2022 + 8/10 + + + + View + + +
3 + + 22-08-2022 + 8/10 + + + + View + + +
4 + + 22-08-2022 + 8/10 + + + + View + + +
5 + + 22-08-2022 + 8/10 + + + + View + + +
6 + + 22-08-2022 + 8/10 + + + + View + + +
7 + + 22-08-2022 + 8/10 + + + + View + + +
+ +
+ +
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Primary Goals : + Weight Loss
+ Secondary Goals : + Detox
+ Activity Level : + Lightly Action (1-3 Days a week)
+ Desired Body Type : + Basic-Fit
+ Food Type : + Vegetarian
+ Allergies : + Nuts
+ Health Condition : + Diabetes
+ BMR Calculation : + 1000 - 1500 + + View + +
+ Suggested Diet : + Keto Diet + + + Change Diet + + + +
+
+ + +
+
+
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+
+ + + + + + + +
+
+
+
+
+ + +
+ + +
+ + +
+ +
+
+ +
+
+ +
+
+
+ + + + + +
+
+
+
+
+ +
+ Save + +
+
+ +
+
+
+ +
+
+
+
+ + +
+
+ + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_company_users/view_company_users.php b/resources/views/Admin/Pages/manage_company_users/view_company_users.php new file mode 100644 index 0000000..80c54b0 --- /dev/null +++ b/resources/views/Admin/Pages/manage_company_users/view_company_users.php @@ -0,0 +1,129 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_company_users'; +@endphp +
+ +
+ + +
+

+ Add Company Users

+
+
+ + + +
+ +
+ + + + + + + + + + + + + + + + + +
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+ Save +
+
+ + +
+ + +
+ + + + + + + + + + +@endsection + diff --git a/resources/views/Admin/Pages/manage_contact/manage_contact.blade.php b/resources/views/Admin/Pages/manage_contact/manage_contact.blade.php new file mode 100644 index 0000000..075a0d3 --- /dev/null +++ b/resources/views/Admin/Pages/manage_contact/manage_contact.blade.php @@ -0,0 +1,299 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_contact'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage Contact Us

+ + +
+ + +
+ + + + Export + + Deleted + + + +
+ +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + @php + $no = 1; + @endphp + @foreach ($manage_contact as $manage_contacts) + + @if(isset($manage_contacts['user']['full_name'])) + + + + + + + + + + + @php + $no++; + @endphp + @endif + @endforeach + + +
Sr. No.NameEmail IdPhoneTypeMessageActions
{{ $no }} + + @if (!is_null($manage_contacts['user'])) + {{ $manage_contacts['user']['full_name'] }} + @endif + + @if (!is_null($manage_contacts['user'])) + {{ $manage_contacts['user']['email_id'] }} + @endif + + @if (!is_null($manage_contacts['user'])) + {{ $manage_contacts['user']['contact_number'] }} + @endif + + {{ $manage_contacts['type'] }} + + View + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_contact/manage_contact_deleted.blade.php b/resources/views/Admin/Pages/manage_contact/manage_contact_deleted.blade.php new file mode 100644 index 0000000..d159ea1 --- /dev/null +++ b/resources/views/Admin/Pages/manage_contact/manage_contact_deleted.blade.php @@ -0,0 +1,245 @@ +@extends('Admin.layouts.master') + +@section('content') + +@php +$currentPage = 'manage_contact'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage Contact Us

+ + +
+ + +
+ + + + Export + + + + +
+ +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + @foreach ($deleted_contact as $k => $deleted_contacts) + + + + + + + + + + @endforeach + + +
Sr. No.NameEmail IdPhoneTypeMessage
{{ $loop->iteration }} + + @if(!is_null($deleted_contacts['user'])) + {{ $deleted_contacts['user']['full_name'] }} + @endif + + @if(!is_null($deleted_contacts['user'])) + {{ $deleted_contacts['user']['email_id'] }} + @endif + + @if(!is_null($deleted_contacts['user'])) + {{ $deleted_contacts['user']['contact_number'] }} + @endif + + {{ $deleted_contacts['type'] }} + + View + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_diet_plans/add_diet_plan.blade.php b/resources/views/Admin/Pages/manage_diet_plans/add_diet_plan.blade.php new file mode 100644 index 0000000..366020b --- /dev/null +++ b/resources/views/Admin/Pages/manage_diet_plans/add_diet_plan.blade.php @@ -0,0 +1,184 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_diet_plan'; +@endphp + + + + + + +
+ +
+
+

+ Add Diet Plan

+
+
+ +
+ +
+ @csrf + + + +
+ +
+ +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ Drop file here or click to upload + +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+
+ + + + + + + + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_diet_plans/edit_diet_plan.blade.php b/resources/views/Admin/Pages/manage_diet_plans/edit_diet_plan.blade.php new file mode 100644 index 0000000..82f0cdb --- /dev/null +++ b/resources/views/Admin/Pages/manage_diet_plans/edit_diet_plan.blade.php @@ -0,0 +1,139 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_diet_plan'; +@endphp + + + + + + +
+ +
+
+

+ Edit Diet Plan

+
+
+ +
+
+ @csrf + + + + + +
+ +
+ +
+
+
+ +
+ +
+
+
+ + +
+ + + + + +
+
+ + + +
+ +
+ +
+
+ + + + +
+ +
+ + + + + + + + + +
+
+
+ +
+
+
+
+ + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_diet_plans/manage-diet-plan.blade.php b/resources/views/Admin/Pages/manage_diet_plans/manage-diet-plan.blade.php new file mode 100644 index 0000000..8c7d834 --- /dev/null +++ b/resources/views/Admin/Pages/manage_diet_plans/manage-diet-plan.blade.php @@ -0,0 +1,911 @@ + +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_diet_plan'; +@endphp + +
+ + +
+ +
+ +
+ +

+ Manage Diet Plan

+
+
+
+
+ + Add + +
+ + +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + +
Sr. No.QuestionsCategoriesLast Updated DateActions
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.Plan NameDescriptionDiet GoalsPlanActions
1 + Super Diet + + View + + + View + + + View + + + + + + + + + + + + + + + + + + + + + + + + +
2 + Super Diet + + View + + + View + + + View + + + + + + + + + + + + + + + + + + + + + + + + +
3 + Super Diet + + View + + + View + + + View + + + + + + + + + + + + + + + + + + + + + + + + +
4 + Super Diet + + View + + + View + + + View + + + + + + + + + + + + + + + + + + + + + + + + +
5 + Super Diet + + View + + + View + + + View + + + + + + + + + + + + + + + + + + + + + + + + +
6 + Super Diet + + View + + + View + + + View + + + + + + + + + + + + + + + + + + + + + + + + +
7 + Super Diet + + View + + + View + + + View + + + + + + + + + + + + + + + + + + + + + + + + +
8 + Super Diet + + View + + + View + + + View + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + + + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_diet_plans/manage_diet_plan.blade.php b/resources/views/Admin/Pages/manage_diet_plans/manage_diet_plan.blade.php new file mode 100644 index 0000000..6a45a25 --- /dev/null +++ b/resources/views/Admin/Pages/manage_diet_plans/manage_diet_plan.blade.php @@ -0,0 +1,238 @@ + +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_diet_plan'; +@endphp + + + + +
+ +
+ +
+ +
+

+ Manage Diet Plan +

+
+ + + Add + + +
+
+
+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + @foreach($manage_diet_plan as $manage_diet_plans) + + + + + + + + + + @endforeach + + +
Sr. No.ImagesDiet CategoriesBMR Range FromBMR Range ToLast Updated DateActions
{{ $loop->iteration }} + + + + + {{$manage_diet_plans['diet_categories']}} + {{$manage_diet_plans['bmr_range_from']}} + {{$manage_diet_plans['bmr_range_to']}} + {{ date('d-m-y', strtotime($manage_diet_plans['updated_at'])) }} + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + +
Sr. No.Plan NameDescriptionDiet GoalsPlanActions
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + + + +
+ + +
+ + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_direct_users/manage_direct_users.blade.php b/resources/views/Admin/Pages/manage_direct_users/manage_direct_users.blade.php new file mode 100644 index 0000000..70d5954 --- /dev/null +++ b/resources/views/Admin/Pages/manage_direct_users/manage_direct_users.blade.php @@ -0,0 +1,242 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_direct_users'; +@endphp + +
+ +
+ + +

+ Direct Registered Users

+ + + + + +
+ +
+ + + + + + + + + Filter + + + + + +
+ + + + + Export + + + +
+ +
+ +
+ +
+
+
+ +
+
+ +
+
+
+ +
+ +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + @foreach($user_data as $user_datas) + + + + + + + + + + + + + @endforeach + + +
Sr. No.Profile PicFull NameContact NumberAgeCityEmail IdOTP VerifiedRegistered DateActions
{{ $loop->iteration }} + + + + {{ $user_datas['full_name']}} + {{ $user_datas['contact_number'] }} + @if(!is_null($user_datas['user_detail'])) + {{$user_datas['user_detail']['age']}} + @endif + @if(!is_null($user_datas['user_detail'])) + {{$user_datas['user_detail']['city']}} + @endif + {{ $user_datas['email_id']}} + Yes + {{ date('d-m-y', strtotime($user_datas['created_at'])) }} + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ + + + + @endsection diff --git a/resources/views/Admin/Pages/manage_direct_users/users-profile-two.blade.php b/resources/views/Admin/Pages/manage_direct_users/users-profile-two.blade.php new file mode 100644 index 0000000..0f77cfa --- /dev/null +++ b/resources/views/Admin/Pages/manage_direct_users/users-profile-two.blade.php @@ -0,0 +1,833 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_direct_users'; +@endphp + + +
+ +
+ +
+ +

+ Users Profile

+
+
+
+ + @if(!empty($get_single_user_data['user_detail']['gender'])) +
+ +
+
+ @csrf + +
+
+ user +

Profile Photo

+
+
+
+ Name : {{$get_single_user_data['full_name']}} +
+
+ Email : {{$get_single_user_data['email_id']}} +
+
+ Phone : {{$get_single_user_data['contact_number']}} +
+
+
+
+
+
+ Bio : @if(!is_null($get_single_user_data['user_detail'])) + {{$get_single_user_data['user_detail']['user_bio']}} + @endif + +
+
+ City : @if(!is_null($get_single_user_data['user_detail'])) + {{$get_single_user_data['user_detail']['city']}} + @endif + +
+
+ Full Address : @if(!is_null($get_single_user_data['user_detail'])) + {{$get_single_user_data['user_detail']['full_address']}} + @endif + +
+
+
+
+ D.O.B : @if(!is_null($get_single_user_data['user_detail'])) + {{$get_single_user_data['user_detail']['birth_date']}} + @endif + +
+
+ Age : + +
+
+ Height : + +
+
+ Last Updated Date : @if(!is_null($get_single_user_data['user_detail'])) + {{ date('d-m-y', strtotime($get_single_user_data['user_detail']['updated_at']))}} + @endif + +
+
+
+
+ Current Rank : 1 +
+
+ Previous Rank : 1 +
+ + + +
+ +
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.Quiz DateQuiz ScoreView Questions
1 + + 22-08-2022 + 8/10 + + + + View + + +
2 + + 22-08-2022 + 8/10 + + + + View + + +
3 + + 22-08-2022 + 8/10 + + + + View + + +
4 + + 22-08-2022 + 8/10 + + + + View + + +
5 + + 22-08-2022 + 8/10 + + + + View + + +
6 + + 22-08-2022 + 8/10 + + + + View + + +
7 + + 22-08-2022 + 8/10 + + + + View + + +
+ +
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Primary Goals : + Weight Loss
+ Secondary Goals : + Detox
+ Activity Level : + Lightly Action (1-3 Days a week)
+ Desired Body Type : + Basic-Fit
+ Food Type : + Vegetarian
+ Allergies : + Nuts
+ Health Condition : + Diabetes
+ BMR Calculation : + 1000 - 1500 + + View + +
+ Suggested Diet : + Keto Diet + + + Change Diet + + + +
+
+ + +
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Subscription Type : +
+ +
+
+
+ +
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+
+
+ +
+ +
+
+ +
+
+ +
+
+
+ + + + + + + +
+
+
+
+
+ + + + + +
+ + +
+ + +
+ +
+
+ +
+
+ +
+
+
+ + + + + +
+
+
+
+
+ +
+ Save + +
+
+ +
+
+
+ +
+
+ @else +
+

No Data Found

+
+ @endif +
+
+ + +
+
+ + + + + + + + + + + +@endsection + diff --git a/resources/views/Admin/Pages/manage_feedback/manage_feedback.blade.php b/resources/views/Admin/Pages/manage_feedback/manage_feedback.blade.php new file mode 100644 index 0000000..7f36c95 --- /dev/null +++ b/resources/views/Admin/Pages/manage_feedback/manage_feedback.blade.php @@ -0,0 +1,229 @@ +@extends('Admin.layouts.master') + +@section('content') + +@php + $currentPage = 'manage_feedback'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage Feedback

+ + +
+ + + + + + + + + + + + +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + @foreach($feedback as $data) + + + + + + + + + + @endforeach + + +
Sr. No.NameMessageAction
{{$loop->index+1}} + + + + + + + {{$data->user->full_name}} + {{$data->message}} + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_notification/manage_notification.blade.php b/resources/views/Admin/Pages/manage_notification/manage_notification.blade.php new file mode 100644 index 0000000..6b9105f --- /dev/null +++ b/resources/views/Admin/Pages/manage_notification/manage_notification.blade.php @@ -0,0 +1,69 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_notification'; +@endphp + + + + +
+ +
+ +
+

+ Manage Notification

+
+
+ + +
+ +
+
+
+ +
+ + + +
+ + +
+ + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_plan/add_plan.blade.php b/resources/views/Admin/Pages/manage_plan/add_plan.blade.php new file mode 100644 index 0000000..23a631b --- /dev/null +++ b/resources/views/Admin/Pages/manage_plan/add_plan.blade.php @@ -0,0 +1,98 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_plan'; +@endphp + + + + + +
+ +
+
+

+ Add Plan

+
+
+ +
+
+ @csrf +
+
+
+ +
+ +
+
+
+ +
+ Drop file here or click to upload +
+ +
+
+
+ + +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ + +
+
+
+
+
+
+ +
+
+
+
+ + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_plan/edit_plan.blade.php b/resources/views/Admin/Pages/manage_plan/edit_plan.blade.php new file mode 100644 index 0000000..2a97928 --- /dev/null +++ b/resources/views/Admin/Pages/manage_plan/edit_plan.blade.php @@ -0,0 +1,146 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_plan'; +@endphp + + + + + +
+ +
+
+

+ Edit Plan

+
+
+ +
+
+ @csrf + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ + +
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+ + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_plan/manage_plan.blade b/resources/views/Admin/Pages/manage_plan/manage_plan.blade new file mode 100644 index 0000000..d1daa58 --- /dev/null +++ b/resources/views/Admin/Pages/manage_plan/manage_plan.blade @@ -0,0 +1,283 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_plan'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage Contact Us

+ + +
+ + +
+ + + + + Add + + + +
+ +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + @foreach ($manage_contact as $manage_contacts) + + + + + + + + + + + @endforeach + + +
Sr. No.NameEmail IdPhoneTypeMessageActions
{{ $loop->iteration }} + + {{ $manage_contacts['user']['full_name'] }} + + {{ $manage_contacts['user']['email_id'] }} + + {{ $manage_contacts['user']['contact_number'] }} + + + {{ $manage_contacts['type'] }} + + View + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_plan/manage_plan.blade.php b/resources/views/Admin/Pages/manage_plan/manage_plan.blade.php new file mode 100644 index 0000000..e994412 --- /dev/null +++ b/resources/views/Admin/Pages/manage_plan/manage_plan.blade.php @@ -0,0 +1,246 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_plan'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage Plan

+ + +
+ + +
+ + + + + Add Plan + + + +
+ +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + @foreach ($manage_plan as $manage_plans) + + + + + + + + + + + + + + + + + @endforeach + + +
Sr. No.Plan NameDescriptionPlan PeriodPlan PriceCurrency TypeActions
{{ $loop->iteration }} + + {{ $manage_plans['plan_name'] }} + {{ $manage_plans['subscription_package_descriptions']['description'] }} + {{ $manage_plans['subscription_plan_packages']['plan_period'] }} + {{ $manage_plans['subscription_plan_packages']['plan_price'] }} + {{ $manage_plans['subscription_plan_packages']['currency_type'] }} + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_pre_recorded/add_manage_pre_recorded_video.blade.php b/resources/views/Admin/Pages/manage_pre_recorded/add_manage_pre_recorded_video.blade.php new file mode 100644 index 0000000..5d1c63e --- /dev/null +++ b/resources/views/Admin/Pages/manage_pre_recorded/add_manage_pre_recorded_video.blade.php @@ -0,0 +1,134 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_pre_recorded'; +@endphp + + + + +
+ +
+
+ +
+
+ +
+
+
+
+ + +
+
+ + +
+ +
+
+
+
+ +
+
+
+ +
+
+
+
+ +
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+
+ + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_pre_recorded/edit_manage_pre_recorded_video.blade.php b/resources/views/Admin/Pages/manage_pre_recorded/edit_manage_pre_recorded_video.blade.php new file mode 100644 index 0000000..a22b67a --- /dev/null +++ b/resources/views/Admin/Pages/manage_pre_recorded/edit_manage_pre_recorded_video.blade.php @@ -0,0 +1,114 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_pre_recorded'; +@endphp + + + + +
+ +
+
+ +
+
+ +
+
+
+
+ + +
+
+ + +
+
+ +
+
+
+ +
+
+
+
+
+ + +
+ +
+ +
+ +
+
+ +
+ +
+
+
+ +
+
+
+
+ + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_pre_recorded/manage_pre_recorded_video.blade.php b/resources/views/Admin/Pages/manage_pre_recorded/manage_pre_recorded_video.blade.php new file mode 100644 index 0000000..7d6e0ce --- /dev/null +++ b/resources/views/Admin/Pages/manage_pre_recorded/manage_pre_recorded_video.blade.php @@ -0,0 +1,887 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_pre_recorded'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.Course NameCourse DescriptionVideoActions
1 + Zumba flex + + View + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
2 + Zumba flex + + View + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
3 + Zumba flex + + View + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
4 + Zumba flex + + View + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
5 + Zumba flex + + View + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
6 + Zumba flex + + View + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
7 + Zumba flex + + View + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
8 + Zumba flex + + View + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ + +
+ + + + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_pre_recorded/view_manage_pre_recorded_video.blade.php b/resources/views/Admin/Pages/manage_pre_recorded/view_manage_pre_recorded_video.blade.php new file mode 100644 index 0000000..95cd479 --- /dev/null +++ b/resources/views/Admin/Pages/manage_pre_recorded/view_manage_pre_recorded_video.blade.php @@ -0,0 +1,105 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_pre_recorded'; +@endphp + + + + +
+ +
+
+ +
+
+ +
+
+
+
+ + +
+
+ + +
+ +
+ + + +
+ +
+ +
+
+
+ +
+
+
+
+ + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_reports/activities_report.blade.php b/resources/views/Admin/Pages/manage_reports/activities_report.blade.php new file mode 100644 index 0000000..d7b8ac1 --- /dev/null +++ b/resources/views/Admin/Pages/manage_reports/activities_report.blade.php @@ -0,0 +1,123 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_reports'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+

Activities Report

+
+
+
+ +
+ +
+ +
+
+
+
+ +
+
+ +

To

+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+
+

Column Name

+

Column Name

+

Column Name

+

Column Name

+

Column Name

+

Column Name

+

Column Name

+

Column Name

+
+
+ + + + +
+ +
+
+ + + +
+ +
+ + +
+ + +
+ + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_reports/manage_reports.blade.php b/resources/views/Admin/Pages/manage_reports/manage_reports.blade.php new file mode 100644 index 0000000..65318d0 --- /dev/null +++ b/resources/views/Admin/Pages/manage_reports/manage_reports.blade.php @@ -0,0 +1,65 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_reports'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage Reports

+
+ +
+ +
+ + +
+ + +
+ + + +@endsection diff --git a/resources/views/Admin/Pages/manage_reports/transaction_report.blade.php b/resources/views/Admin/Pages/manage_reports/transaction_report.blade.php new file mode 100644 index 0000000..fda8c84 --- /dev/null +++ b/resources/views/Admin/Pages/manage_reports/transaction_report.blade.php @@ -0,0 +1,114 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_reports'; +@endphp + + +
+ +
+ +
+ +
+ +
+

Transaction Report

+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ + +

To

+ + +
+
+
+
+ +
+
+ +
+
+
+
+ + + +
+ +
+
+

Column Name

+

Column Name

+

Column Name

+

Column Name

+

Column Name

+

Column Name

+

Column Name

+

Column Name

+
+
+ + + + +
+ +
+
+ + + +
+ +
+ + +
+ + +
+ + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_reports/user_report.blade.php b/resources/views/Admin/Pages/manage_reports/user_report.blade.php new file mode 100644 index 0000000..b7ff48d --- /dev/null +++ b/resources/views/Admin/Pages/manage_reports/user_report.blade.php @@ -0,0 +1,157 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_reports'; +@endphp + + + +
+ +
+ +
+ +
+ +
+

User Report

+
+
+
+ +
+ +
+ +
+ + +
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+
+
+ +
+
+ +

To

+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+
+

Column Name

+

Column Name

+

Column Name

+

Column Name

+

Column Name

+

Column Name

+

Column Name

+

Column Name

+
+
+ + + + +
+ +
+
+ + + +
+ +
+ + +
+ + +
+ + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_settings/manage_setting.blade.php b/resources/views/Admin/Pages/manage_settings/manage_setting.blade.php new file mode 100644 index 0000000..0776b76 --- /dev/null +++ b/resources/views/Admin/Pages/manage_settings/manage_setting.blade.php @@ -0,0 +1,64 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_settings'; +@endphp + + + + +
+ +
+ +
+ +
+

+ Manage Settings

+
+ +
+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+ +
+ +
+ + + +
+ + +
+ + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_short_clips/add_short_clips.blade.php b/resources/views/Admin/Pages/manage_short_clips/add_short_clips.blade.php new file mode 100644 index 0000000..99d31f1 --- /dev/null +++ b/resources/views/Admin/Pages/manage_short_clips/add_short_clips.blade.php @@ -0,0 +1,131 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_short_clips'; +@endphp + + + + + +
+ +
+
+

+ Add Short Clips

+
+
+ +
+
+ @csrf + + +
+ +
+ + +
+ +
+
+ +
+ + +
+ +
+
+ +
+ + +
+ +
+
+ +
+ +
+ +
+
+ + +
+ + +
+
+
+ +
+
+
+
+ + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_short_clips/edit_short_clips.blade.php b/resources/views/Admin/Pages/manage_short_clips/edit_short_clips.blade.php new file mode 100644 index 0000000..2e7c149 --- /dev/null +++ b/resources/views/Admin/Pages/manage_short_clips/edit_short_clips.blade.php @@ -0,0 +1,141 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_short_clips'; +@endphp + + + + + +
+ +
+
+

+ Edit Short Clips

+
+
+ +
+
+ @csrf + + + +
+ +
+ +
+
+
+ +
+ +
+
+ + + + + + + + + +
+ +
+ +
+
+
+ +
+ +
+ +
+
+
+ +
+ + +
+
+
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_short_clips/manage_short_clips.blade.php b/resources/views/Admin/Pages/manage_short_clips/manage_short_clips.blade.php new file mode 100644 index 0000000..81fd844 --- /dev/null +++ b/resources/views/Admin/Pages/manage_short_clips/manage_short_clips.blade.php @@ -0,0 +1,364 @@ +@extends('Admin.layouts.master') + +@section('content') + @php + $currentPage = 'manage_short_clips'; + @endphp + + + + + + +
+ + +
+ @include('Admin.layouts.messages') +
+ + +
+

+ Manage Short Clips

+
+ +
+ +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + @foreach ($data['getAllShortsClips'] as $datas) + + + + + + + + + @endforeach + + +
Sr. No.TitleDescriptionVideo UrlCreated DateAction
{{ $loop->iteration }} + {{ $datas->video_title }} + View + + + {{ $datas['video_url'] }} + + + {{ date('d-m-y', strtotime($datas['created_at'])) }} + +
+
+ + +
+ is_active ? 'checked' : '' }}> + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+
+ +
+
+ +
+ + + + + + + + + + + {{-- --}} + + + + + + + @foreach ($data['getAllShortsClipsDeleted'] as $datas) + + + + + + + + + @endforeach + + +
Sr. No.TitleDescriptionVideo UrlDeleted DateAction
{{ $loop->iteration }} + {{ $datas->video_title }} + View + + + {{ $datas['video_url'] }} + + + {{ date('d-m-y', strtotime($datas['deleted_at'])) }} +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + + + +
+ + +
+ + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_sub_admins/manage_sub_admin.blade.php b/resources/views/Admin/Pages/manage_sub_admins/manage_sub_admin.blade.php new file mode 100644 index 0000000..ff3ba06 --- /dev/null +++ b/resources/views/Admin/Pages/manage_sub_admins/manage_sub_admin.blade.php @@ -0,0 +1,932 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_sub_admin'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage Sub Admins

+ + +
+ + +
+ + + + Add New + + + +
+ +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.NameEmail IdLast LoginPermissionsAction
1 + + Priyanka + + Priyanka@gmail.com + + 28-08-2022 + + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
2 + + Priyanka + + Priyanka@gmail.com + + 28-08-2022 + + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
3 + + Priyanka + + Priyanka@gmail.com + + 28-08-2022 + + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
4 + + Priyanka + + Priyanka@gmail.com + + 28-08-2022 + + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
5 + + Priyanka + + Priyanka@gmail.com + + 28-08-2022 + + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
6 + + Priyanka + + Priyanka@gmail.com + + 28-08-2022 + + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
7 + + Priyanka + + Priyanka@gmail.com + + 28-08-2022 + + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
8 + + Priyanka + + Priyanka@gmail.com + + 28-08-2022 + + + + View + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_subscription/manage_archive_list.blade.php b/resources/views/Admin/Pages/manage_subscription/manage_archive_list.blade.php new file mode 100644 index 0000000..807e8bd --- /dev/null +++ b/resources/views/Admin/Pages/manage_subscription/manage_archive_list.blade.php @@ -0,0 +1,1590 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_subcription'; +@endphp + + + + + + +
+ +
+ +
+ + +
+

Manage Subscriptions-Archive List

+
+ +
+
+
+ +
+ + +
+ +
+
+
+ +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.NameEmailPhonePlanNext Renewal DatePaymentActions
1 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
2 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
3 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
4 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
5 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
6 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
7 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
8 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.NameEmailPhonePlanLast Payment DatePaymentActions
1 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
2 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
3 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
4 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
5 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
6 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
7 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
8 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.NameEmailPhonePlanCancellation DateCancellation ReasonPaymentActions
1 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + +
2 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + +
3 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + +
4 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + +
5 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + +
6 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + +
7 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + +
8 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.NameEmailPhonePlanDeleted DateDeleted ByDeleted ReasonActions
1 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Admin + + View + + + + + + + + + +
2 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Sub Admin + + View + + + + + + + + + +
3 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Admin + + View + + + + + + + + + +
4 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Sub Admin + + View + + + + + + + + + +
5 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Admin + + View + + + + + + + + + +
6 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Sub Admin + + View + + + + + + + + + +
7 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Admin + + View + + + + + + + + + +
8 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Sub Admin + + View + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+
+
+
+ + + + +
+ + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_subscription/manage_subscription.blade.php b/resources/views/Admin/Pages/manage_subscription/manage_subscription.blade.php new file mode 100644 index 0000000..55ce976 --- /dev/null +++ b/resources/views/Admin/Pages/manage_subscription/manage_subscription.blade.php @@ -0,0 +1,1681 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_subcription'; +@endphp + + + + + + + + +
+ +
+ + + +
+

+ Manage Subscriptions

+
+ + +
+
+
+ +
+ + +
+ +
+
+
+
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.NameEmailPhonePlanNext Renewal DatePaymentActions
1 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
2 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
3 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
4 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
5 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
6 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
7 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
8 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+ +
+
+
+
+
+
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.NameEmailPhonePlanLast Payment DatePaymentActions
1 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
2 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
3 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
4 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
5 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
6 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
7 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
8 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + 1000 + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.NameEmailPhonePlanCancellation DateCancellation ReasonPaymentActions
1 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + + + +
2 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + + + +
3 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + + + +
4 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + + + +
5 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + + + +
6 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + + + +
7 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + + + +
8 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + + View + + 1000 + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.NameEmailPhonePlanDeleted DateDeleted ByDeleted ReasonActions
1 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Admin + + View + + + + + + + + + + + + + +
2 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Sub Admin + + View + + + + + + + + + + + + + +
3 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Admin + + View + + + + + + + + + + + + + +
4 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Sub Admin + + View + + + + + + + + + + + + + +
5 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Admin + + View + + + + + + + + + + + + + +
6 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Sub Admin + + View + + + + + + + + + + + + + +
7 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Admin + + View + + + + + + + + + + + + + +
8 + Priyanka + Priyanka@gmail.com + 9920185020 + Beginners 3Months + 22-08-2022 + Sub Admin + + View + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_subscription/manage_subscription_plans.blade.php b/resources/views/Admin/Pages/manage_subscription/manage_subscription_plans.blade.php new file mode 100644 index 0000000..3c12c5e --- /dev/null +++ b/resources/views/Admin/Pages/manage_subscription/manage_subscription_plans.blade.php @@ -0,0 +1,313 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_subcription_plans'; +@endphp + + +
+ +
+ +
+
+ +

+ Manage Subscription Plans

+
+ +
+
+
+ +
+
+
+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+
+ +
+
+ +
+
+
+

1

+

Month

+

Price

+
+ 500 +
+
+ +
+
+
+

3

+

Months

+

Price

+
+ 1000 +
+
+ +
+
+
+

6

+

Months

+

Price

+
+ 2000 +
+
+ +
+
+
+

1

+

Year

+

Price

+
+ 4000 +
+
+ +
+
+ +
+
+
+
+
+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+
+ +
+
+ +
+
+
+

1

+

Month

+

Price

+
+ 500 +
+
+ +
+
+
+

3

+

Months

+

Price

+
+ 1000 +
+
+ +
+
+
+

6

+

Months

+

Price

+
+ 2000 +
+
+ +
+
+
+

1

+

Year

+

Price

+
+ 4000 +
+
+ +
+
+ +
+
+
+
+
+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+
+ +
+
+
+

1

+

Month

+

Price

+
+ 500 +
+
+ +
+
+
+

3

+

Months

+

Price

+
+ 1000 +
+
+ +
+
+
+

6

+

Months

+

Price

+
+ 2000 +
+
+ +
+
+
+

1

+

Year

+

Price

+
+ 4000 +
+
+ +
+
+ +
+
+
+
+
+
+ + +
+
+ + + + + + +
+ + + + + + + + +
+ + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_subscription_plans/manage_subscription_plans.blade.php b/resources/views/Admin/Pages/manage_subscription_plans/manage_subscription_plans.blade.php new file mode 100644 index 0000000..3c12c5e --- /dev/null +++ b/resources/views/Admin/Pages/manage_subscription_plans/manage_subscription_plans.blade.php @@ -0,0 +1,313 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_subcription_plans'; +@endphp + + +
+ +
+ +
+
+ +

+ Manage Subscription Plans

+
+ +
+
+
+ +
+
+
+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+
+ +
+
+ +
+
+
+

1

+

Month

+

Price

+
+ 500 +
+
+ +
+
+
+

3

+

Months

+

Price

+
+ 1000 +
+
+ +
+
+
+

6

+

Months

+

Price

+
+ 2000 +
+
+ +
+
+
+

1

+

Year

+

Price

+
+ 4000 +
+
+ +
+
+ +
+
+
+
+
+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+
+ +
+
+ +
+
+
+

1

+

Month

+

Price

+
+ 500 +
+
+ +
+
+
+

3

+

Months

+

Price

+
+ 1000 +
+
+ +
+
+
+

6

+

Months

+

Price

+
+ 2000 +
+
+ +
+
+
+

1

+

Year

+

Price

+
+ 4000 +
+
+ +
+
+ +
+
+
+
+
+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+

Lorem Ipsum

+
+
+
+ +
+
+
+

1

+

Month

+

Price

+
+ 500 +
+
+ +
+
+
+

3

+

Months

+

Price

+
+ 1000 +
+
+ +
+
+
+

6

+

Months

+

Price

+
+ 2000 +
+
+ +
+
+
+

1

+

Year

+

Price

+
+ 4000 +
+
+ +
+
+ +
+
+
+
+
+
+ + +
+
+ + + + + + +
+ + + + + + + + +
+ + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_teacher/manage_teacher.blade.php b/resources/views/Admin/Pages/manage_teacher/manage_teacher.blade.php new file mode 100644 index 0000000..1e1b4eb --- /dev/null +++ b/resources/views/Admin/Pages/manage_teacher/manage_teacher.blade.php @@ -0,0 +1,255 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_teacher'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage teacher

+ + +
+ + +
+ + + + + Add Plan + + + +
+ +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + @foreach ($manage_plan as $manage_plans) + + + + + + + + + + + + + + + + + @endforeach + + +
Sr. No.Plan NameDescriptionPlan PeriodPlan PriceCurrency TypeActions
{{ $loop->iteration }} + + {{ $manage_plans['plan_name'] }} + {{ $manage_plans['subscription_package_descriptions']['description'] }} + {{ $manage_plans['subscription_plan_packages']['plan_period'] }} + {{ $manage_plans['subscription_plan_packages']['plan_price'] }} + {{ $manage_plans['subscription_plan_packages']['currency_type'] }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_teachers/add_manage_teacher.blade.php b/resources/views/Admin/Pages/manage_teachers/add_manage_teacher.blade.php new file mode 100644 index 0000000..a15bec8 --- /dev/null +++ b/resources/views/Admin/Pages/manage_teachers/add_manage_teacher.blade.php @@ -0,0 +1,96 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_teacher'; +@endphp + + + + + +
+ +
+
+

+ Add Teacher

+
+
+ +
+
+ @csrf +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ +
+
+ +
+
+
+
+
+ +
+ +
+
+
+ +
+
+ +
+
+
+
+ +
+ +
+
+
+ + +
+
+
+
+
+
+ +
+
+
+
+ + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_teachers/edit_manage_teacher.blade.php b/resources/views/Admin/Pages/manage_teachers/edit_manage_teacher.blade.php new file mode 100644 index 0000000..7bc5d1e --- /dev/null +++ b/resources/views/Admin/Pages/manage_teachers/edit_manage_teacher.blade.php @@ -0,0 +1,98 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_teacher'; +@endphp + + + + + +
+ +
+
+

+ Edit Teacher

+
+
+ +
+
+ @csrf +
+
+
+ + +
+ +
+
+
+ +
+ +
+
+
+
+ +
+
+ +
+
+
+
+
+ +
+ +
+
+
+ +
+
+ +
+
+
+
+ +
+ +
+
+
+ + +
+
+
+
+
+
+ +
+
+
+
+ + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_teachers/manage_teacher.blade.php b/resources/views/Admin/Pages/manage_teachers/manage_teacher.blade.php new file mode 100644 index 0000000..c532947 --- /dev/null +++ b/resources/views/Admin/Pages/manage_teachers/manage_teacher.blade.php @@ -0,0 +1,257 @@ +@extends('Admin.layouts.master') + +@section('content') +@php +$currentPage = 'manage_teacher'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage Teacher

+ + +
+ + +
+ + + + + Add Teacher + + + +
+ +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + @foreach($data as $datas) + + + + + + + + + + + @endforeach + + +
Sr. No.Teacher titleTeacher sub titleTeacher DescriptionAddressContact NumberActions
+ {{ $loop->iteration }} + + {{$datas['teacher_title']}} + + {{$datas['teacher_sub_title']}} + + View + + + {{$datas['address']}} + + {{$datas['contact_number']}} + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + + + + + + + +@endsection diff --git a/resources/views/Admin/Pages/manage_transactions/manage-transactions-archive-list.blade.php b/resources/views/Admin/Pages/manage_transactions/manage-transactions-archive-list.blade.php new file mode 100644 index 0000000..659f047 --- /dev/null +++ b/resources/views/Admin/Pages/manage_transactions/manage-transactions-archive-list.blade.php @@ -0,0 +1,543 @@ +@extends('Admin.layouts.master') + +@section('content') + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage Transactions-Archive List

+ + +
+ + +
+ + + + Export + + + +
+ +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.NameEmailPhonePlanPayment DateTransaction IdMode of PaymentMade PaymentAction
1 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
2 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + +
3 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
4 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
5 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
6 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
7 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
8 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_transactions/manage_transactions.blade.php b/resources/views/Admin/Pages/manage_transactions/manage_transactions.blade.php new file mode 100644 index 0000000..f54a682 --- /dev/null +++ b/resources/views/Admin/Pages/manage_transactions/manage_transactions.blade.php @@ -0,0 +1,632 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_transactions'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage Transactions

+ + + +
+ + +
+ + + + + Export + + + +
+ +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.NameEmailPhonePlanPayment DateTransaction IdMode of PaymentMade PaymentAction
1 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + + + + + + + +
2 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + + + + + + + +
3 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + + + + + + + +
4 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + + + + + + + +
5 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + + + + + + + +
6 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + + + + + + + +
7 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + + + + + + + +
8 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/manage_transactions/manage_transactions_archive_list.blade.php b/resources/views/Admin/Pages/manage_transactions/manage_transactions_archive_list.blade.php new file mode 100644 index 0000000..cbe260c --- /dev/null +++ b/resources/views/Admin/Pages/manage_transactions/manage_transactions_archive_list.blade.php @@ -0,0 +1,546 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'manage_transactions'; +@endphp + + + + +
+ +
+ +
+ +
+ +
+ +

+ Manage Transactions-Archive List

+ + +
+ + +
+ + + + Export + + + +
+ +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.NameEmailPhonePlanPayment DateTransaction IdMode of PaymentMade PaymentAction
1 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
2 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + +
3 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
4 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
5 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
6 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
7 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
8 + + Priyanka + + Priyanka@gmail.com + + 7202066330 + + + Beginners 3Months + 22-08-2022 + 13542974 + Card + + 1000 + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/mange_company_user/manage_company_users.blade.php b/resources/views/Admin/Pages/mange_company_user/manage_company_users.blade.php new file mode 100644 index 0000000..f2e7ef0 --- /dev/null +++ b/resources/views/Admin/Pages/mange_company_user/manage_company_users.blade.php @@ -0,0 +1,607 @@ +@extends('Admin.layouts.master') + +@section('content') + + +
+ +
+ + + +

+ Manage Company

+ +
+ Export + + + +
+ +
+ + +
+ +
+
+
+ +
+
+ +
+
+
+ +
+ +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Sr. No.Company NameEmployee CountContact NumberEmail IdActions
1 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
2 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
3 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
4 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
5 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
6 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
7 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
8 + + GetSetFit + 10 + + + + + + + + + + + 9920185020 + GetSetFit@gmail.com + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Pages/user_overview/user_overview.blade.php b/resources/views/Admin/Pages/user_overview/user_overview.blade.php new file mode 100644 index 0000000..e13c0c1 --- /dev/null +++ b/resources/views/Admin/Pages/user_overview/user_overview.blade.php @@ -0,0 +1,97 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'user_overview'; +@endphp + + + + +
+ +
+ +
+

+ User Overview

+
+
+ @csrf + +
+ + +
+ +
+ + +
+
+ +
+
+
+
+
+ +
+ + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/Templates/manage_contact.blade.php b/resources/views/Admin/Templates/manage_contact.blade.php new file mode 100644 index 0000000..4a3a201 --- /dev/null +++ b/resources/views/Admin/Templates/manage_contact.blade.php @@ -0,0 +1,89 @@ + + + + + + + + Contact Us + + + + + + + + + +
+ + + + + + +
 
+ + + + + + + + + + +
+ + + + + + + +
  +
+ + +
+ Get Set Fitsss!
+
+
+

+ Dear

+ {{ $data['email'] }}

+
+ + + + + + +
+

+ {{ $data['body'] }} +

+ Warm Regards, +

+ GSF
+

+ http://127.0.0.1:8000/ + +

+
+
 
+ + + + + + +
 
+
+ + \ No newline at end of file diff --git a/resources/views/Admin/Templates/sign_in_otp.blade.php b/resources/views/Admin/Templates/sign_in_otp.blade.php new file mode 100644 index 0000000..6f92744 --- /dev/null +++ b/resources/views/Admin/Templates/sign_in_otp.blade.php @@ -0,0 +1,95 @@ + + + +@php + // print_r($data); + // die; +@endphp + + + + Sign In + + + + + + + + + +
+ + + + + + +
 
+ + + + + + + + + + +
+ + + + + + + +
  +
+ + +
+ Get Set Fitsss!
+
+
+

+ Dear
+ Your OTP is {{ $body }}

+ +
+ + + + + + +
+

+ +

+ Warm Regards, +

+ GSF
+

+ http://127.0.0.1:8000/ + + + +

+
+
 
+ + + + + + +
 
+
+ + \ No newline at end of file diff --git a/resources/views/Admin/Templates/user_otp.blade.php b/resources/views/Admin/Templates/user_otp.blade.php new file mode 100644 index 0000000..0c0c59c --- /dev/null +++ b/resources/views/Admin/Templates/user_otp.blade.php @@ -0,0 +1,95 @@ + + + +@php + // print_r($data); + // die; +@endphp + + + + Contact Us + + + + + + + + + +
+ + + + + + +
 
+ + + + + + + + + + +
+ + + + + + + +
  +
+ + +
+ Get Set Fitsss!
+
+
+

+ Dear

+ {{ $data['body'] }}

+ +
+ + + + + + +
+

+ +

+ Warm Regards, +

+ GSF
+

+ http://127.0.0.1:8000/ + + + +

+
+
 
+ + + + + + +
 
+
+ + \ No newline at end of file diff --git a/resources/views/Admin/Templates/user_register.blade.php b/resources/views/Admin/Templates/user_register.blade.php new file mode 100644 index 0000000..2626ea6 --- /dev/null +++ b/resources/views/Admin/Templates/user_register.blade.php @@ -0,0 +1,13 @@ + + + + ItsolutionStuff.com + + +

Dear,

+

{{$data['full_name']}}

+

{{$data['email_id']}}

+

You Are Registered Successfully !!!

+

Thank you

+ + \ No newline at end of file diff --git a/resources/views/Admin/dashboard.blade.php b/resources/views/Admin/dashboard.blade.php new file mode 100644 index 0000000..48acf8f --- /dev/null +++ b/resources/views/Admin/dashboard.blade.php @@ -0,0 +1,296 @@ +@extends('Admin.layouts.master') + +@section('content') +@php + $currentPage = 'dashboard'; +@endphp + +
+ +
+ +
+ +

+ Welcome back, Priyank Mehta +

+
+
+ +
+ + +
+ +
+ +
+ +
+ + + +
+ + +
+ + + +
+ + +
+ + + +
+ + +
+ + + +
+ + +
+ + +
+ +

+ Global Leaderboard

+
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + @foreach ($manage_dashboard as $manage_dashboards) + @if(isset($manage_dashboards['user']['full_name'])) + + + + + + + + + + + + + + + + + @else +

No Data Found

+ @endif + @endforeach + + + +
Sr. No.Full NameRankingPointsProgress BarActions
{{ $loop->iteration }} + + {{ $manage_dashboards['user']['full_name'] }} + {{ $loop->iteration }} + {{ $manage_dashboards['total_score'] }} + {{ $manage_dashboards['progress_bar'] }} + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ +
+ + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Admin/footer.blade.php b/resources/views/Admin/footer.blade.php new file mode 100644 index 0000000..870f5bd --- /dev/null +++ b/resources/views/Admin/footer.blade.php @@ -0,0 +1,278 @@ +{{-- for copper js--}} + + + + +{{-- for copper js end--}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + diff --git a/resources/views/Admin/function.php b/resources/views/Admin/function.php new file mode 100644 index 0000000..c4fb103 --- /dev/null +++ b/resources/views/Admin/function.php @@ -0,0 +1,24 @@ + $longUrl, + ); + $headers = array( + 'Authorization: Bearer ' . $accessToken, + 'Content-Type: application/json', + ); + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($ch, CURLOPT_POST, true); + curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data)); + curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); + $result = curl_exec($ch); + curl_close($ch); + $response = json_decode($result, true); + return $response['link']; +} + +?> diff --git a/resources/views/Admin/header.blade.php b/resources/views/Admin/header.blade.php new file mode 100644 index 0000000..4de1737 --- /dev/null +++ b/resources/views/Admin/header.blade.php @@ -0,0 +1,56 @@ + + + + + + + + GetSetFit + + + + + + + + {{-- for copper css--}} + + {{-- for copper css end--}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
diff --git a/resources/views/Admin/layouts/master.blade.php b/resources/views/Admin/layouts/master.blade.php new file mode 100644 index 0000000..38bface --- /dev/null +++ b/resources/views/Admin/layouts/master.blade.php @@ -0,0 +1,584 @@ +@include('Admin.header') + + +
+ +
+ +
+
+ + + + + + + + +
+
+ + +
+ + Logo + +
+ + +
+ +
+ + + +
+ + +
+ +
+ +
+ user +
+ +
+
+
+ +
+ +
+ + + + + + + + + +
+ +
+ +
+ @yield('content') +
+ +
+ +
+ + + @include('Admin.footer') diff --git a/resources/views/Admin/layouts/messages.blade.php b/resources/views/Admin/layouts/messages.blade.php new file mode 100644 index 0000000..6130491 --- /dev/null +++ b/resources/views/Admin/layouts/messages.blade.php @@ -0,0 +1,12 @@ + @if(session()->has('success_msg')) +
+ {{ session()->get('success_msg')}} +
+ @endif + + @if(session()->has('error_msg')) +
+ {{ session()->get('error_msg')}} +
+ @endif + \ No newline at end of file diff --git a/resources/views/Admin/sign_in.blade.php b/resources/views/Admin/sign_in.blade.php new file mode 100644 index 0000000..16275dc --- /dev/null +++ b/resources/views/Admin/sign_in.blade.php @@ -0,0 +1,184 @@ + + + + + + + + GetSetFit + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ @include('Admin.layouts.messages') + +
+ +
+ +
+ @csrf + +
+ +

Welcome Back

+ + +
Sign in to continue to GetSetFit
+ +
+ + +
+ + + +
+ +
+ + + +
+ + + + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + +
+ +
+ +
+ + +
+ + +
+ +
+ + + Logo + + + + + + +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/views/Admin/two_steps.blade.php b/resources/views/Admin/two_steps.blade.php new file mode 100644 index 0000000..04d561c --- /dev/null +++ b/resources/views/Admin/two_steps.blade.php @@ -0,0 +1,157 @@ + + + + + + + GetSetFit + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ +
+ +
+
+ +
+ @csrf +
+ +

Mail Verification

+ + +
Please enter the OTP sent to registered + Mail ID +
+ +
+ + +
+ +
+ + + + + + +
+ + +
OTP has been sent to your + registered Mail ID. OTP valid for00:00 sec +
+
+ Didn't receive any OTP ? + Resend OTP +
+ +
+ + +
+ +
+ +
+ + + + +
+
+ +
+ +
+
+ +
+ + + Logo + + + + + + +
+ +
+
+ +
+ + + + + + + + + + + + + + + diff --git a/resources/views/Frontend/Pages/Payment/checkout.blade.php b/resources/views/Frontend/Pages/Payment/checkout.blade.php new file mode 100644 index 0000000..3dad9da --- /dev/null +++ b/resources/views/Frontend/Pages/Payment/checkout.blade.php @@ -0,0 +1,12 @@ +@extends('Frontend.layouts.master') + +@section('section') +
+ @csrf + + + + +
+ +@endsection \ No newline at end of file diff --git a/resources/views/Frontend/Pages/Payment/payment.blade.php b/resources/views/Frontend/Pages/Payment/payment.blade.php new file mode 100644 index 0000000..4b4f514 --- /dev/null +++ b/resources/views/Frontend/Pages/Payment/payment.blade.php @@ -0,0 +1,31 @@ +@extends('Frontend.layouts.master') + +@section('section') + + +
+
+ + +
+ +
+ + +
+ +
+ + +
+ + + + +
+ + +@endsection \ No newline at end of file diff --git a/resources/views/Frontend/Pages/Payment/response.blade.php b/resources/views/Frontend/Pages/Payment/response.blade.php new file mode 100644 index 0000000..1f35694 --- /dev/null +++ b/resources/views/Frontend/Pages/Payment/response.blade.php @@ -0,0 +1,16 @@ +@extends('Frontend.layouts.master') + +@section('section') + +

Payment Response

+

{{ $message }}

+ + @foreach($params as $key => $value) + + + + + @endforeach +
{{ $key }}{{ $value }}
+ +@endsection diff --git a/resources/views/Frontend/Pages/subcription/create_subcription.blade.php b/resources/views/Frontend/Pages/subcription/create_subcription.blade.php new file mode 100644 index 0000000..6cf5450 --- /dev/null +++ b/resources/views/Frontend/Pages/subcription/create_subcription.blade.php @@ -0,0 +1,50 @@ +@extends('Frontend.layouts.master') + +@section('section') +
+
+
+ + +
+
+ + +
+
+
+ + +
+
+ + +
+
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ +
+@endsection \ No newline at end of file diff --git a/resources/views/Frontend/Pages/subcription/create_subscription.blade.php b/resources/views/Frontend/Pages/subcription/create_subscription.blade.php new file mode 100644 index 0000000..9c16813 --- /dev/null +++ b/resources/views/Frontend/Pages/subcription/create_subscription.blade.php @@ -0,0 +1,78 @@ +@extends('Frontend.layouts.master') + +@section('section') +
+ +
+
+
+
+
Intermidate
+ Join Now +
+
+
+
+
+
+
Beginners
+

With supporting text below as a natural lead-in to additional content.

+ Go somewhere +
+
+
+
+
+
+
Advance
+

With supporting text below as a natural lead-in to additional content.

+ Go somewhere +
+
+
+
+
+ + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Frontend/Pages/subcription/create_subscription_Intermidate.blade.php b/resources/views/Frontend/Pages/subcription/create_subscription_Intermidate.blade.php new file mode 100644 index 0000000..3bfce98 --- /dev/null +++ b/resources/views/Frontend/Pages/subcription/create_subscription_Intermidate.blade.php @@ -0,0 +1,90 @@ +@extends('Frontend.layouts.master') + +@section('section') +
+ +
+
+
+
+
Intermidate
+ Join Now +
+
+
+
+
+ + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Frontend/Pages/subcription/create_subscription_advance.blade.php b/resources/views/Frontend/Pages/subcription/create_subscription_advance.blade.php new file mode 100644 index 0000000..903f654 --- /dev/null +++ b/resources/views/Frontend/Pages/subcription/create_subscription_advance.blade.php @@ -0,0 +1,90 @@ +@extends('Frontend.layouts.master') + +@section('section') +
+ +
+
+
+
+
Advance
+ Join Now +
+
+
+
+
+ + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Frontend/Pages/subcription/create_subscription_beginners.blade.php b/resources/views/Frontend/Pages/subcription/create_subscription_beginners.blade.php new file mode 100644 index 0000000..696a7f2 --- /dev/null +++ b/resources/views/Frontend/Pages/subcription/create_subscription_beginners.blade.php @@ -0,0 +1,90 @@ +@extends('Frontend.layouts.master') + +@section('section') +
+ +
+
+
+
+
Beginners
+ Join Now +
+
+
+
+
+ + + + + +@endsection \ No newline at end of file diff --git a/resources/views/Frontend/Pages/subcription/show_activity.blade.php b/resources/views/Frontend/Pages/subcription/show_activity.blade.php new file mode 100644 index 0000000..a22b829 --- /dev/null +++ b/resources/views/Frontend/Pages/subcription/show_activity.blade.php @@ -0,0 +1,116 @@ +@extends('Frontend.layouts.master') + +@section('section') +
+
+
+
+
+

Activity Name:

+

{{ $manage_activity['activity_name'] }}

+ user +

Activity Title:

+

{{ $manage_activity['title'] }}

+

Activity Description:

+

{!! $manage_activity['description'] !!}

+

{{ $manage_activity['start_date'] }}

+

Plan Name:

+
{{ $manage_activity['subscription']['plan_name'] }}
+

Schedule Detail

+ @if (!is_null($manage_activity['schedule'])) +
{{ $manage_activity['schedule']['activity_name'] }}
+

{{ $manage_activity['schedule']['date'] }}

+

{{ $manage_activity['schedule']['day'] }}

+

{{ $manage_activity['schedule']['time'] }}

+ @endif +

Faqs Data

+ @if (!is_null($manage_activity['faq_activity_link'])) + @foreach($manage_activity['faq_activity_link'] as $data) + @if (!is_null($data['faqs_data'])) +
{{ $data['faqs_data']['question'] }}
+
{{ $data['faqs_data']['answer'] }}
+ @endif + @endforeach + @endif +

Teacher Data

+
{{ $manage_activity['teacher_data']['teacher_title'] }}
+

{{ $manage_activity['teacher_data']['address'] }}

+
{{ $manage_activity['teacher_data']['contact_number'] }}
+ Join Now +
+
+
+
+
+ + + +@endsection \ No newline at end of file diff --git a/resources/views/Frontend/Pages/subcription/subscription.blade.php b/resources/views/Frontend/Pages/subcription/subscription.blade.php new file mode 100644 index 0000000..7d6f97f --- /dev/null +++ b/resources/views/Frontend/Pages/subcription/subscription.blade.php @@ -0,0 +1,17 @@ +@extends('Admin.layouts.master') + +@section('section') +
+
+ Featured +
+
+
Special title treatment
+

With supporting text below as a natural lead-in to additional content.

+ Go somewhere +
+ +
+@endsection \ No newline at end of file diff --git a/resources/views/Frontend/Pages/subcription/view_subscription.blade.php b/resources/views/Frontend/Pages/subcription/view_subscription.blade.php new file mode 100644 index 0000000..fa6bfb6 --- /dev/null +++ b/resources/views/Frontend/Pages/subcription/view_subscription.blade.php @@ -0,0 +1,20 @@ +@extends('Frontend.layouts.master') + +@section('section') +
+ +
+ @foreach($manage_plan as $manage_plans) +
+
+
+
{{ $manage_plans['plan_name'] }}
+

{{ $manage_plans['subscription_package_descriptions']['description'] }}

+ Go somewhere +
+
+
+ @endforeach +
+
+@endsection \ No newline at end of file diff --git a/resources/views/Frontend/footer.blade.php b/resources/views/Frontend/footer.blade.php new file mode 100644 index 0000000..82117b8 --- /dev/null +++ b/resources/views/Frontend/footer.blade.php @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/views/Frontend/header.blade.php b/resources/views/Frontend/header.blade.php new file mode 100644 index 0000000..69fd205 --- /dev/null +++ b/resources/views/Frontend/header.blade.php @@ -0,0 +1,13 @@ + + + + + + + + Document + + + + \ No newline at end of file diff --git a/resources/views/Frontend/index.blade.php b/resources/views/Frontend/index.blade.php new file mode 100644 index 0000000..e69de29 diff --git a/resources/views/Frontend/layouts/master.blade.php b/resources/views/Frontend/layouts/master.blade.php new file mode 100644 index 0000000..28cd763 --- /dev/null +++ b/resources/views/Frontend/layouts/master.blade.php @@ -0,0 +1,32 @@ +@include('Frontend.header') + +
+ +
+
+ @yield('section') +
+ +@include('Frontend.footer') \ No newline at end of file diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php new file mode 100644 index 0000000..ea9ac94 --- /dev/null +++ b/resources/views/auth/login.blade.php @@ -0,0 +1,73 @@ +@extends('layouts.app') + +@section('content') +
+
+
+
+
{{ __('Login') }}
+ +
+
+ @csrf + +
+ + +
+ + + @error('email') + + {{ $message }} + + @enderror +
+
+ +
+ + +
+ + + @error('password') + + {{ $message }} + + @enderror +
+
+ +
+
+
+ + + +
+
+
+ +
+
+ + + @if (Route::has('password.request')) + + {{ __('Forgot Your Password?') }} + + @endif +
+
+
+
+
+
+
+
+@endsection diff --git a/resources/views/auth/passwords/confirm.blade.php b/resources/views/auth/passwords/confirm.blade.php new file mode 100644 index 0000000..f8c8e61 --- /dev/null +++ b/resources/views/auth/passwords/confirm.blade.php @@ -0,0 +1,49 @@ +@extends('layouts.app') + +@section('content') +
+
+
+
+
{{ __('Confirm Password') }}
+ +
+ {{ __('Please confirm your password before continuing.') }} + +
+ @csrf + +
+ + +
+ + + @error('password') + + {{ $message }} + + @enderror +
+
+ +
+
+ + + @if (Route::has('password.request')) + + {{ __('Forgot Your Password?') }} + + @endif +
+
+
+
+
+
+
+
+@endsection diff --git a/resources/views/auth/passwords/email.blade.php b/resources/views/auth/passwords/email.blade.php new file mode 100644 index 0000000..d1ac783 --- /dev/null +++ b/resources/views/auth/passwords/email.blade.php @@ -0,0 +1,47 @@ +@extends('layouts.app') + +@section('content') +
+
+
+
+
{{ __('Reset Password') }}
+ +
+ @if (session('status')) + + @endif + +
+ @csrf + +
+ + +
+ + + @error('email') + + {{ $message }} + + @enderror +
+
+ +
+
+ +
+
+
+
+
+
+
+
+@endsection diff --git a/resources/views/auth/passwords/reset.blade.php b/resources/views/auth/passwords/reset.blade.php new file mode 100644 index 0000000..dccf6c6 --- /dev/null +++ b/resources/views/auth/passwords/reset.blade.php @@ -0,0 +1,65 @@ +@extends('layouts.app') + +@section('content') +
+
+
+
+
{{ __('Reset Password') }}
+ +
+
+ @csrf + + + +
+ + +
+ + + @error('email') + + {{ $message }} + + @enderror +
+
+ +
+ + +
+ + + @error('password') + + {{ $message }} + + @enderror +
+
+ +
+ + +
+ +
+
+ +
+
+ +
+
+
+
+
+
+
+
+@endsection diff --git a/resources/views/auth/register.blade.php b/resources/views/auth/register.blade.php new file mode 100644 index 0000000..12cad1a --- /dev/null +++ b/resources/views/auth/register.blade.php @@ -0,0 +1,77 @@ +@extends('layouts.app') + +@section('content') +
+
+
+
+
{{ __('Register') }}
+ +
+
+ @csrf + +
+ + +
+ + + @error('name') + + {{ $message }} + + @enderror +
+
+ +
+ + +
+ + + @error('email') + + {{ $message }} + + @enderror +
+
+ +
+ + +
+ + + @error('password') + + {{ $message }} + + @enderror +
+
+ +
+ + +
+ +
+
+ +
+
+ +
+
+
+
+
+
+
+
+@endsection diff --git a/resources/views/auth/verify.blade.php b/resources/views/auth/verify.blade.php new file mode 100644 index 0000000..9f8c1bc --- /dev/null +++ b/resources/views/auth/verify.blade.php @@ -0,0 +1,28 @@ +@extends('layouts.app') + +@section('content') +
+
+
+
+
{{ __('Verify Your Email Address') }}
+ +
+ @if (session('resent')) + + @endif + + {{ __('Before proceeding, please check your email for a verification link.') }} + {{ __('If you did not receive the email') }}, +
+ @csrf + . +
+
+
+
+
+
+@endsection diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php new file mode 100644 index 0000000..1f34466 --- /dev/null +++ b/resources/views/home.blade.php @@ -0,0 +1,23 @@ +@extends('layouts.app') + +@section('content') +
+
+
+
+
{{ __('Dashboard') }}
+ +
+ @if (session('status')) + + @endif + + {{ __('You are logged in!') }} +
+
+
+
+
+@endsection diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php new file mode 100644 index 0000000..a6970da --- /dev/null +++ b/resources/views/layouts/app.blade.php @@ -0,0 +1,80 @@ + + + + + + + + + + {{ config('app.name', 'Laravel') }} + + + + + + + @vite(['resources/sass/app.scss', 'resources/js/app.js']) + + +
+ + +
+ @yield('content') +
+
+ + diff --git a/resources/views/vendor/billdesk/payment.blade.php b/resources/views/vendor/billdesk/payment.blade.php new file mode 100644 index 0000000..a1e6782 --- /dev/null +++ b/resources/views/vendor/billdesk/payment.blade.php @@ -0,0 +1,136 @@ + + + + + + + + + {{ config('app.name', 'Laravel') }} + + + + + + +
+
+

Payment Confirmation

+

Below is the details of your payment. Please confirm it and click on proceed to initiate + payment. +

+
+ +
+ @csrf + + + @if ($errors->all()) +
+ {{ implode(',', $errors->all()) }} +
+ @endif +
+
+
+

Billing details

+
+
+ + +
+ Valid buyer name is required. +
+
+
+ +
+ + +
+ Please enter a valid amount. +
+
+ +
+ + +
+ Please enter a valid email address. +
+
+ + {{--
+ + +
+ Please enter a valid telephone no. +
+
--}} + +
+ + +
+ Please enter valid remark +
+
+ +
+
+
+ +
+
+
+ + +
+
+
+
+
+ + + + + + + diff --git a/resources/views/website/Templates/contact_us.blade.php b/resources/views/website/Templates/contact_us.blade.php new file mode 100644 index 0000000..2187ec1 --- /dev/null +++ b/resources/views/website/Templates/contact_us.blade.php @@ -0,0 +1,89 @@ + + + + + + + + Contact Us + + + + + + + + + +
+ + + + + + +
 
+ + + + + + + + + + +
+ + + + + + + +
  +
+ + +
+ Get Set Fitsss!
+
+
+

+ Dear

+ Admin

+
+ + + + + + +
+

+ hiiii +

+ Warm Regards, +

+ GSF
+

+ Contact Us + +

+
+
 
+ + + + + + +
 
+
+ + \ No newline at end of file diff --git a/resources/views/website/footer.blade.php b/resources/views/website/footer.blade.php new file mode 100644 index 0000000..1ba52a2 --- /dev/null +++ b/resources/views/website/footer.blade.php @@ -0,0 +1,65 @@ +
+
+ +
+ + + + + + + + + + + + + +
+
Fitorbit wellness private limited
+

Contact Us

+ + +
+
+
+
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/views/website/header.blade.php b/resources/views/website/header.blade.php new file mode 100644 index 0000000..99cb2be --- /dev/null +++ b/resources/views/website/header.blade.php @@ -0,0 +1,240 @@ + + + + + + + GSF + + + + + + + + + + + +
+ + +
+ +
+
+
+ × +
+ +
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/views/website/layouts/master.blade.php b/resources/views/website/layouts/master.blade.php new file mode 100644 index 0000000..13e7e03 --- /dev/null +++ b/resources/views/website/layouts/master.blade.php @@ -0,0 +1,3 @@ +@include('website.header') +@yield('content') +@include('website.footer') \ No newline at end of file diff --git a/resources/views/website/pages/beyond_transform.blade.php b/resources/views/website/pages/beyond_transform.blade.php new file mode 100644 index 0000000..81216f1 --- /dev/null +++ b/resources/views/website/pages/beyond_transform.blade.php @@ -0,0 +1,282 @@ +@extends('website.layouts.master') +@section('content') + + +
+
+

Transform & Beyond-intermediate

+

₹ 2999 ₹ 3299 for complete course

+
+
+ +
+
+
+
+

transform & beyond is a week strength building & fat loss based program

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the + industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type + and scrambled it to make a type specimen book.

+
+
+
+ +
+
+
+
+
+ +
+
+

Neque porro quisquam

+
+
+
+
+
+

6

+
MONTHS
+
+
+

3299

+
2999
+
+
+ +
    +
  • You will be receiving a bio scale
  • +
  • Gym plus cardio workout
  • +
  • Customise diet plan
  • +
+ +
+
+ +
+
+
+
+

3

+
MONTHS
+
+
+

3299

+
2999
+
+
+ + +
    +
  • You will be receiving a bio scale
  • +
  • Gym plus cardio workout
  • +
  • Customise diet plan
  • +
+ +
+
+ +
+
+
+
+

1

+
MONTHS
+
+ +
+

3299

+
2999
+
+
+ +
    +
  • You will be receiving a bio scale
  • +
  • Gym plus cardio workout
  • +
  • Customise diet plan
  • +
+ +
+
+ +
+
+
+ +
+
+

BATCH DETAILS :

+
+
+ +
+
+ +
+
+
+
+ +
+
+

WHAT TO EXPECT :

+
+
+
+ +
+

exclusive access to our GetSetFit mobile app

+
+ +
+
+ +
+

Intermediate and advance level workouts over Zoom call.

+
+ +
+
+ +
+

Workout sessions (Live + Recordings)

+
+ +
+
+ +
+

Nutrition guidelines

+
+ +
+
+ +
+

Timey video calls to discuss, nutrition, progress, QnA.

+
+ +
+
+ +
+

Dedicated WhatsApp group for open discussions, motivation, and queries resolution

+
+
+
+
+ +
+
+

Post booking, you will be redirected to the Whatsapp group for the selected batch.
Please join the group + as all the communication will be shared in this group.

+
+
+ +
+
+

TERMS & CONDITIONS:

+
    +
  • Kindly consult a doctor whether you are fit to work out or not.
  • +
  • GETSETFIT is not responsible for any injury of the participant.
  • +
  • We do not give refunds. The spot booked cannot be transferred to any other participant.
  • +
  • No changes of batch and WhatsApp numbers and email ids will be entertained. Hence request you to kindly +
    input them correctly while booking your spot.
  • +
+
+
+ +
+
+

FAQ -Frequently Asked Questions

+

Lorem Ipsum is simply dummy text of the printing and
typesetting industrd Lorem Ipsum has been

+ +
+
+
+
+ +
+

We do not give refunds. However, we would be happy to accommodate requests made within the first 5 days of the program for carry-forward to next month under extreme and genuine circumstances. The right to determine the same rests with the management.

+
+
+
+ + +
+
+ +
+

Lorem Ipsum is simply dummy text of the printing and typesetting industrd Lorem Ipsum has been

+
+
+
+ +
+

Lorem Ipsum is simply dummy text of the printing and typesetting industrd Lorem Ipsum has been +

+
+
+
+ +
+

Lorem Ipsum is simply dummy text of the printing and typesetting industrd Lorem Ipsum has been +

+
+
+
+ +
+

Lorem Ipsum is simply dummy text of the printing and typesetting industrd Lorem Ipsum has been +

+
+
+
+
+
+ +
+
+
+
+ + +@endsection \ No newline at end of file diff --git a/resources/views/website/pages/contact_us.blade.php b/resources/views/website/pages/contact_us.blade.php new file mode 100644 index 0000000..541b19e --- /dev/null +++ b/resources/views/website/pages/contact_us.blade.php @@ -0,0 +1,146 @@ +@extends('website.layouts.master') +@section('content') + + + + + + + + + +
+
+
+
+
+
CONTACT US
+ + + + + + +

support@getsetfit.co

+
+
+ + + +
+
+
+ @csrf +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+
+ + + +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/website/pages/download.blade.php b/resources/views/website/pages/download.blade.php new file mode 100644 index 0000000..9d2f2e6 --- /dev/null +++ b/resources/views/website/pages/download.blade.php @@ -0,0 +1,388 @@ +@extends('website.layouts.master') +@section('content') + + + + +
+ +

"FITNESS PROGRAM THAT
ACTUALLY WORKS"

+
+ +
+
+
+
+
+ + + + + +

Thank you for the little space in your Big Heart and small phone

+ + +
+
+
+
+ +
+
+
+
+
+ +
+
+

GetSetFit has Awesome Key
Features

+

+ Our mobile app is designed to make fitness accessible to everyone with workouts you can do at your home. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + +
+
+ +
+
Group Workouts
+

Pump it up with workout buddies who are just as fitness-savvy as you.

+ +
+ +
+
+ +
+
+ +
+
Bio Scale
+

Access your body stats with the ultimate tool for precise tracking and optimizing progress.

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
+
+ +
+
+ +
+
Customized Nutrition
+

Get diet plans tailored specifically for your body and fitness goals.

+ +
+ +
+
+ +
+
+ +
+
Live Leaderboard
+

Stay motivated with our dynamic live leaderboard, igniting your competitive spirit.

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
+ + +
+
+ +
+
Group Workouts
+

Pump it up with workout buddies who are just as fitness-savvy as you.

+
+ +
+
+ +
+
+ +
+
Customized Nutrition
+

Get diet plans tailored specifically for your body and fitness goals.

+
+ +
+
+ +
+
+ +
+
Bio Scale
+

Access your body stats with the ultimate tool for precise tracking and optimizing progress.

+ +
+ +
+
+ +
+
+ +
+
Live Leaderboard
+

Stay motivated with our dynamic live leaderboard, igniting your competitive spirit.

+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+

How it works - 4 easy steps

+

+ Getting started with GSF is a piece of salad. Follow these steps to start your journey. +

+
+
+
+
Step 1
+

+ Register for a program from the website www.getsetfit.com. +

+
+
+
+
+ +

01

+
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+ +

02

+
+
+
+ +
+
Step 2
+

+ Download the app and login with the credentials. +

+
+
+
+
+
+
+
Step 3
+

+ Turn on the notifications to keep in touch always. +

+
+
+
+
+ +

03

+
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+ +

04

+
+
+
+
+
Step 4
+

+ Connect your BIOSCALE once you receive it (typically takes 2-7 business days). +

+
+
+
+
+
+ + + + +@endsection \ No newline at end of file diff --git a/resources/views/website/pages/get_set_eat.blade.php b/resources/views/website/pages/get_set_eat.blade.php new file mode 100644 index 0000000..e25cc96 --- /dev/null +++ b/resources/views/website/pages/get_set_eat.blade.php @@ -0,0 +1,598 @@ +@extends('website.layouts.master') +@section('content') + + +
+
+

Transform & Beyond-personalised nutrition plan

+ +
+
+ +
+
+
+
+
    +
  • 4 weeks personalised nutrition plan.
  • +
  • Introductory call to understand personal preferences, medical issues and design the plan accordingly.
  • +
  • Weekly follow-ups.
  • +
  • Continuous whatsapp support.
  • +
  • Weekly follow-up calls.
  • +
  • Advice on supplements if required or needed.
  • +
  • Detailed approach on blood work if needed.
  • +
+ + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+
+ +

Post registration contact us on Click here WhatsApp

+

+
+
+
+
+
+

1

+
SEASON
+
+
+ + @if($data == "IN") +
3,299/
season
+ @else +
USD 69/
season
+ @endif +
+
+ +
    + + + + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

TERMS & CONDITIONS:

+ + + + + + + +
    +
  • Kindly get a Doctor’s approval before starting the workouts.
  • +
  • GETSETFIT is not responsible for any injury of the participant.
  • +
  • The spot once booked cannot be cancelled or transferred to any other participant or any other season.
  • +
  • No changes of batch and contact details shall be permitted. Hence request you to kindly input them correctly while booking your spot.
  • +
+
+
+ +
+
+

FAQ -Frequently Asked Questions

+ + +
+
+
+
+ +
+

We do not give refunds.

+ +
+
+
+ + +
+
+ +
+ + +

+ Yes, a recorded session will be provided in case you miss the live workouts. The recordings will expire within a week from the end of the batch. +

+
+
+
+ +
+ + + +

+ At GETSETFIT we aim to create a sustainable lifestyle and isn’t difficult to practice for a lifetime. Out custom diet plans will cater to your body’s requirement. You will also have the opportunity to discuss your special requirements with our in-house nutritionist over the fortnightly calls. We also focus on special requirements of the PCOS/D diet. +

+
+
+
+ +
+ + + +

+ The workouts will be focused on full-body training with special attention given to each body part. This includes strength training, HIIT, mobility, and flexibility enhancing exercises. +

+
+
+
+ +
+ + + +

+ The workouts are conducted on video conference. The link for the same will be available on your GETSETFIT mobile app. During the session participants can watch the Coach demonstrate the exercise form. The Coach will also monitor your form and guide you on a real-time basis. +

+
+
+
+ +
+

+ Once you register for the program, we shall ship the Bioscale to the address mentioned in the registration form. +

+
+
+
+ +
+

+ Step 1: Turn on the Bluetooth and Location on your phone. +

+

+ Step 2: Login to the GETSETFIT app. +

+

+ Step 3: Click on the Bioscale tab. +

+

+ Step 4: Tap your foot on the scale. +

+

+ Step 5: Select the device name GSF. +

+

+ Step 6: Step on the scale and see your statistics. +

+
+
+
+ +
+

+ No. You can keep it with you and use it when rejoin the GETSETFIT program +

+
+
+
+ +
+

+ Each BIOSCALE is quality tested before it leaves our office. If this event has to occur, we’d request you to reach out to us on team@getsetfit.co and we shall help you resolve the issue. +

+
+
+
+ +
+

+ The Leaderboard points depend on the following factors:
+ a. Body composition
+ b. Stepping on the scale everyday
+ c. Checking in with us on the Mood-o-meter
+

+
+
+
+
+
+ +
+
+
+
+ +@endsection \ No newline at end of file diff --git a/resources/views/website/pages/gsf_exclusive.blade.php b/resources/views/website/pages/gsf_exclusive.blade.php new file mode 100644 index 0000000..abf3ded --- /dev/null +++ b/resources/views/website/pages/gsf_exclusive.blade.php @@ -0,0 +1,593 @@ +@extends('website.layouts.master') +@section('content') + + +
+
+

gsf exclusive - personal training

+
+
+ +
+
+
+
+
    +
  • 4 weeks program designed to Burn Fat and Build you Strength.
  • +
  • 4 (1:1) Workout Sessions per week with our team of Coaches.
  • +
  • 2 Cardio Drills per Week.
  • +
  • Weekly Nutrition call with In-house Nutritionist.
  • +
  • Custom Diet Plan with Regular Follow Ups.
  • +
  • Flexible Timing.
  • +
  • Validity 5 weeks from the start date of the first session.
  • +
+ + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+
+ +

Post registration contact us on Click here WhatsApp

+
+
+
+
+
+

1

+
SEASON
+
+
+ + @if($data == "IN") +
15,000/
season
+ @else +
USD 200/
season
+ @endif + +
+
+ +
    + + + +
  • No cost EMI
  • +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

WHAT TO EXPECT :

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+

Exclusive access to our GETSETFIT Mobile App and BIOSCALE to measure body composition

+
+
+
+ +
+

Personal nutrition plan + timely calls with nutritionist

+
+
+
+ +
+

Live workouts

+
+
+
+ +
+

Dedicated Whatsapp group for open discussions, motivation and queries resolution

+
+
+
+ +
+

Compete with the community on the Leaderboard

+
+
+
+
+ +
+
+ + +

+ Your login credentials will be sent to your email id and will be live within 36 hours. +

+
+
+ +
+
+

TERMS & CONDITIONS:

+ + + + + + + +
    +
  • Kindly get a Doctor’s approval before starting the workouts.
  • +
  • GETSETFIT is not responsible for any injury of the participant.
  • +
  • The spot once booked cannot be cancelled or transferred to any other participant or any other season.
  • +
  • No changes of batch and contact details shall be permitted. Hence request you to kindly input them correctly while booking your spot.
  • +
+
+
+ +
+
+

FAQ -Frequently Asked Questions

+

Lorem Ipsum is simply dummy text of the printing and
typesetting industrd Lorem Ipsum has been

+ +
+
+
+
+ +
+

We do not give refunds.

+ +
+
+
+ + +
+
+ +
+ + +

+ Yes, a recorded session will be provided in case you miss the live workouts. The recordings will expire within a week from the end of the batch. +

+
+
+
+ +
+ + + +

+ At GETSETFIT we aim to create a sustainable lifestyle and isn’t difficult to practice for a lifetime. Out custom diet plans will cater to your body’s requirement. You will also have the opportunity to discuss your special requirements with our in-house nutritionist over the fortnightly calls. We also focus on special requirements of the PCOS/D diet. +

+
+
+
+ +
+ + + +

+ The workouts will be focused on full-body training with special attention given to each body part. This includes strength training, HIIT, mobility, and flexibility enhancing exercises. +

+
+
+
+ +
+ + + +

+ The workouts are conducted on video conference. The link for the same will be available on your GETSETFIT mobile app. During the session participants can watch the Coach demonstrate the exercise form. The Coach will also monitor your form and guide you on a real-time basis. +

+
+
+
+ +
+

+ Once you register for the program, we shall ship the Bioscale to the address mentioned in the registration form. +

+
+
+
+ +
+

+ Step 1: Turn on the Bluetooth and Location on your phone. +

+

+ Step 2: Login to the GETSETFIT app. +

+

+ Step 3: Click on the Bioscale tab. +

+

+ Step 4: Tap your foot on the scale. +

+

+ Step 5: Select the device name GSF. +

+

+ Step 6: Step on the scale and see your statistics. +

+
+
+
+ +
+

+ No. You can keep it with you and use it when rejoin the GETSETFIT program +

+
+
+
+ +
+

+ Each BIOSCALE is quality tested before it leaves our office. If this event has to occur, we’d request you to reach out to us on team@getsetfit.co and we shall help you resolve the issue. +

+
+
+
+ +
+

+ The Leaderboard points depend on the following factors:
+ a. Body composition
+ b. Stepping on the scale everyday
+ c. Checking in with us on the Mood-o-meter
+

+
+
+
+
+
+ +
+
+
+
+ +@endsection \ No newline at end of file diff --git a/resources/views/website/pages/home_page.blade.php b/resources/views/website/pages/home_page.blade.php new file mode 100644 index 0000000..d2e81aa --- /dev/null +++ b/resources/views/website/pages/home_page.blade.php @@ -0,0 +1,964 @@ +@extends('website.layouts.master') +@section('content') + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+
+ +
+
+ +
+
+ +
+
+ +
+

ONE STEP
AT A TIME

+ +
+
+ +
+
+
+
+ +
+
+

Heart to heart

+

+ GETSETFIT is a Global fitness community, simplifying fitness for every individual. With us you discover the best in you each day – be it a beginner or someone who is seasoned. Our BIOSCALE will tell you just enough about your body to help you elevate your fitness. Peoples experience is the HEART of GETSETFIT. +

+ + + +
+ +
+
+ +
+
+

meet our bio scale

+
A simple way to a personalized running
+
+
+
+
+ +
+
+ +
+
Group Workouts
+

Pump it up with workout buddies who are just as fitness-savvy as you.

+
+ +
+
+ +
+ +
+ +
+
Bio Scale
+

Access your body stats with the ultimate tool for precise tracking and optimizing progress.

+
+ +
+
+ +
+
+ +
+
Wellness Wisdom
+

Discover the secrets to a healthier you with bite-sized wellness wisdom.

+ +
+ + + + + + + + + + + + + + +
+
+ +
+
+
+
+ +
+
+ +
+
Customized Nutrition
+

Get diet plans tailored specifically for your body and fitness goals.

+ +
+ +
+
+ + +
+
+ +
+
Live Leaderboard
+

Stay motivated with our dynamic live leaderboard, igniting your competitive spirit.

+ +
+ +
+
+ +
+
+ +
+
GSF Community
+

Sweat together with the always enthusiastic and motivating GSF community.

+ +
+ + + + + + + + + + + + + +
+
+ +
+ +
+
+ +
+
+ +
+
Group Workouts
+

Pump it up with workout buddies who are just as fitness-savvy as you.

+
+ +
+
+ +
+
+ +
+
Customized Nutrition
+

Get diet plans tailored specifically for your body and fitness goals.

+
+ +
+
+ +
+
+ +
+
Bio Scale
+

Access your body stats with the ultimate tool for precise tracking and optimizing progress.

+ +
+ +
+
+ + +
+
+ +
+
Live Leaderboard
+

Stay motivated with our dynamic live leaderboard, igniting your competitive spirit.

+
+ + +
+
+ +
+
+ +
+
Wellness Wisdom
+

Discover the secrets to a healthier you with bite-sized wellness wisdom.

+
+ +
+
+ +
+
+ +
+
GSF Community
+

Sweat together with the always enthusiastic and motivating GSF community.

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Start Your Journey To
a Healthier You

+
+
+
+ +
+
+
+ +
+
TRANSFORM & BEYOND
+
(Intermediate and advance)
+ +
+
+ +
+
+ +
+
+
+ +
+
TRANSFORM & BEYOND
+
(Beginners)
+ +
+
+ +
+
+ +
+
+
+ +
+
GSF EXCLUSIVE
+
(Personal Training)
+ +
+
+ +
+
+ +
+
+
+ +
+
GET SET EAT
+
(Personalised nutrition plan)
+ +
+
+
+
+ +
+

Start Your Journey To
a Healthier You

+
+
+
+ +
TRANSFORM & BEYOND
+
(Intermediate and advance)
+ +
+
+
+
+ +
TRANSFORM & BEYOND
+
(beginner)
+ +
+
+
+
+ +
GSF EXCLUSIVE
+
(Personal Training)
+ +
+
+
+
+ +
GET SET FIT
+
(Personalised nutrition plan)
+ +
+
+
+
+ + +
+
+

meet the community

+
+
+
+ +
+
+
+
+

+ GSF not only changes your perspective, priyank and the trainers constantly grill into you a love for fitness, of it being a way of life and not just something you do to ‘get thin’. +

+ Interior designer +
Ameet Mirpuri
+
+
+ +
+
+ +
+
+
+
+

+ i have lost 25 kgs. The experience of the coaches and the encouragement of the community makes GetSetFit an exceptional amazing experience. +

+ Cybersecurity officer +
Avanika Paridwal
+
+
+ +
+
+ +
+
+
+
+

+ Getsetfit is one such thing which I found very randomly. And randomly I found my fitness family. I always wanted to join a gym but the vibe, energy and music during the workouts is something I haven’t experienced ever before. Can’t wait to be a part of all future seasons. +

+ College student +
Himani patel
+
+
+ +
+
+ +
+
+
+
+

+ if you have the ability to love, love yourself first. This made me realised I should stay active and hence I joined GetSetFit. For me GSF stands for priyank. He brings so much energy and is always reachable to help solve any doubts. +

+ Full time mother +
Shwetha Arun
+
+
+ +
+
+ +
+
+
+
+

+ Priyank Mehta and GSF have not only improved my physical health but have also enriched the quality of my life in immeasurable ways. He has played the role of a friend, philosopher and guide in my life, always there to support me and watch my back. +

+ IT engineer working for an investment bank +
Yogesh Karira
+
+
+ +
+
+ +
+
+
+
+

+ For me Getsetfit has been a wholesome experience where fitness was not just any workout but meant a lot to stay accountable to your coach and most importantly the GSF community. All they need is your commitment to show up, rest you will witness how magically you start feeling healthier and fitter over a few months. +

+ Project Manager +
Sanchita Mandal
+
+
+ + + +
+
+
+ +
+

take you back in time

+
+ +
+
+
+
Pandemic on = Gyms off
+

(April 2020)

+

Pandemic began and so did our very first fitness session on Instagram Live. You know we actually + provided free sessions initially to create awareness for home workouts!

+
+
+ +
+
+ +
+ +
+
It's Official
+

(May 2020)

+

We had over a hundred fitness enthu cutlets already and decided to began the first official30 + days season of GetSetFit.

+
+
+ +
+
+ +
+ +
+
Virgins assemble
+

(October 2020)

+

Realised that not everyone is on the same page while working out and started our first Beginners + Batch for the workout virgins

+
+
+ +
+
+ +
+ +
+
I See You
+

(March 2021)

+

Switched from Instagram to Zoom so we could monitor and provide personal attention.No more + cheating in reps!

+
+
+ +
+
+ + +
+ +
+
It was getting bigger
+

(September 2021)

+

Moved to an organised platform for registration/ white branded web page. A stepping stone to + building our own website!

+
+
+ +
+
+ +
+ +
+
The one where we met
+

(October 2021)

+

Hosted the 1st ever meet and greet with the + community and met our online fam in real life.

+
+
+ +
+
+ +
+ +
+
Professional Behaviour
+

(June 2022)

+

Moved to our OWN virtual Studio with a proper office space! Conducted our + workouts, shot and planned our content here.

+
+
+ +
+
+ + + + + + + + + + + + + + +
+ +
+
Technical Twist
+

(December 2022)

+

Showed the first glimpse of our app to the community. Yes we are building a fitness app!

+
+
+ +
+
+ +
+ + +
+ + +
+ + +
+
+
+ +
+
+
*Pandemic on = Gyms off*
+

Pandemic began and so did our very first fitness session on Instagram Live. You know we actually + provided free sessions initially to create awareness for home workouts!

+
+ +
+ +
+
+ +
+
+
*It's Official*
+

We had over a hundred fitness enthu cutlets already and decided to began the first official30 + days season of GetSetFit.

+
+ +
+ +
+
+ +
+ +
+
*Virgins assemble*
+

Realised that not everyone is on the same page while working out and started our first Beginners + Batch for the workout virgins

+
+ +
+ +
+
+ +
+
+
*I See You*
+

Switched from Instagram to Zoom so we could monitor and provide personal attention.No more + cheating in reps!

+
+ +
+ +
+
+ +
+
+
*It was getting bigger*
+

Moved to an organised platform for registration/ white branded web page. A stepping stone to + building our own website!

+
+ +
+ +
+
+ +
+
+
*The one where we met*
+

Hosted the 1st ever meet and greet with the + community and met our online fam in real life.

+
+ +
+ +
+
+ +
+
+
*Professional Behaviour*
+

Moved to our OWN virtual Studio with a proper office space! Conducted our + workouts, shot and planned our content here.

+
+ +
+ +
+
+ +
+
+
*Artist Pro Max*
+

We designed and distributed our very own wellness journals so you could track your proud progress + in + a fun way!

+
+ +
+ +
+
+ +
+
+
*Technical Twist*
+

Showed the first glimpse of our app to the community. Yes we are building a fitness app!

+
+ +
+ +
+
+
+ +

meet the team

+ +
+ +
+
+
+ +
Priyank
+

Coach Cool

+
+
+

+ Good at heart but not while counting your reps. + Big cheater he is! +

+
+
+

Good at heart but not while counting your reps. + Big cheater he is!

+
+
+ +
+
+ +
Henal
+

Marketing Mamma

+
+
+

+ Marketer, Creative Director.. You Name It And She Is Doing It, even your newsletters and hampers! +

+
+
+

+ Marketer, Creative Director.. You Name It And She Is Doing It, even your newsletters and hampers! +

+
+
+
+
+ +
Mahima
+

nutritionist educationist

+
+
+

+ She will pest control your extra calories all the way with + her nutrition plans! +

+
+
+

She will pest control your extra calories all the way with + her nutrition plans!

+
+
+
+
+ +
Hemali
+

Sister Tester

+
+
+

+ She Is the one sailing the beginners boat with her Bollywood playlists! +

+
+ +
+

+ She Is the one sailing the beginners boat with her Bollywood playlists! +

+
+
+ + + + + + + + + + + + + + + + + + +
+
+ + + + + + + +@endsection \ No newline at end of file diff --git a/resources/views/website/pages/our_services.blade.php b/resources/views/website/pages/our_services.blade.php new file mode 100644 index 0000000..7266b5a --- /dev/null +++ b/resources/views/website/pages/our_services.blade.php @@ -0,0 +1,151 @@ +@extends('website.layouts.master') +@section('content') + + + + + + + + + +
+

SELECT YOUR PREFERRED
PROGRAM

+
+
+
+ +
+
+
+ +
+
TRANSFORM & BEYOND
+
(Intermediate and advance)
+ +
+
+ +
+
+ +
+
+
+ +
+
TRANSFORM & BEYOND
+
(Beginners)
+ +
+
+ +
+
+ +
+
+
+ +
+
GSF EXCLUSIVE
+
(Personal Training)
+ +
+
+ +
+
+ +
+
+
+ +
+
GET SET EAT
+
(Personalised nutrition plan)
+ +
+
+
+
+ +
+

SELECT YOUR PREFERRED
PROGRAM

+
+
+
+ +
TRANSFORM & BEYOND
+
(Intermediate and advance)
+ +
+
+
+
+ +
TRANSFORM & BEYOND
+
(beginner)
+ +
+
+
+
+ +
GSF EXCLUSIVE
+
(Personal Training)
+ +
+
+
+
+ +
GET SET FIT
+
(Personalised nutrition plan)
+ +
+
+
+
+ + + + +@endsection \ No newline at end of file diff --git a/resources/views/website/pages/privacy_policy.blade.php b/resources/views/website/pages/privacy_policy.blade.php new file mode 100644 index 0000000..c595a0f --- /dev/null +++ b/resources/views/website/pages/privacy_policy.blade.php @@ -0,0 +1,165 @@ +@extends('website.layouts.master') +@section('content') + + +
+
+ + +
+ +

"Privacy Policy"

+
+

+ This section applies to Personal Information we collect and process through the Services when you engage with us as a User of the Service. If you are not yet a User, Section 4 (applicable to visitors to our Websites) may be more applicable to you and your data. In this Section, "you" or "your' refer to Users. +

+ +
About Us
+

GSF is an online platform of GSF, LLC, a company headquartered in State of Mumbai in India (hereinafter “we,” “us,” “our,” and “GSF). It is designed to share the teachings and practices of Sattva Yoga by producing and making available videos, live streams, web-courses and other web content (hereinafter the "Services").

+ +
Key Terms
+

"Services" means the Website, software, products, applications, tools, services (including any applicable support services), and related resources made available by GSF or accessible via the Website (or other websites owned by Namaste Interactive, LLC. or its affiliates) and all material comprising the Website and Software.

+

“Software” means any software, documentation, or data related to the Services.

+

"User" means any individual who has registered to use and access the Services under the Customer account and who directly builds, sends, collaborates on and/or reviews emails or forms through the Services.

+

"Website" means any website we own and operate (such as www.GSF.com and any sub-domains).

+ + +
The Basics
+

This section applies to Personal Information we collect and process through the Services when you engage with us as a User of the Service. If you are not yet a User, Section 4 (applicable to visitors to our Websites) may be more applicable to you and your data. In this Section, "you" or "your' refer to Users.

+ +
GSF Users
+
    +
  1. Information We Process.
  2. +

    Information you provide to us. You may provide Personal Information to us through the Services – for example, when you sign up for a GSF account to access the Services, consult with our customer success or support teams, send us an email or communicate with us in any other way. We will usually let you know prior to collection whether the provision of Personal Information we are collecting is compulsory or may be provided on a voluntary basis and the consequences, if any, of not providing the information. The information you provide to us, includes:

    +
      +
    • Registration Information. You need a GSF account to use the Services as a User. When you register for an account, we ask you to provide contact information such as your name, telephone number, date of birth and personal address.
    • +
    • Billing Information. If you purchase our Services, you may also need to provide us with payment and billing information such as your credit card details and billing address. We will also maintain a record of your purchases, transactional information, your Services history and usage, and any communications and responses.
    • +
    • Information Collected Automatically. When you use the Services, we automatically collect certain information about your device and use of the Services. We may use cookies and other tracking technologies to collect some of this information. Our use of cookies and other tracking technologies is discussed more below, in more detail below and in our Cookie Notice here.
    • +
    • Device Information. We collect information from your device and applications you use to access our Services, such as your IP address, device attributes (for example: hardware model, operating system, web browser version, as well as unique device identifiers and characteristics), connection information (for example, name of your mobile operator or Internet Service Provider, browser type, language and time zone, and mobile phone number); and device locations (for example, internet protocol (IP) addresses and Wi-Fi information).
    • +
    • Log Data. Our web servers keep log files that record data each time a device accesses those servers and those log files contain data about the nature of each access, including originating IP addresses. We may also access metadata and other information associated with files that you upload into our Services, such as images.
    • +
    • Information Relating to Your Use of the Services. We collect usage data about whenever you interact with our Services, which may include the dates and times you access the Services, page views, which activities and features are used of our Services, crash logs, customer storage configuration settings, and technical data relating to devices accessing and using the Services and the performance of the Services in doing so.
    • +
    • Information We Obtain From Third Party Sources. We may receive information about you from other sources, including publicly available databases or third parties from whom we have purchased data, and combine this data with information we already have about you. This helps us to update, expand and analyze our records and provide Services that may be of interest to you. Examples of the types of Personal Information that may be obtained from public sources or purchased from third parties and combined with information we already have about you, may include name, employer, job title, email address, phone numbers, and other company, contact, and/or employment information.
    • +
    + +
  3. Why We Process Your Information.
  4. +

    We process your Personal Information for our legitimate interests, which include:

    +
      +
    • To Provide the Services. We process your Personal Information to provide the Services as follows: i) to identify who you are, including both for identification and authentication purposes; ii) to enable you to login and access your account; iii) to respond to your inquiries; iv) to provide you with customer support; v) to send you information as part of the Services; and vi) to provide you with information about your account, including renewals and changes in Services or your account status.
    • +
    • To Market To You. To contact you with marketing and promotional information (in accordance with your marketing preferences) about products and services that we or our Affiliates offer, to provide advertising to you on third party sites (based on your browsing activities on the Website), and to send you information regarding us, our Affiliates, and/or our partners (see the section headed "Your Data Protection Rights" for information about how you can opt-out of receiving marketing communications from us at any time). Marketing data purchased from third parties may be combined with information we already have about you and may be used to create more tailored advertising and products.
    • +
    • To Customize Services to You. To help us deliver a better and more personalized experience (for example, it enables us to tailor our Services according to your interests); and to build a profile about you so as to help direct you to other relevant features and Services we offer and help you in using our Services, by making recommendations for you to optimize use of our Services.
    • +
    • To Improve Our Services. To create new Services, features, content or make recommendations; improve our Services for you and all Users; and to fix bugs and troubleshoot product functionality.
    • +
    • For Business Analytics. To infer your geographic location based on your IP address; to track behavior at the aggregate/anonymous level to identify and understand trends in the various interactions with our Services; and to conduct internal business analysis based on meta-data about usage, feature adoption and forecasting.
    • +
    • To Prevent Abuse/Illegal Activities. To screen for and prevent undesirable or abusive activity. For example, we have automated systems that screen content for phishing activities, spam, and fraud.
    • +
    • For Legal Records. To identify who you are, including both identification and authentication purposes; to carry out our obligations and enforce our rights arising from any contracts entered into between you and us (including for billing and collection); and to respond to legal requests or prevent fraud. If we receive a subpoena or other legal request, we may need to inspect the data we hold to determine how to respond.
    • +
    +
  5. How We Share Your Information.
  6. +

    In the following limited situations, we may disclose information that we collect or that you provide to us:

    +
      +
    • To Our Contractors, Service Providers and Other Third Parties who provide data processing services to us and with whom the sharing of your Personal Information is necessary to undertake the work e.g. to process billing, to analyze data, host data, to provide customer support and to deliver online and offline marketing communications about us and/or our Affiliates that we think will interest you.
    • +
    • As Required by Law, such as to comply with any court order, subpoena or other law or legal process, when we believe in good faith that disclosure is necessary to protect our rights, protect your safety or the safety of others, investigate fraud, or respond to a governmental or regulatory request.
    • +
    • To Enforce Our Rights arising from any contracts entered into between you and us and for billing and collection.
    • +
    • To Affiliates of Our Corporate Group for customer support, marketing, technical operations, and account management purposes.
    • +
    • To a Buyer or Other Successor in the event of a merger, sale or transfer of some or all of GSF's assets.
    • +
    + +
  7. Cookies And Tracking Technologies.
  8. +

    We (including our partners and vendors) use various technologies to collect and store information when you use the Services, and this may include using cookies and similar tracking technologies, such as pixels and web beacons. For example, cookies allow us to collect information such as your IP address, browser, email client type and other similar details. We use this information to measure the performance of our application and to provide analytics information and enhance the effectiveness of our Services. We use page tags (also known as web beacons) in the emails we send to our Users. When you receive and engage with marketing messages we send to you, web beacons track certain behavior such as whether the email sent through the Services was delivered and opened. Links within these emails are tracked to show individual recipient’s clicks.

    + +
  9. Data Retention.
  10. +

    We retain Personal Information we collect from you where we have an ongoing legitimate business need to do so (for example, to provide you with a Service you have requested or to comply with applicable legal, tax or accounting requirements).

    +

    When we have no ongoing legitimate business need to process your Personal Information, we will either delete or anonymize Personal Information. If this is not possible (for example, because your Personal Information has been stored in backup archives), then we will securely store your Personal Information and isolate it from any further processing until deletion is possible.

    +

    We will retain information we process on behalf of our Customers for as long as needed to provide Services to our Customers (unless deletion is requested at an earlier time by the Customer) and as necessary to comply with our legal obligations, resolve disputes and enforce our agreements. We reserve the right to delete Customer’s, its Users’, and its Contacts’ information at the termination of Customer’s contract with us (unless such deletion is prohibited by applicable laws).

    +
+ + +
GSF Website Visitors
+

This Section applies to Personal Information that we collect and process through our Websites (for example when you visit our website) and in the usual course of our business, such as in connection with our events, trainings or other activities.

+ +
    +
  1. Information We Process.
  2. +

    Information You Provide To Us. Certain parts of our Websites may ask you to voluntarily provide Personal Information (such as your name and contact details). For example, when registering for an account, expressing an interest in obtaining additional information about GSF or our Services, subscribing to marketing, or otherwise contacting us. We may also collect Personal Information, such as your contact details and feedback, when you attend our events, take part in surveys, or through other business or marketing interactions we may have with you. You may choose to provide additional information when you communicate with us or otherwise interact with us, and we will keep copies of any such communications for our records.

    +

    Information Collected Automatically. When you visit our Websites, like most website owners, we may also collect certain information automatically from your device, such as your device type, browser type, broad geographic location (e.g. country or city-level location), the referring website, what pages your device visited, and the time that your device visited our Website. In some countries, including countries in the European Economic Area, this information may be considered Personal Information under applicable data protection laws. We (including our service providers) may use cookies, pixel tags and other similar tracking technologies to collect this information.

    +

    Information We Obtain From Third Party Sources. We may receive Personal Information about you from other sources, including publicly available databases or third parties from whom we have purchased data, and combine this data with information we already have about you. This helps us to update, expand and analyze our records, identify new customers, and provide Services that may be of interest to you. Examples of the types of Personal Information that may be obtained from public sources or purchased from third parties and combined with information we already have about you, may include name, employer, job title, email address, phone numbers, and other company, contact, and/or employment information.

    + +
  3. Why We Process Your Information.
  4. +

    To Provide You With Information You Have Requested. To respond to your requests or provide you with information requested by you, including where you apply for a job at GSF or request information about our products or Services.

    + +
      +
    • To Market To You. To contact you with marketing and promotional information (in accordance with your marketing preferences) about products and services that we or our Affiliates offer, and to send you information regarding us, our Affiliates, and/or our partners (see the section headed "Your Data Protection Rights" for information about how you can opt-out of receiving marketing communications from us at any time). Marketing data purchased from third parties may be combined with information we already have about you and may be used to create more tailored advertising and products.
    • +
    • For Business Analytics. To infer your geographic location based on your IP address; to track behavior at the aggregate/anonymous level to identify and understand trends in usage and the various interactions with our Websites and marketing content; determining the effectiveness of our marketing; and to conduct internal business analysis based on meta-data about usage, feature adoption and forecasting to improve our Websites and Services.
    • +
    • For Website Optimization. To administer our Website and for internal operations, including troubleshooting, data analysis, testing, research, and statistical purposes; to understand how our Website is used and to improve our Website to ensure that content is presented in the most effective manner for you and your computer; and as a part of our efforts to keep our Website safe and secure.
    • +
    • For Legal Records. To comply with and enforce applicable legal requirements, agreements and policies.
    • +
    + +
  5. How We Share Your Information.
  6. +

    In the following limited situations, we may disclose information that we collect or that you provide to us:

    +
      +
    • To Our Contractors, Service Providers and Other Third Parties who provide data processing services to us and with whom the sharing of your Personal Information is necessary to undertake the work e.g. to process billing, analyze data, host data, provide customer support, and to deliver online and offline marketing communications about us and/or our Affiliates that we think will interest you.
    • +
    • As Required by Law, such as to comply with any court order, subpoena or other law or legal process, when we believe in good faith that disclosure is necessary to protect our rights, protect your safety or the safety of others, investigate fraud, or respond to a governmental or regulatory request.
    • +
    • To Enforce Our Rights arising from any contracts entered into between you and us and for billing and collection.
    • +
    • To Affiliates of Our Corporate Group for customer support, marketing, technical operations, and account management purposes.
    • +
    • To a Buyer or Other Successor in the event of a merger, sale or transfer of some or all of GSF's assets.
    • +
    + +
  7. Cookies And Tracking Technologies.
  8. +

    We (including our partners and vendors) use cookies and similar tracking technology (collectively "Cookies") on our Websites to collect and use Personal Information about you: (i) to ensure we are complying with our legal obligations (for example, we use cookies to infer your location and if, for example, you are in the EEA, we can ensure that we are compliant with regulations in the EEA); (ii) to serve targeted advertising to you, (iii) to analyze trends, administer the Website, track users' movements around the Website, and (iv) to gather demographic information about our user base as a whole. In addition, certain third parties, such as analytics companies, may use automatic information collection technologies to collect information about you when you use our Services. The information they collect may be associated with your Personal Information or they may collect information about your online activities over time and across different websites, apps and other online services websites.

    + + + +
  9. Data Retention.
  10. +

    We retain Personal Information we collect from you where we have an ongoing legitimate business need to do so (for example, to provide you with information you have requested or to comply with applicable legal, tax or accounting requirements).

    +

    When we have no ongoing legitimate business need to process your Personal Information, we will either delete or anonymize it or, if this is not possible (for example, because your Personal Information has been stored in backup archives), then we will securely store your Personal Information and isolate it from any further processing until deletion is possible.

    + + + + + +
+ + +
General Information
+
    +
  1. Third-Party Websites And Apps.
  2. +

    This Notice only applies to the GSF Website and Services. We are not responsible for the privacy practices or disclosures of third parties that use or access the GSF Website or Services. In addition, the Website or Service may contain links to third-party websites and apps. Any access to and use of such linked websites or apps is not governed by this Notice, but instead is governed by the privacy policies of those third parties. We are not responsible for the information practices of such third parties.

    + +
  3. How Do We Keep Your Personal Information Secure?
  4. +

    We use appropriate technical and organizational security measures to protect any Personal Information we process against unauthorized access, disclosure, alteration, and destruction.

    +

    We use appropriate technical and organizational security measures to protect any Personal Information we process against unauthorized access, disclosure, alteration, and destruction.

    + + +
  5. International Data Transfers.
  6. +

    The Website and the Services are provided, supported, and hosted in the India. If you are using the Website or Services from outside the India, be aware that your information may be transferred to, stored, and processed by us in our facilities and by those third parties with whom we may share your Personal Information, in the India and other countries. These countries may have data protection laws that are different to the laws of your country.

    +

    However, we have taken appropriate measures to require that your Personal Information will remain protected in accordance with this Notice and have implemented appropriate safeguards with our third party service providers and partners. Further details can be provided upon request.

    + + +
  7. Changes To This Privacy Notice.
  8. +

    We may revise this Notice from time to time in response to changing legal, technical or business developments. The most current version of this Notice will govern our use of your Personal Information. If we make any material changes to this Notice, we will post the updated version here and notify applicable individuals by email or by means of a prominent notice on our Website. You can see when this Notice was last updated by checking the “last updated” date displayed at the top of this Notice. We will seek your consent to any material changes to this Notice if and where required by applicable law.

    + +
  9. Contact Us.
  10. +

    Thank you for reading our privacy notice. If you have any questions, comments or concerns, please contact us.

    + + + + +
+ + + + +
+
+ + +@endsection \ No newline at end of file diff --git a/resources/views/website/pages/privacy_policy.php b/resources/views/website/pages/privacy_policy.php new file mode 100644 index 0000000..7e674a1 --- /dev/null +++ b/resources/views/website/pages/privacy_policy.php @@ -0,0 +1,12603 @@ + + + + + + + Document + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + PRIVACY POLICY + + + + +
+
+
+
+
+ + + + + Last updated + August 04, 2023 + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + + This privacy notice for + + Fitorbit Wellness Private Limited + + (doing business as + GETSETFIT + ) + + + ( + + ' + + + GETSETFIT + + + ', ' + we', ' + us', or ' + our' + + + + ), describes how and why we might collect, store, use, and/or share ( + + ' + process' + + ) your information when you use our services ( + + ' + Services' + + ), such as when you: + + + + + + + + + + + + + + +
+
    +
  • + + + + Visit our website + + at + + http://www.getsetfit.co + + + + + + + , or any website of ours that + links to this privacy notice + + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + +
+
    +
  • + + + + Download and use + + our mobile application + + ( + + GETSETFIT) + + + + + + + + + , + + + + + + + + + + + + + + + + + + or any other application of ours that + links to this privacy notice + + + + + + + + + +
  • +
+
+ + + + + + + + + + + +
+
    +
  • + + + + Engage with us in other related ways, including any sales, marketing, or events + + + + + + + + + + + + + + +
  • +
+
+ + + + Questions or concerns?Reading this privacy notice will help you understand your + privacy rights and choices. If you do not agree with our policies and practices, please do not + use our Services. If you still have any questions or concerns, please contact us at + support@getsetfit.co + . + + + +
+
+
+
+
+
+
+
+ + + SUMMARY OF KEY POINTS + + +
+
+
+
+
+ + + + This summary provides key points from our privacy notice, but you can find out more details + about any of these topics by clicking the link following each key point or by using our + + + + + + + + table of contents + + + + + + + + below to find the section you are looking for. + + + +
+
+
+
+
+ + + What personal information do we process? When you visit, use, or navigate our + Services, we may process personal information depending on how you interact with + + GETSETFIT + + and the Services, the choices you make, and the products and features you use. Learn more about + + + + + personal information you disclose to us + + + . +
+
+
+
+
+ + + Do we process any sensitive personal information? + + We do not process sensitive personal information. + + + +
+
+
+
+
+ + + Do we receive any information from third parties? + + We do not receive any information from third parties. + + + +
+
+
+
+
+ + + How do we process your information? We process your information to provide, + improve, and administer our Services, communicate with you, for security and fraud prevention, and + to comply with law. We may also process your information for other purposes with your consent. We + process your information only when we have a valid legal reason to do so. Learn more about + + + + + how we process your information + + + . +
+
+
+
+
+ + + + In what situations and with which + + parties do we share personal information? + + We may share information in specific situations and with specific + + third parties. Learn more about + + + + + when and with whom we share your personal information + + + + + . + + + +
+
+
+
+
+ + + How do we keep your information safe? We have + + organisational + + and technical processes and procedures in place to protect your personal information. However, no + electronic transmission over the internet or information storage technology can be guaranteed to be + 100% secure, so we cannot promise or guarantee that hackers, cybercriminals, or other + + unauthorised + + third parties will not be able to defeat our security and improperly collect, access, steal, or + modify your information. Learn more about + + + + + how we keep your information safe + + + . + + + + + +
+
+
+
+
+ + + What are your rights? Depending on where you are located geographically, the + applicable privacy law may mean you have certain rights regarding your personal information. Learn + more about + + + + + your privacy rights + + + . +
+
+
+
+
+ + + How do you exercise your rights? The easiest way to exercise your rights is by + submitting a + + + + + data subject access request + + + + + + , or by contacting us. We will consider and act upon any request in accordance with applicable data + protection laws. + + +
+
+
+
+
+ + + Want to learn more about what + + GETSETFIT + + does with any information we collect? + + + + + Review the privacy notice in full + + + + . + +
+
+
+
+
+
+
+
+ + + + + TABLE OF CONTENTS + + + + +
+
+
+
+ + + + +
+ + + 5. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES? + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+
+
+
+
+
+
+ + + + + + + 1. WHAT INFORMATION DO WE COLLECT? + + + + + + +
+
+
+
+
+ + + Personal information you disclose to us + + +
+
+
+
+
+
+ + + + + + + + In Short: + + + + + + + + + + + + + We collect personal information that you provide to us. + + + + + + +
+
+
+
+
+
+ + + + We collect personal information that you voluntarily provide to us when you + + + + register on the Services, + + + + + + + + express an interest in obtaining information about us or our + products and Services, when you participate in activities on the Services, or otherwise when + you contact us. + + + +
+
+
+
+
+ + + + + + + + + +
+
+ + + + Personal Information Provided by You. The personal information that we collect + depends on the context of your interactions with us and the Services, the choices you make, and + the products and features you use. The personal information we collect may include the + following: + + + + + + + + +
+
    +
  • + + + + + + names + + + + + +
  • +
+
+ + + + + + + + + + + +
+
    +
  • + + + + + + phone numbers + + + + + +
  • +
+
+ + + + + + + + + + + +
+
    +
  • + + + + + + email addresses + + + + + +
  • +
+
+ + + + + + + + + + + +
+
    +
  • + + + + + + mailing addresses + + + + + +
  • +
+
+ + + + + + + + + + + +
+
    +
  • + + + + + + usernames + + + + + +
  • +
+
+ + + + + + + + + + + +
+
    +
  • + + + + + + job titles + + + + + +
  • +
+
+ + + + + + + + + + + +
+
    +
  • + + + + + + passwords + + + + + +
  • +
+
+ + + + + + + + + + + +
+
    +
  • + + + + + + contact preferences + + + + + +
  • +
+
+ + + + + + + + + + + +
+
    +
  • + + + + + + contact or authentication data + + + + + +
  • +
+
+ + + + + + + + + + + +
+
    +
  • + + + + + + billing addresses + + + + + +
  • +
+
+ + + + + + + + + + + + + + +
+
+ + + Sensitive Information. + + We do not process sensitive information. + + +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + +
+
+ + + Application Data. If you use our application(s), we also may collect the following + information if you choose to provide us with access or permission: + + + +
+
    +
  • + + + Geolocation Information. We may request access or permission to track location-based + information from your mobile device, either continuously or while you are using our mobile + application(s), to provide certain location-based services. If you wish to change our access or + permissions, you may do so in your device's settings. + + + +
  • +
+
+ + + + + +
+
    +
  • + + + Mobile Device Access. We may request access or permission to certain features from your + mobile device, including your mobile device's + + bluetooth, + + calendar, + + camera, + + contacts, + + reminders, + and other features. If you wish to change our access or + permissions, you may do so in your device's settings. + + + +
  • +
+
+ + + + + + + + +
+ + + + + +
+
    +
  • + + + Push Notifications. We may request to send you push notifications regarding your + account or certain features of the application(s). If you wish to opt out from receiving + these types of communications, you may turn them off in your device's settings. + + + +
  • +
+
+ + This information is primarily needed to maintain the security + and operation of our application(s), for troubleshooting, and for our internal analytics and + reporting purposes. + +
+
+
+
+
+ + + + + +
+
+ + + All personal information that you provide to us must be + true, complete, and accurate, and you must notify us of any changes to such personal + information. + + +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + 2. HOW DO WE PROCESS YOUR + INFORMATION? + + + + + + +
+
+
+
+
+
+ + + + + + + + In Short: + + We process your information to provide, improve, and administer our + Services, communicate with you, for security and fraud prevention, and + to comply with law. We may also process your information for other + purposes with your consent. + + + + + + +
+
+
+
+
+
+ + + + We process your personal information for a variety of reasons, depending on how you + interact with our Services, including: + + + + +
+
    +
  • + + + + To facilitate account creation and authentication and otherwise manage user + accounts.We may process your information so you can create and log in to + your account, as well as keep your account in working order. + + + + + + + + + + + + + + + + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ + + + + + + +

+ + + + + + + + + + + + + + + + +

+ + + + + + + + + + + + + + + + +

+ + + + + + + + + + + + + + +

+ + + + + + + + + + + + + + +

+ + + + + + + +
+ + + + + + + + +
+ + + + + + + + +
+ + + + + + + + +
+ + + + + + + + +
+ + + + + + + +
+ + + + + + + +
+ + + + + + + +
+ + + + + + + +
+ + + + + + + +
+ + + + + + + +
+ + + + + + + + +
+ + + + + + + + +
+ + + + + + + + +
+ + + + + +
+
    +
  • + + + To + save + or + protect + an + individual's + vital + interest. + We + may + process + your + information + when + necessary + to + save + or + protect + an + individual’s + vital + interest, + such + as + to + prevent + harm. + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + 3. + WHAT + LEGAL + BASES + DO + WE + RELY + ON + TO + PROCESS + YOUR + INFORMATION? + + +
+
+
+
+
+ + + + In + Short:We + only + process + your + personal + information + when + we + believe + it + is + necessary + and + we + have + a + valid + legal + reason + (i.e. + + + legal + basis) + to + do + so + under + applicable + law, + like + with + your + consent, + to + comply + with + laws, + to + provide + you + with + services + to + enter + into + or + + + fulfil + + + our + contractual + obligations, + to + protect + your + rights, + or + to + + + fulfil + + + our + legitimate + business + interests. + + + + + + + + + + + + + +
+
+
+
+
+ + + + + If + you + are + located + in + the + EU + or + UK, + this + section + applies + to + you. + + + + + + + + + + +
+
+
+
+
+ + The + General + Data + Protection + Regulation + (GDPR) + and UK + GDPR + require + us to + explain + the + valid + legal + bases we + rely on + in order + to + process + your + personal + information. + As such, + we may + rely on + the + following + legal + bases to + process + your + personal + information: + +
+
    +
  • + + + Consent.We + may + process + your + information + if + you + have + given + us + permission + (i.e. + + + consent) + to + use + your + personal + information + for + a + specific + purpose. + You + can + withdraw + your + consent + at + any + time. + Learn + more + about + + + + + withdrawing + your + consent + + + . +
  • +
+
+ + + + + + + +
+ + + + + + + + + + +
+
    +
  • + + + Legal + Obligations. + We + may + process + your + information + where + we + believe + it + is + necessary + for + compliance + with + our + legal + obligations, + such + as + to + cooperate + with + a + law + enforcement + body + or + regulatory + agency, + exercise + or + defend + our + legal + rights, + or + disclose + your + information + as + evidence + in + litigation + in + which + we + are + involved. + + +
    +
    +
    +
  • +
+
+ + + + + +
+
    +
  • + + + Vital + Interests. + We + may + process + your + information + where + we + believe + it + is + necessary + to + protect + your + vital + interests + or + the + vital + interests + of + a + third + party, + such + as + situations + involving + potential + threats + to + the + safety + of + any + person. + + + + + + + +
  • +
+
+ + + + + + + + + + + + + +
+
+
+
+
+ + + + + If + you + are + located + in + Canada, + this + section + applies + to + you. + + + + + + +
+
+
+
+
+ + + We + may + process + your + information + if + you + have + given + us + specific + permission + (i.e. + + + express + consent) + to + use + your + personal + information + for + a + specific + purpose, + or + in + situations + where + your + permission + can + be + inferred + (i.e. + + + implied + consent). + You + can + + + + + withdraw + your + consent + + + + + at + any + time. + +
+
+
+
+
+ + In + some + exceptional + cases, + we + may + be + legally + permitted + under + applicable + law + to + process + your + information + without + your + consent, + including, + for + example: + +
+
    +
  • + + If + collection + is + clearly + in + the + interests + of + an + individual + and + consent + cannot + be + obtained + in + a + timely + way + +
  • +
+
+ + + + + + +
+
    +
  • + + + For + investigations + and + fraud + detection + and + prevention + + + + +
  • +
+
+ + + + + +
+
    +
  • + + For + business + transactions + provided + certain + conditions + are + met + + + + + + +
  • +
+
+ + + + + +
+
    +
  • + + If + it + is + contained + in + a + witness + statement + and + the + collection + is + necessary + to + assess, + process, + or + settle + an + insurance + claim + + + + + + +
  • +
+
+ + + + + +
+
    +
  • + + For + identifying + injured, + ill, + or + deceased + persons + and + communicating + with + next + of + kin + + + + + + +
  • +
+
+ + + + + + +
+
    +
  • + + + If + we + have + reasonable + grounds + to + believe + an + individual + has + been, + is, + or + may + be + victim + of + financial + abuse + + + + +
  • +
+
+ + + + + + +
+
    +
  • + + + If + it + is + reasonable + to + expect + collection + and + use + with + consent + would + compromise + the + availability + or + the + accuracy + of + the + information + and + the + collection + is + reasonable + for + purposes + related + to + investigating + a + breach + of + an + agreement + or + a + contravention + of + the + laws + of + Canada + or + a + province + + + + +
  • +
+
+ + + + + + +
+
    +
  • + + + If + disclosure + is + required + to + comply + with + a + subpoena, + warrant, + court + order, + or + rules + of + the + court + relating + to + the + production + of + records + + + + +
  • +
+
+ + + + + +
+
    +
  • + + + If + it + was + produced + by + an + individual + in + the + course + of + their + employment, + business, + or + profession + and + the + collection + is + consistent + with + the + purposes + for + which + the + information + was + produced + + + + +
  • +
+
+ + + + + + +
+
    +
  • + + + If + the + collection + is + solely + for + journalistic, + artistic, + or + literary + purposes + + + + +
  • +
+
+ + + + + + +
+
    +
  • + + If + the + information + is + publicly + available + and + is + specified + by + the + regulations + + + + +
  • +
+
+ + + + + + + + + + +
+
+
+
+
+ + + + + + + 4. + WHEN + AND + WITH + WHOM + DO + WE + SHARE + YOUR + PERSONAL + INFORMATION? + + + + + + +
+
+
+
+
+ + + + + In + Short: + + + We + may + share + information + in + specific + situations + described + in + this + section + and/or + with + the + following + + + third + parties. + + + + +
+
+ + + + + +
+
+
+
+
+ + We + + + may + need + to + share + your + personal + information + in + the + following + situations: + + +
+
    +
  • + + + Business + Transfers. + We + may + share + or + transfer + your + information + in + connection + with, + or + during + negotiations + of, + any + merger, + sale + of + company + assets, + financing, + or + acquisition + of + all + or + a + portion + of + our + business + to + another + company. + + +
  • +
+
+ + + + + + + + +
+ + + + + + + +
+ + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + + + + + 5. + DO + WE + USE + COOKIES + AND + OTHER + TRACKING + TECHNOLOGIES? + + + + + + +
+
+
+
+
+ + + + + In + Short: + + We + may + use + cookies + and + other + tracking + technologies + to + collect + and + store + your + information. + + + +
+
+
+
+
+ + + We + may + use + cookies + and + similar + tracking + technologies + (like + web + beacons + and + pixels) + to + access + or + store + information. + Specific + information + about + how + we + use + such + technologies + and + how + you + can + refuse + certain + cookies + is + set + out + in + our + Cookie + Notice + + + + + . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + + + + + 6. + IS + YOUR + INFORMATION + TRANSFERRED + INTERNATIONALLY? + + + + + + +
+
+
+
+
+ + + + + In + Short: + + We + may + transfer, + store, + and + process + your + information + in + countries + other + than + your + own. + + + +
+
+
+
+
+ + + Our + servers + are + located + in + + + + + + + + + + + + + + + + + India + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + . + If + you + are + accessing + our + Services + from + outside + + + + + + + + + + + + + + + + + + India + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + , + please + be + aware + that + your + information + may + be + transferred + to, + stored, + and + processed + by + us + in + our + facilities + and + by + those + third + parties + with + whom + we + may + share + your + personal + information + (see + + + ' + + + + + + + + WHEN + AND + WITH + WHOM + DO + WE + SHARE + YOUR + PERSONAL + INFORMATION? + + + + + + + + ' + + + above), + in + + + + + + + + + + + + + + + + + + + + + + + + + + + + + India, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + and + other + countries. + + + + + +
+
+
+
+
+ + + If + you + are + a + resident + in + the + European + Economic + Area + (EEA) + or + United + Kingdom + (UK), + then + these + countries + may + not + necessarily + have + data + protection + laws + or + other + similar + laws + as + comprehensive + as + those + in + your + country. + However, + we + will + take + all + necessary + measures + to + protect + your + personal + information + in + accordance + with + this + privacy + notice + and + applicable + law. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + + + + + 7. + HOW + LONG + DO + WE + KEEP + YOUR + INFORMATION? + + + + + + +
+
+
+
+
+ + + + + In + Short: + + We + keep + your + information + for + as + long + as + necessary + to + + + fulfil + + + the + purposes + outlined + in + this + privacy + notice + unless + otherwise + required + by + law. + + + + +
+
+
+
+
+ + + We + will + only + keep + your + personal + information + for + as + long + as + it + is + necessary + for + the + purposes + set + out + in + this + privacy + notice, + unless + a + longer + retention + period + is + required + or + permitted + by + law + (such + as + tax, + accounting, + or + other + legal + requirements). + + + No + purpose + in + this + notice + will + require + us + keeping + your + personal + information + for + longer + than + + + + + + + + + + + the + period + of + time + in + which + users + have + an + account + with + us + + + + + + + + + + . + + + +
+
+
+
+
+ + + When + we + have + no + ongoing + legitimate + business + need + to + process + your + personal + information, + we + will + either + delete + or + + + anonymise + + + such + information, + or, + if + this + is + not + possible + (for + example, + because + your + personal + information + has + been + stored + in + backup + archives), + then + we + will + securely + store + your + personal + information + and + isolate + it + from + any + further + processing + until + deletion + is + possible. + + + + + + + +
+
+
+
+
+ + + + + + + 8. + HOW + DO + WE + KEEP + YOUR + INFORMATION + SAFE? + + + + + + +
+
+
+
+
+ + + + + In + Short: + + We + aim + to + protect + your + personal + information + through + a + system + of + + + organisational + + + and + technical + security + measures. + + + + +
+
+
+
+
+ + + We + have + implemented + appropriate + and + reasonable + technical + and + + + organisational + + + security + measures + designed + to + protect + the + security + of + any + personal + information + we + process. + However, + despite + our + safeguards + and + efforts + to + secure + your + information, + no + electronic + transmission + over + the + Internet + or + information + storage + technology + can + be + guaranteed + to + be + 100% + secure, + so + we + cannot + promise + or + guarantee + that + hackers, + cybercriminals, + or + other + + + unauthorised + + + third + parties + will + not + be + able + to + defeat + our + security + and + improperly + collect, + access, + steal, + or + modify + your + information. + Although + we + will + do + our + best + to + protect + your + personal + information, + transmission + of + personal + information + to + and + from + our + Services + is + at + your + own + risk. + You + should + only + access + the + Services + within + a + secure + environment. + + + + + + + + + + + + + +
+
+
+
+
+ + + + + + + 9. + DO + WE + COLLECT + INFORMATION + FROM + MINORS? + + + + + + +
+
+
+
+
+ + + + + In + Short: + + We + do + not + knowingly + collect + data + from + or + market + to + + + children + under + 18 + years + of + age + + + . + + + + + + +
+
+
+
+
+ + + We + do + not + knowingly + solicit + data + from + or + market + to + children + under + 18 + years + of + age. + By + using + the + Services, + you + represent + that + you + are + at + least + 18 + or + that + you + are + the + parent + or + guardian + of + such + a + minor + and + consent + to + such + minor + dependent’s + use + of + the + Services. + If + we + learn + that + personal + information + from + users + less + than + 18 + years + of + age + has + been + collected, + we + will + deactivate + the + account + and + take + reasonable + measures + to + promptly + delete + such + data + from + our + records. + If + you + become + aware + of + any + data + we + may + have + collected + from + children + under + age + 18, + please + contact + us + at + + + + + + support@getsetfit.co + + + + + . + + + + + + + + + + + +
+
+
+
+
+ + + + + + + 10. + WHAT + ARE + YOUR + PRIVACY + RIGHTS? + + + + + + +
+
+
+
+
+ + + + + In + Short: + + + + + + + + + + + + In + some + regions, + such + as + + + the + European + Economic + Area + (EEA), + United + Kingdom + (UK), + and + Canada + + + , + you + have + rights + that + allow + you + greater + access + to + and + control + over + your + personal + information. + + + + + + + + + + You + may + review, + change, + or + terminate + your + account + at + any + time. + + + + + + + + + + +
+
+
+
+
+ + + In + some + regions + (like + + + the + EEA, + UK, + and + Canada + + + ), + you + have + certain + rights + under + applicable + data + protection + laws. + These + may + include + the + right + (i) + to + request + access + and + obtain + a + copy + of + your + personal + information, + (ii) + to + request + rectification + or + erasure; + (iii) + to + restrict + the + processing + of + your + personal + information; + and + (iv) + if + applicable, + to + data + portability. + In + certain + circumstances, + you + may + also + have + the + right + to + object + to + the + processing + of + your + personal + information. + You + can + make + such + a + request + by + contacting + us + by + using + the + contact + details + provided + in + the + section + + + ' + + + + + + + + + HOW + CAN + YOU + CONTACT + US + ABOUT + THIS + NOTICE? + + + + + + + + + ' + + + below. + + + +
+
+
+
+
+ + + We + will + consider + and + act + upon + any + request + in + accordance + with + applicable + data + protection + laws. + + + + + + + + + + + + + + + + +
+
+ +
+
+ + + If + you + are + located + in + the + EEA + or + UK + and + you + believe + we + are + unlawfully + processing + your + personal + information, + you + also + have + the + right + to + complain + to + your + + + + + + + Member + State + data + protection + authority + + + + + + + or + + + + + + + UK + data + protection + authority + + + + + + + . + + +
+
+
+
+
+ + + If + you + are + located + in + Switzerland, + you + may + contact + the + + + + + + + Federal + Data + Protection + and + Information + Commissioner + + + + + + . + + + +
+
+
+
+
+ + + + + Withdrawing + your + consent: + + If + we + are + relying + on + your + consent + to + process + your + personal + information, + + + which + may + be + express + and/or + implied + consent + depending + on + the + applicable + law, + + + you + have + the + right + to + withdraw + your + consent + at + any + time. + You + can + withdraw + your + consent + at + any + time + by + contacting + us + by + using + the + contact + details + provided + in + the + section + + + ' + + + + + + + + + HOW + CAN + YOU + CONTACT + US + ABOUT + THIS + NOTICE? + + + + + + + + + ' + + + below + + + or + updating + your + preferences + + + . + + + +
+
+
+
+
+ + However, + please + note + that + this + will + not + affect + the + lawfulness + of + the + processing + before + its + withdrawal + nor, + + + when + applicable + law + allows, + + + will + it + affect + the + processing + of + your + personal + information + conducted + in + reliance + on + lawful + processing + grounds + other + than + consent. + + + + + + + + + +
+
+
+
+
+ + + Account + Information + + +
+
+
+
+
+ + If + you + would + at + any + time + like + to + review + or + change + the + information + in + your + account + or + terminate + your + account, + you + can: + + + + +
+
    +
  • + + + + Log + in + to + your + account + settings + and + update + your + user + account. + + + +
  • +
+
+ + + + + + +
+
+ + Upon + your + request + to + terminate + your + account, + we + will + deactivate + or + delete + your + account + and + information + from + our + active + databases. + However, + we + may + retain + some + information + in + our + files + to + prevent + fraud, + troubleshoot + problems, + assist + with + any + investigations, + enforce + our + legal + terms + and/or + comply + with + applicable + legal + requirements. + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + + + Cookies + and + similar + technologies: + + Most + Web + browsers + are + set + to + accept + cookies + by + default. + If + you + prefer, + you + can + usually + choose + to + set + your + browser + to + remove + cookies + and + to + reject + cookies. + If + you + choose + to + remove + cookies + or + reject + cookies, + this + could + affect + certain + features + or + services + of + our + Services. + You + may + also + + + + opt + out + of + interest-based + advertising + by + advertisers + + + + on + our + Services. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + If + you + have + questions + or + comments + about + your + privacy + rights, + you + may + email + us + at + + support@getsetfit.co + + . + + + + + + + +
+
+
+
+
+ + + + + + + 11. + CONTROLS + FOR + DO-NOT-TRACK + FEATURES + + + + + + +
+
+
+
+
+ + + Most + web + browsers + and + some + mobile + operating + systems + and + mobile + applications + include + a + Do-Not-Track + ( + + + 'DNT' + + + ) + feature + or + setting + you + can + activate + to + signal + your + privacy + preference + not + to + have + data + about + your + online + browsing + activities + monitored + and + collected. + At + this + stage + no + uniform + technology + standard + for + + + recognising + + + and + implementing + DNT + signals + has + been + + + finalised + + + . + As + such, + we + do + not + currently + respond + to + DNT + browser + signals + or + any + other + mechanism + that + automatically + communicates + your + choice + not + to + be + tracked + online. + If + a + standard + for + online + tracking + is + adopted + that + we + must + follow + in + the + future, + we + will + inform + you + about + that + practice + in + a + revised + version + of + this + privacy + notice. + + + +
+
+
+
+
+ + + + + + + 12. + DO + CALIFORNIA + RESIDENTS + HAVE + SPECIFIC + PRIVACY + RIGHTS? + + + + + + +
+
+
+
+
+ + + + + In + Short: + + Yes, + if + you + are + a + resident + of + California, + you + are + granted + specific + rights + regarding + access + to + your + personal + information. + + + +
+
+
+
+
+ + + California + Civil + Code + Section + 1798.83, + also + known + as + the + + + 'Shine + The + Light' + + + law, + permits + our + users + who + are + California + residents + to + request + and + obtain + from + us, + once + a + year + and + free + of + charge, + information + about + categories + of + personal + information + (if + any) + we + disclosed + to + third + parties + for + direct + marketing + purposes + and + the + names + and + addresses + of + all + third + parties + with + which + we + shared + personal + information + in + the + immediately + preceding + calendar + year. + If + you + are + a + California + resident + and + would + like + to + make + such + a + request, + please + submit + your + request + in + writing + to + us + using + the + contact + information + provided + below. + + + +
+
+
+
+
+ + + If + you + are + under + 18 + years + of + age, + reside + in + California, + and + have + a + registered + account + with + Services, + you + have + the + right + to + request + removal + of + unwanted + data + that + you + publicly + post + on + the + Services. + To + request + removal + of + such + data, + please + contact + us + using + the + contact + information + provided + below + and + include + the + email + address + associated + with + your + account + and + a + statement + that + you + reside + in + California. + We + will + make + sure + the + data + is + not + publicly + displayed + on + the + Services, + but + please + be + aware + that + the + data + may + not + be + completely + or + comprehensively + removed + from + all + our + systems + (e.g. + + + backups, + etc.). + + + + + + + + + +
+
+
+
+
+ + + CCPA + Privacy + Notice + + +
+
+
+
+
+
+ + + + + + The + California + Code + of + Regulations + defines + a + + + 'resident' + + + as: + + + + + + +
+
+
+
+
+
+ + + (1) + every + individual + who + is + in + the + State + of + California + for + other + than + a + temporary + or + transitory + purpose + and + + +
+
+ + + (2) + every + individual + who + is + domiciled + in + the + State + of + California + who + is + outside + the + State + of + California + for + a + temporary + or + transitory + purpose + + +
+
+
+
+
+ + + All + other + individuals + are + defined + as + + + 'non-residents'. + + + + + +
+
+
+
+
+ + + If + this + definition + of + + + 'resident' + + + applies + to + you, + we + must + adhere + to + certain + rights + and + obligations + regarding + your + personal + information. + + + +
+
+
+
+
+ + + + What + categories + of + personal + information + do + we + collect? + + + +
+
+
+
+
+ + + We + have + collected + the + following + categories + of + personal + information + in + the + past + twelve + (12) + months: + + + + + + + + + +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + Category + + + + + + + + Examples + + + + + + + + Collected + + + +
+
+ + + A. + Identifiers + + +
+
+
+ + + Contact + details, + such + as + real + name, + alias, + postal + address, + telephone + or + mobile + contact + number, + unique + personal + identifier, + online + identifier, + Internet + Protocol + address, + email + address, + and + account + name + + +
+
+
+
+
+
+ + + + + + NO + + + + + +
+
+
+
+
+
+ + + B. + Personal + information + categories + listed + in + the + California + Customer + Records + statute + + +
+
+
+ + + Name, + contact + information, + education, + employment, + employment + history, + and + financial + information + + +
+
+
+
+
+
+ + + + + + YES + + + + + +
+
+
+
+
+
+ + + C. + Protected + classification + characteristics + under + California + or + federal + law + + +
+
+
+ + + Gender + and + date + of + birth + + +
+
+
+
+
+
+ + + + + + YES + + + + + +
+
+
+
+
+
+ + + D. + Commercial + information + + +
+
+
+ + + Transaction + information, + purchase + history, + financial + details, + and + payment + information + + +
+
+
+
+
+
+ + + + + + NO + + + + + +
+
+
+
+
+
+ + + E. + Biometric + information + + +
+
+
+ + + Fingerprints + and + voiceprints + + +
+
+
+
+
+
+ + + + + + NO + + + + + +
+
+
+
+
+
+ + + F. + Internet + or + other + similar + network + activity + + +
+
+
+ + + Browsing + history, + search + history, + online + + + behaviour + + + , + interest + data, + and + interactions + with + our + and + other + websites, + applications, + systems, + and + advertisements + + + +
+
+
+
+
+
+ + + + + + NO + + + + + +
+
+
+
+
+
+ + + G. + Geolocation + data + + +
+
+
+ + + Device + location + + +
+
+
+
+
+
+ + + + + + YES + + + + + +
+
+
+
+
+
+ + + H. + Audio, + electronic, + visual, + thermal, + olfactory, + or + similar + information + + +
+
+
+ + + Images + and + audio, + video + or + call + recordings + created + in + connection + with + our + business + activities + + +
+
+
+
+
+
+ + + + + + NO + + + + + +
+
+
+
+
+
+ + + I. + Professional + or + employment-related + information + + +
+
+
+ + + Business + contact + details + in + order + to + provide + you + our + Services + at + a + business + level + or + job + title, + work + history, + and + professional + qualifications + if + you + apply + for + a + job + with + us + + +
+
+
+
+
+
+ + + + + + NO + + + + + +
+
+
+
+
+
+ + + J. + Education + Information + + +
+
+
+ + + Student + records + and + directory + information + + +
+
+
+
+
+
+ + + + + + NO + + + + + +
+
+
+
+
+
+ + + K. + Inferences + drawn + from + other + personal + information + + +
+
+
+ + + Inferences + drawn + from + any + of + the + collected + personal + information + listed + above + to + create + a + profile + or + summary + about, + for + example, + an + individual’s + preferences + and + characteristics + + +
+
+
+
+
+
+ + + + + + YES + + + + + + +
+
+
+
+
+ L. + Sensitive + Personal + Information + + + + + +
+ + + + NO + + + +
+
+
+
+ + + + + + + + + + + + + + + +
+
+
+
+
+ + + + We + will + use + and + retain + the + collected + personal + information + as + needed + to + provide + the + Services + or + for: + + + + + +
+ + + + +
+
    +
  • + Category + B + - + + As + long + as + the + user + has + an + account + with + us + + + + +
  • +
+
+ + + + +
+
    +
  • + Category + C + - + + As + long + as + the + user + has + an + account + with + us + + + + +
  • +
+
+ + + + + + +
+ + + + + + +
+ + + + + + +
+ + + + +
+
    +
  • + Category + G + - + + As + long + as + the + user + has + an + account + with + us + + + + +
  • +
+
+ + + + + + +
+ + + + + + +
+ + + + + + +
+ + + + +
+
    +
  • + Category + K + - + + As + long + as + the + user + has + an + account + with + us + + + + +
  • +
+
+ + + + + + + + + +
+ + + + + + + + +
+
+ + + We + may + also + collect + other + personal + information + outside + of + these + categories + through + instances + where + you + interact + with + us + in + person, + online, + or + by + phone + or + mail + in + the + context + of: + + + + + + + + + + + + + + + +
+
    +
  • + + + Receiving + help + through + our + customer + support + channels; + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + + + + +
+
    +
  • + + + Participation + in + customer + surveys + or + contests; + and + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + + + + +
+
    +
  • + + + Facilitation + in + the + delivery + of + our + Services + and + to + respond + to + your + inquiries. + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • +
+
+ + + + How + do + we + use + and + share + your + personal + information? + + + +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + More + information + about + our + data + collection + and + sharing + practices + can + be + found + in + this + privacy + notice + + + . + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + You + may + contact + us + + + + + + by + email + at + + + + + support@getsetfit.co + + , + + + + + + + + + by + visiting + + http://www.getsetfit.co + + , + + + + + + + + + + + + + + + + + + or + by + referring + to + the + contact + details + at + the + bottom + of + this + document. + + +
+
+
+
+
+ + + If + you + are + using + an + + + authorised + + + agent + to + exercise + your + right + to + opt + out + we + may + deny + a + request + if + the + + + authorised + + + agent + does + not + submit + proof + that + they + have + been + validly + + + authorised + + + to + act + on + your + behalf. + + + +
+
+
+
+
+ + + + Will + your + information + be + shared + with + anyone + else? + + + +
+
+
+
+
+ + + We + may + disclose + your + personal + information + with + our + service + providers + pursuant + to + a + written + contract + between + us + and + each + service + provider. + Each + service + provider + is + a + for-profit + entity + that + processes + the + information + on + our + behalf, + following + the + same + strict + privacy + protection + obligations + mandated + by + the + CCPA. + + +
+
+
+
+
+ + + We + may + use + your + personal + information + for + our + own + business + purposes, + such + as + for + undertaking + internal + research + for + technological + development + and + demonstration. + This + is + not + considered + to + be + + + 'selling' + + + of + your + personal + information. + + + + + + + + + +
+
+
+
+
+ + + + + Fitorbit + Wellness + Private + Limited + + + + has + not + disclosed, + sold, + or + shared + any + personal + information + to + third + parties + for + a + business + or + commercial + purpose + in + the + preceding + twelve + (12) + months. + + + + + Fitorbit + Wellness + Private + Limited + + + + will + not + sell + or + share + personal + information + in + the + future + belonging + to + website + visitors, + users, + and + other + consumers. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + + Your + rights + with + respect + to + your + personal + data + + + +
+
+
+
+
+ + + + Right + to + request + deletion + of + the + data + — + Request + to + delete + + + +
+
+
+
+
+ + + You + can + ask + for + the + deletion + of + your + personal + information. + If + you + ask + us + to + delete + your + personal + information, + we + will + respect + your + request + and + delete + your + personal + information, + subject + to + certain + exceptions + provided + by + law, + such + as + (but + not + limited + to) + the + exercise + by + another + consumer + of + his + or + her + right + to + free + speech, + our + compliance + requirements + resulting + from + a + legal + obligation, + or + any + processing + that + may + be + required + to + protect + against + illegal + activities. + + +
+
+
+
+
+ + + + Right + to + be + informed + — + Request + to + know + + + +
+
+
+
+
+ + + Depending + on + the + circumstances, + you + have + a + right + to + know: + + + + + + + + + + + + + + + + + + + + + +
+
    +
  • + + + whether + we + collect + and + use + your + personal + information; + + + + + + + + + + + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
    +
  • + + + the + categories + of + personal + information + that + we + collect; + + + + + + + + + + + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
    +
  • + + + the + purposes + for + which + the + collected + personal + information + is + used; + + + + + + + + + + + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
    +
  • + + + whether + we + sell + or + share + personal + information + to + third + parties; + + + + + + + + + + + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
    +
  • + + + the + categories + of + personal + information + that + we + sold, + shared, + or + disclosed + for + a + business + purpose; + + + + + + + + + + + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
    +
  • + + + the + categories + of + third + parties + to + whom + the + personal + information + was + sold, + shared, + or + disclosed + for + a + business + purpose; + + + + + + + + + + + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
    +
  • + + + the + business + or + commercial + purpose + for + collecting, + selling, + or + sharing + personal + information; + and + + + + + + + + + + + + + + + + + +
  • +
+
+ + + +
+
    +
  • + the + specific + pieces + of + personal + information + we + collected + about + you. + + + +
  • +
+
+ + + In + accordance + with + applicable + law, + we + are + not + obligated + to + provide + or + delete + consumer + information + that + is + de-identified + in + response + to + a + consumer + request + or + to + re-identify + individual + data + to + verify + a + consumer + request. + + +
+
+
+
+
+ + + + Right + to + Non-Discrimination + for + the + Exercise + of + a + Consumer’s + Privacy + Rights + + + +
+
+
+
+
+ + + We + will + not + discriminate + against + you + if + you + exercise + your + privacy + rights. + + +
+
+
+
+
+ + Right + to + Limit + Use + and + Disclosure + of + Sensitive + Personal + Information + +
+
+ + + + +
+
+
+
+
+ We + do + not + process + consumer's + sensitive + personal + information. +
+
+
+
+
+ + + +
+
+ + + + Verification + process + + + +
+
+
+
+
+ + + Upon + receiving + your + request, + we + will + need + to + verify + your + identity + to + determine + you + are + the + same + person + about + whom + we + have + the + information + in + our + system. + These + verification + efforts + require + us + to + ask + you + to + provide + information + so + that + we + can + match + it + with + information + you + have + previously + provided + us. + For + instance, + depending + on + the + type + of + request + you + submit, + we + may + ask + you + to + provide + certain + information + so + that + we + can + match + the + information + you + provide + with + the + information + we + already + have + on + file, + or + we + may + contact + you + through + a + communication + method + (e.g. + + + phone + or + email) + that + you + have + previously + provided + to + us. + We + may + also + use + other + verification + methods + as + the + circumstances + dictate. + + + +
+
+
+
+
+ + + We + will + only + use + personal + information + provided + in + your + request + to + verify + your + identity + or + authority + to + make + the + request. + To + the + extent + possible, + we + will + avoid + requesting + additional + information + from + you + for + the + purposes + of + verification. + However, + if + we + cannot + verify + your + identity + from + the + information + already + maintained + by + us, + we + may + request + that + you + provide + additional + information + for + the + purposes + of + verifying + your + identity + and + for + security + or + fraud-prevention + purposes. + We + will + delete + such + additionally + provided + information + as + soon + as + we + finish + verifying + you. + + +
+
+
+
+
+ + + + Other + privacy + rights + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
    +
  • + + + You + may + object + to + the + processing + of + your + personal + information. + + + + + + + + + + + + + + + + + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
    +
  • + + + You + may + request + correction + of + your + personal + data + if + it + is + incorrect + or + no + longer + relevant, + or + ask + to + restrict + the + processing + of + the + information. + + + + + + + + + + + + + + + + + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
    +
  • + + + You + can + designate + an + + + authorised + + + agent + to + make + a + request + under + the + CCPA + on + your + behalf. + We + may + deny + a + request + from + an + + + authorised + + + agent + that + does + not + submit + proof + that + they + have + been + validly + + + authorised + + + to + act + on + your + behalf + in + accordance + with + the + CCPA. + + + + + + + + + + + + + + + + + + + + + + + +
  • +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
    +
  • + + + You + may + request + to + opt + out + from + future + selling + or + sharing + of + your + personal + information + to + third + parties. + Upon + receiving + an + opt-out + request, + we + will + act + upon + the + request + as + soon + as + feasibly + possible, + but + no + later + than + fifteen + (15) + days + from + the + date + of + the + request + submission. + + + + + + + + + + + + + + + + + + + + + + + +
  • +
+
+ + + To + exercise + these + rights, + you + can + contact + us + + + + + + + by + email + at + + support@getsetfit.co + + , + + + + + + + + + by + visiting + + http://www.getsetfit.co + + , + + + + + + + + + + + + + + + + + + or + by + referring + to + the + contact + details + at + the + bottom + of + this + document. + If + you + have + a + complaint + about + how + we + handle + your + data, + we + would + like + to + hear + from + you. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
+
+ + + 13. + DO + VIRGINIA + RESIDENTS + HAVE + SPECIFIC + PRIVACY + RIGHTS? + + +
+
+ +
+
+
+
+ + + + In + Short: + + + Yes, + if + you + are + a + resident + of + Virginia, + you + may + be + granted + specific + rights + regarding + access + to + and + use + of + your + personal + information. + + +
+
+ +
+
+
+
+ + + Virginia + CDPA + Privacy + Notice + + +
+
+ +
+
+
+
+ + Under + the + Virginia + Consumer + Data + Protection + Act + (CDPA): + +
+
+ +
+
+
+
+ + + + + 'Consumer' + + + means + a + natural + person + who + is + a + resident + of + the + Commonwealth + acting + only + in + an + individual + or + household + context. + It + does + not + include + a + natural + person + acting + in + a + commercial + or + employment + context. + + +
+
+ +
+
+
+
+ + + + + 'Personal + data' + + + means + any + information + that + is + linked + or + reasonably + linkable + to + an + identified + or + identifiable + natural + person. + + + 'Personal + data' + + + does + not + include + de-identified + data + or + publicly + available + information. + + +
+
+ +
+
+
+
+ + + + + + 'Sale + of + personal + data' + + + means + the + exchange + of + personal + data + for + monetary + consideration. + + +
+
+ +
+
+
+
+ + If + this + definition + + + 'consumer' + + + applies + to + you, + we + must + adhere + to + certain + rights + and + obligations + regarding + your + personal + data. + + +
+
+
+
+
+ + The + information + we + collect, + use, + and + disclose + about + you + will + vary + depending + on + how + you + interact + with + + Fitorbit + Wellness + Private + Limited + + and + our + Services. + To + find + out + more, + please + visit + the + following + links: + + + + +
+ +
+ + + + +
+ +
+ + + + +
+ +
+ + + Your + rights + with + respect + to + your + personal + data + + +
+
+ + + + +
+
    +
  • + + Right + to + be + informed + whether + or + not + we + are + processing + your + personal + data + + + +
  • +
+
+ + + + +
+
    +
  • + + Right + to + access + your + personal + data + + + +
  • +
+
+ + + + +
+
    +
  • + + Right + to + correct + inaccuracies + in + your + personal + data + + + +
  • +
+
+ + + + +
+
    +
  • + + Right + to + request + deletion + of + your + personal + data + + + +
  • +
+
+ + + + +
+
    +
  • + + Right + to + obtain + a + copy + of + the + personal + data + you + previously + shared + with + us + + + +
  • +
+
+ + + + +
+
    +
  • + + Right + to + opt + out + of + the + processing + of + your + personal + data + if + it + is + used + for + targeted + advertising, + the + sale + of + personal + data, + or + profiling + in + furtherance + of + decisions + that + produce + legal + or + similarly + significant + effects + ( + + + 'profiling' + + + ) + + + + + +
  • +
+
+ + + + + Fitorbit + Wellness + Private + Limited + + has + not + sold + any + personal + data + to + third + parties + for + business + or + commercial + purposes. + + Fitorbit + Wellness + Private + Limited + + will + not + sell + personal + data + in + the + future + belonging + to + website + visitors, + users, + and + other + consumers. + + + +
+
+
+
+
+ + Exercise + your + rights + provided + under + the + Virginia + CDPA + +
+
+
+
+
+ More + information + about + our + data + collection + and + sharing + practices + can + be + found + in + this + privacy + notice + + + . + +
+
+
+
+
+ + + + You + may + contact + us + by + email + at + + support@getsetfit.co + + , + + + by + submitting + a + + + data + subject + access + request + + + + + , + or + by + referring + to + the + contact + details + at + the + bottom + of + this + document. + + +
+
+
+
+
+ + If + you + are + using + an + + + authorised + + + agent + to + exercise + your + rights, + we + may + deny + a + request + if + the + + + authorised + + + agent + does + not + submit + proof + that + they + have + been + validly + + + authorised + + + to + act + on + your + behalf. + + +
+
+
+
+
+ + + Verification + process + + +
+
+
+
+
+ + We + may + request + that + you + provide + additional + information + reasonably + necessary + to + verify + you + and + your + consumer's + request. + If + you + submit + the + request + through + an + + + authorised + + + agent, + we + may + need + to + collect + additional + information + to + verify + your + identity + before + processing + your + request. + + +
+
+
+
+
+ + Upon + receiving + your + request, + we + will + respond + without + undue + delay, + but + in + all + cases, + within + forty-five + (45) + days + of + receipt. + The + response + period + may + be + extended + once + by + forty-five + (45) + additional + days + when + reasonably + necessary. + We + will + inform + you + of + any + such + extension + within + the + initial + 45-day + response + period, + together + with + the + reason + for + the + extension. + +
+
+
+
+
+ + + Right + to + appeal + + +
+
+ +
+
+
+
+ + If + we + decline + to + take + action + regarding + your + request, + we + will + inform + you + of + our + decision + and + reasoning + behind + it. + If + you + wish + to + appeal + our + decision, + please + email + us + at + + + + support@getsetfit.co + + + + . + Within + sixty + (60) + days + of + receipt + of + an + appeal, + we + will + inform + you + in + writing + of + any + action + taken + or + not + taken + in + response + to + the + appeal, + including + a + written + explanation + of + the + reasons + for + the + decisions. + If + your + appeal + if + denied, + you + may + contact + the + + + + + Attorney + General + to + submit + a + complaint + + + + . + + + +
+
+
+
+
+ + + + + + + 14. + DO + WE + MAKE + UPDATES + TO + THIS + NOTICE? + + + + + + +
+
+
+
+
+ + + + + In + Short:Yes, + we + will + update + this + notice + as + necessary + to + stay + compliant + with + relevant + laws. + + + + +
+
+
+
+
+ + + We + may + update + this + privacy + notice + from + time + to + time. + The + updated + version + will + be + indicated + by + an + updated + + + 'Revised' + + + date + and + the + updated + version + will + be + effective + as + soon + as + it + is + accessible. + If + we + make + material + changes + to + this + privacy + notice, + we + may + notify + you + either + by + prominently + posting + a + notice + of + such + changes + or + by + directly + sending + you + a + notification. + We + encourage + you + to + review + this + privacy + notice + frequently + to + be + informed + of + how + we + are + protecting + your + information. + + + +
+
+
+
+
+ + + + + + + 15. + HOW + CAN + YOU + CONTACT + US + ABOUT + THIS + NOTICE? + + + + + + +
+
+
+
+
+ + + If + you + have + questions + or + comments + about + this + notice, + you + may + + + + + email + us + at + + support@getsetfit.co + + + + + + + + + or + contact + us + by + post + at: + + + + + +
+
+
+
+
+ + + + + + + + + Fitorbit + Wellness + Private + Limited + + + + + + + + + + + + + + + + +
+
+ + + + 1 + FLOOR-1ST + PLOT-121 + NAFI + + + + + + + + + +
+
+ + + SARANG + STREET + CRAWFORD + MA + + + + + + + + + + +
+
+ + + + MUMBAI + + + + + + , + + MAHARASHTRA + + + + + + + 400003 + + + + + + + + + + + + +
+
+ + + + + + + + + + + + India + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + + + + + 16. + HOW + CAN + YOU + REVIEW, + UPDATE, + OR + DELETE + THE + DATA + WE + COLLECT + FROM + YOU? + + + + + + +
+
+
+
+
+ + + + + + Based + on + the + applicable + laws + of + your + country, + you + may + have + the + right + to + request + access + to + the + personal + information + we + collect + from + you, + change + that + information, + or + delete + it. + + + + To + request + to + review, + update, + or + delete + your + personal + information, + please + + + fill + out + and + submit + a + + + + + data + subject + access + request + + + + + + + + + . + + +
+ +
+
+ + + + + + + + + \ No newline at end of file diff --git a/resources/views/website/pages/transform_beyond.blade.php b/resources/views/website/pages/transform_beyond.blade.php new file mode 100644 index 0000000..d804e0e --- /dev/null +++ b/resources/views/website/pages/transform_beyond.blade.php @@ -0,0 +1,759 @@ +@extends('website.layouts.master') +@section('content') + + +
+
+

Transform & Beyond-intermediate

+ +
+
+ +
+
+
+
+ + + + + +
+
+
+ + +
+
+
+
+
+ +
+
+

BATCH DETAILS :

+
+
+ +
+
+ +
+
+
+
+
+ +
+
+

Post registration contact us on Click here WhatsApp

+
+
+
+
+
+

6

+
MONTHS
+
+
+ + @if($data == "IN") +
2,499/
season
+ @else +
USD 48 /
season
+ @endif + +
+
+ +
    +
  • Live + recorded workouts
  • +
  • Custom nutrition
  • +
  • Bio scale/GSF app
  • +
+
+ @if($data == "IN") + + +

BUY

+
+ @else + + +

BUY

+
+ @endif +
+
+
+ +
+
+
+
+

3

+
MONTHS
+
+
+ + + @if($data == "IN") +
2,999/
season
+ @else +
USD 60 /
season
+ @endif +
+
+ + +
    +
  • Live + recorded workouts
  • +
  • Custom nutrition
  • +
  • Bio scale/GSF app
  • +
+
+ @if($data == "IN") + + +

BUY

+
+ @else + + +

BUY

+
+ @endif +
+
+
+ +
+
+
+
+

1

+
MONTH
+
+ +
+ + @if($data === "IN") +
3,499/
season
+ @else +
USD 72 /
season
+ @endif + +
+
+ +
    +
  • Live + recorded workouts
  • +
  • Custom nutrition
  • +
  • Bio scale/GSF app
  • +
+
+ @if($data == "IN") + + +

BUY

+
+ @else + + +

BUY

+
+ @endif +
+
+
+ +
+
+
+ +
+
+
+
6MONTHS
+
3MONTHS
+
1MONTH
+ + +
+

Live + recorded workouts

+
+
+ +
+
+ +
+
+ +
+ + + +
+

Custom nutrition

+
+
+ +
+
+ +
+
+ +
+ + +
+

Bio scale/GSF app

+
+
+ +
+
+ +
+
+ +
+ + + + + + + + + + + + + + +
+ +
+
+
+
+

6
MONTHS

+
+ @if($data == "IN") +

+ ₹2,499/ season +

+ @else +

+ USD 48/ season +

+ @endif +

No cost EMI

+ + @if($data == "IN") + + +

BUY

+
+ @else + + +

BUY

+
+ @endif +
+ +
+
+
+
+
+
+

3
MONTHS

+
+ @if($data == "IN") +

+ ₹2,999/ season + +

+ @else +

+ USD 60/ season +

+ @endif +

No cost EMI

+ + @if($data == "IN") + + +

BUY

+
+ @else + + +

BUY

+
+ @endif +
+ +
+
+
+
+
+
+

1
MONTH

+
+ @if($data == "IN") +

+ ₹3,499/ season + + +

+ @else +

+ USD 72/ season +

+ @endif +

Onwards

+ + @if($data == "IN") + + +

BUY

+
+ @else + + +

BUY

+
+ @endif +
+ +
+
+
+
+ +
+ +
+
+

WHAT TO EXPECT :

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+

Exclusive access to our GETSETFIT Mobile App and BIOSCALE to measure body composition

+
+
+
+ +
+

Personal nutrition plan + timely calls with nutritionist

+
+
+
+ +
+

Live workouts + access to recordings

+
+
+
+ +
+

Dedicated Whatsapp group for open discussions, motivation and queries resolution

+
+
+
+ +
+

Compete with the community on the Leaderboard

+
+
+
+
+
+
+

+ If you know the basic movements such as squats, lunges, push-ups etc. and are ready to push your limits each day, this program is for you. +

+
    +
  • Each season is a 4 weeks program covering structured strength training, cardio and mobility routines.
  • +
  • Get exclusive access to GETSETFIT app and BIOSCALE which tells you about your body composition.
  • +
  • Enjoy a custom nutrition plan as per your body needs.
  • +
  • Compete with the community on the Leaderboard.
  • +
+
+
+
+
+ + +

+ Post booking, you will be redirected to the Whatsapp group for all the communications.
+ Your login credentials will be sent to your email id and will be live within 36 hours. +

+
+
+ +
+
+

TERMS & CONDITIONS:

+ + + + + + + +
    +
  • Kindly get a Doctor’s approval before starting the workouts.
  • +
  • GETSETFIT is not responsible for any injury of the participant.
  • +
  • The spot once booked cannot be cancelled or transferred to any other participant or any other season.
  • +
  • No changes of batch and contact details shall be permitted. Hence request you to kindly input them correctly while booking your spot.
  • +
+
+
+ +
+
+

FAQ -Frequently Asked Questions

+ +
+
+
+
+ +
+

We do not give refunds.

+ +
+
+
+ + +
+
+ +
+ + +

+ Yes, a recorded session will be provided in case you miss the live workouts. The recordings will expire within a week from the end of the batch. +

+
+
+
+ +
+ + + +

+ At GETSETFIT we aim to create a sustainable lifestyle and isn’t difficult to practice for a lifetime. Out custom diet plans will cater to your body’s requirement. You will also have the opportunity to discuss your special requirements with our in-house nutritionist over the fortnightly calls. We also focus on special requirements of the PCOS/D diet. +

+
+
+
+ +
+ + + +

+ The workouts will be focused on full-body training with special attention given to each body part. This includes strength training, HIIT, mobility, and flexibility enhancing exercises. +

+
+
+
+ +
+ + + +

+ The workouts are conducted on video conference. The link for the same will be available on your GETSETFIT mobile app. During the session participants can watch the Coach demonstrate the exercise form. The Coach will also monitor your form and guide you on a real-time basis. +

+
+
+
+ +
+

+ Once you register for the program, we shall ship the Bioscale to the address mentioned in the registration form. +

+
+
+
+ +
+

+ Step 1: Turn on the Bluetooth and Location on your phone. +

+

+ Step 2: Login to the GETSETFIT app. +

+

+ Step 3: Click on the Bioscale tab. +

+

+ Step 4: Tap your foot on the scale. +

+

+ Step 5: Select the device name GSF. +

+

+ Step 6: Step on the scale and see your statistics. +

+
+
+
+ +
+

+ No. You can keep it with you and use it when rejoin the GETSETFIT program +

+
+
+
+ +
+

+ Each BIOSCALE is quality tested before it leaves our office. If this event has to occur, we’d request you to reach out to us on team@getsetfit.co and we shall help you resolve the issue. +

+
+
+
+ +
+

+ The Leaderboard points depend on the following factors:
+ a. Body composition
+ b. Stepping on the scale everyday
+ c. Checking in with us on the Mood-o-meter
+

+
+
+
+
+
+ +
+
+
+
+ + + + + +@endsection \ No newline at end of file diff --git a/resources/views/website/pages/transform_beyond_beginner.blade.php b/resources/views/website/pages/transform_beyond_beginner.blade.php new file mode 100644 index 0000000..6218388 --- /dev/null +++ b/resources/views/website/pages/transform_beyond_beginner.blade.php @@ -0,0 +1,739 @@ +@extends('website.layouts.master') +@section('content') + + +
+
+

Transform & Beyond-beginner

+ +
+
+ +
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+

BATCH DETAILS :

+
+
+ +
+
+ +
+
+
+
+
+ +
+
+

Post registration contact us on Click here WhatsApp

+
+
+
+
+
+

6

+
MONTHS
+
+
+ + @if($data == "IN") +
2,499/
season
+ @else +
USD 48/
season
+ @endif + +
+
+ +
    +
  • Live + recorded workouts
  • +
  • Custom nutrition
  • +
  • Bio scale/GSF app
  • +
+
+ @if($data == "IN") + +

BUY

+
+ @else + +

BUY

+
+ @endif +
+
+
+ +
+
+
+
+

3

+
MONTHS
+
+
+ + @if($data == "IN") +
2,999/
season
+ @else +
USD 60/
season
+ @endif + +
+
+ + +
    +
  • Live + recorded workouts
  • +
  • Custom nutrition
  • +
  • Bio scale/GSF app
  • +
+
+ @if($data == "IN") + +

BUY

+
+ @else + +

BUY

+
+ @endif +
+
+
+ +
+
+
+
+

1

+
MONTHS
+
+ +
+ + @if($data == "IN") +
3,499/
season
+ @else +
USD 72/
season
+ @endif + +
+
+ +
    +
  • Live + recorded workouts
  • +
  • Custom nutrition
  • +
  • Bio scale/GSF app
  • +
+
+ @if($data == "IN") + +

BUY

+
+ @else + +

BUY

+
+ @endif +
+
+
+ +
+
+
+ + +
+
+
+
6SEASONS
+
3SEASONS
+
1SEASON
+ + +
+

Live + recorded workouts

+
+
+ +
+
+ +
+
+ +
+ + + +
+

Custom nutrition

+
+
+ +
+
+ +
+
+ +
+ + +
+

Bio scale/GSF app

+
+
+ +
+
+ +
+
+ +
+ + + + + + + + + + + + + + +
+ +
+
+
+
+

6
MONTHS

+
+ @if($data == "IN") +

+ ₹2,499/ season +

+

No cost EMI

+ + +

BUY

+
+ @else +

+ USD 48/ season +

+

No cost EMI

+ + +

BUY

+
+ @endif + + +
+ +
+
+
+
+
+
+

3
MONTHS

+
+ @if($data == "IN") +

+ ₹2,999/ season +

+

No cost EMI

+ + +

BUY

+
+ @else +

+ USD 60/ season +

+

No cost EMI

+ + +

BUY

+
+ @endif + +
+ +
+
+
+
+
+
+

1
MONTH

+
+ @if($data == "IN") +

+ ₹3,499/ season +

+

Onwards

+ + +

BUY

+
+ @else +

+ USD 72/ season +

+

Onwards

+ + +

BUY

+
+ @endif + +
+ +
+
+
+
+ +
+ +
+
+

WHAT TO EXPECT :

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+

Exclusive access to our GETSETFIT Mobile App and BIOSCALE to measure body composition

+
+
+
+ +
+

Personal nutrition plan + timely calls with nutritionist

+
+
+
+ +
+

Live workouts + access to recordings

+
+
+
+ +
+

Dedicated Whatsapp group for open discussions, motivation and queries resolution

+
+
+
+ +
+

Compete with the community on the Leaderboard

+
+
+
+
+
+
+

+ Take your first step or restart your fitness journey with this carefully designed fitness program for Beginners. Work on building your strength and endurance. +

+ + + + + + + + + + + + +
    +
  • Each season is a 4 weeks program covering structured strength training, cardio and mobility routines.
  • +
  • Get exclusive access to GETSETFIT app and BIOSCALE which tells you about your body composition.
  • +
  • Enjoy a custom nutrition plan as per your body needs.
  • +
  • Compete with the community on the Leaderboard.
  • +
+
+
+
+
+ + +

+ Post booking, you will be redirected to the Whatsapp group for all the communications.
+ Your login credentials will be sent to your email id and will be live within 36 hours. +

+
+
+ +
+
+

TERMS & CONDITIONS:

+ + + + + + + +
    +
  • Kindly get a Doctor’s approval before starting the workouts.
  • +
  • GETSETFIT is not responsible for any injury of the participant.
  • +
  • The spot once booked cannot be cancelled or transferred to any other participant or any other season.
  • +
  • No changes of batch and contact details shall be permitted. Hence request you to kindly input them correctly while booking your spot.
  • +
+
+
+ +
+
+

FAQ -Frequently Asked Questions

+ +
+
+
+
+ +
+

We do not give refunds.

+ +
+
+
+ + +
+
+ +
+ + +

+ Yes, a recorded session will be provided in case you miss the live workouts. The recordings will expire within a week from the end of the batch. +

+
+
+
+ +
+ + + +

+ At GETSETFIT we aim to create a sustainable lifestyle and isn’t difficult to practice for a lifetime. Out custom diet plans will cater to your body’s requirement. You will also have the opportunity to discuss your special requirements with our in-house nutritionist over the fortnightly calls. We also focus on special requirements of the PCOS/D diet. +

+
+
+
+ +
+ + + +

+ The workouts will be focused on full-body training with special attention given to each body part. This includes strength training, HIIT, mobility, and flexibility enhancing exercises. +

+
+
+
+ +
+ + + +

+ The workouts are conducted on video conference. The link for the same will be available on your GETSETFIT mobile app. During the session participants can watch the Coach demonstrate the exercise form. The Coach will also monitor your form and guide you on a real-time basis. +

+
+
+
+ +
+

+ Once you register for the program, we shall ship the Bioscale to the address mentioned in the registration form. +

+
+
+
+ +
+

+ Step 1: Turn on the Bluetooth and Location on your phone. +

+

+ Step 2: Login to the GETSETFIT app. +

+

+ Step 3: Click on the Bioscale tab. +

+

+ Step 4: Tap your foot on the scale. +

+

+ Step 5: Select the device name GSF. +

+

+ Step 6: Step on the scale and see your statistics. +

+
+
+
+ +
+

+ No. You can keep it with you and use it when rejoin the GETSETFIT program +

+
+
+
+ +
+

+ Each BIOSCALE is quality tested before it leaves our office. If this event has to occur, we’d request you to reach out to us on team@getsetfit.co and we shall help you resolve the issue. +

+
+
+
+ +
+

+ The Leaderboard points depend on the following factors:
+ a. Body composition
+ b. Stepping on the scale everyday
+ c. Checking in with us on the Mood-o-meter
+

+
+
+
+
+
+ +
+
+
+
+ + +@endsection \ No newline at end of file diff --git a/resources/views/website/pages/your_activity.blade.php b/resources/views/website/pages/your_activity.blade.php new file mode 100644 index 0000000..4be58a3 --- /dev/null +++ b/resources/views/website/pages/your_activity.blade.php @@ -0,0 +1,124 @@ +@extends('website.layouts.master') +@section('content') + + +
+
+

your activities

+ @if(!empty($data) && $data == "0") + +
Acitivity has been ended
+ + @else + + +
+
+ @if(!empty($live_activity) && count($live_activity) >= 1) +
+
+ +
+ +
+
{{$live_activity[0]['activity_name']}}
+
+

+ @if($subscription_data['utm_plan'] == 'strong1' || $subscription_data['utm_plan'] == 'strong3' || $subscription_data['utm_plan'] == 'strong6' || $subscription_data['utm_plan'] == 'strongeve1' || $subscription_data['utm_plan'] == 'strongeve3' || $subscription_data['utm_plan'] == 'strongeve6') + Intermediate + @elseif($subscription_data['utm_plan'] == 'beginmor1' || $subscription_data['utm_plan'] == 'beginmor3' || $subscription_data['utm_plan'] == 'beginmor6' || $subscription_data['utm_plan'] == 'begineve1' || $subscription_data['utm_plan'] == 'begineve3' || $subscription_data['utm_plan'] == 'begineve6') + Beginner + @else + Exclusive + @endif + : {{$live_activity[0]['activity_duration']}} mins

+ + +

{{$live_activity[0]['time']}}

+
+
+ Join Now +
+
+
+ @else +
+

No Data Found

+
+ @endif + +
+ +
+ + @if(!empty($past_activity)) +
+ @if($past_activity['schedule']) + @foreach($past_activity['schedule'] as $key => $week) +
+

+ +

+
+
+ @foreach($week['past_data'] as $key => $past_days) +
+
+

{{$past_days['day']}}

+
{{$past_days['activity_name']}}
+

Duration {{$past_days['duration']}} min

+
+
+ + + +
+
+ @endforeach +
+
+
+ @endforeach + @else +

No Data Found

+ @endif +
+ + +
+ @else +

No Data Found

+ @endif +
+ + @endif + + + + + + + + + + + + + + + + + +
+
+ +@endsection \ No newline at end of file diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php new file mode 100644 index 0000000..0ad6097 --- /dev/null +++ b/resources/views/welcome.blade.php @@ -0,0 +1,132 @@ + + + + + + + Laravel + + + + + + + + + + +
+ @if (Route::has('login')) + + @endif + +
+
+ + + + + +
+ +
+
+
+ + +
+
+ Laravel has wonderful, thorough documentation covering every aspect of the framework. Whether you are new to the framework or have previous experience with Laravel, we recommend reading all of the documentation from beginning to end. +
+
+
+ +
+
+ + +
+ +
+
+ Laracasts offers thousands of video tutorials on Laravel, PHP, and JavaScript development. Check them out, see for yourself, and massively level up your development skills in the process. +
+
+
+ +
+
+ + +
+ +
+
+ Laravel News is a community driven portal and newsletter aggregating all of the latest and most important news in the Laravel ecosystem, including new package releases and tutorials. +
+
+
+ +
+
+ +
Vibrant Ecosystem
+
+ +
+
+ Laravel's robust library of first-party tools and libraries, such as Forge, Vapor, Nova, and Envoyer help you take your projects to the next level. Pair them with powerful open source libraries like Cashier, Dusk, Echo, Horizon, Sanctum, Telescope, and more. +
+
+
+
+
+ +
+
+
+ + + + + + Shop + + + + + + + + Sponsor + +
+
+ +
+ Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}) +
+
+
+
+ + diff --git a/routes/api.php b/routes/api.php new file mode 100644 index 0000000..cff6134 --- /dev/null +++ b/routes/api.php @@ -0,0 +1,230 @@ + ['log_execution_time']], function() { + +//*******************************************************RegisterController start here******************************************************** + Route::post('/register', [RegisterController::class, 'storeRegistrationData']); +//*******************************************************RegisterController end here******************************************************** + +//*******************************************************LoginController start here******************************************************** + Route::post('/login', [LoginController::class, 'login']); + Route::post('/otp/generate', [LoginController::class, 'generate']); + Route::post('/otp/validate_otp', [LoginController::class, 'verifyOtp']); + Route::post('/otp/resend', [LoginController::class, 'resend_otp']); + Route::post('/otp/create_new_pass_with_otp', [LoginController::class, 'create_new_pass_with_otp']); + Route::put('/otp/update_password', [LoginController::class, 'update_password']); + Route::post('/reset_pass', [LoginController::class, 'resetPassword']); +//*******************************************************LoginController end here******************************************************** + + +Route::group(['middleware' => ['jwt.verify']], function() { + +Route::post('/storeDates', [PeriodDatesController::class, 'storeDates']); +Route::get('/getPeriodDates', [PeriodDatesController::class, 'getPeriodDates']); +Route::post('/deletePeriodDates', [PeriodDatesController::class, 'deletePeriodDates']); + + + +//*******************************************************ProfileController start here******************************************************** +Route::post('/update_profile', [ProfileController::class, 'profileUpdate']); +Route::get('/get_user_data', [ProfileController::class, 'index']); +Route::get('/view_profile_frds', [ProfileController::class, 'viewProfile']); +//*******************************************************ProfileController end here******************************************************** + +//*******************************************************ShareYourThoughtsController start here******************************************************** +Route::post('AddThoughts', [ShareYourThoughtsController::class, "add_thoughts"]); +Route::get('GetThoughts', [ShareYourThoughtsController::class, "get_thought_id"]); + +//*******************************************************ShareYourThoughtsController end here******************************************************** + +//*******************************************************QuizController start here******************************************************** +Route::post("storeQuizPoints",[QuizController::class, "storeQuizPoints"]); +Route::get("getUerQuizpoints",[QuizController::class, "getUerQuizpoints"]); +//*******************************************************QuizController end here******************************************************** + + +//*******************************************************ManageBannerController start here******************************************************** +Route::get('/manageBanner', [ManageBannerController::class, 'manage_banner']); +//*******************************************************ManageBannerController end here******************************************************** + +//*******************************************************GetAppVersionCotroller start here******************************************************** +Route::post('/getOlderVersion', [GetAppVersionCotroller::class, 'getOlderVersion']); +Route::get('/getNewVersion', [GetAppVersionCotroller::class, 'getNewVersion']); +//*******************************************************GetAppVersionCotroller end here******************************************************** + + +//*******************************************************ContactController start here******************************************************** +Route::post('storeContactUs', [ContactController::class, "store_contact_us"]); +//*******************************************************ContactController end here******************************************************** + +//*******************************************************FaqController start here******************************************************** +Route::get('getFaq', [FaqController::class, "get_faq"]); +//*******************************************************FaqController end here******************************************************** + +//*******************************************************ShortClipsController start here******************************************************** +Route::post('storeShortClips', [ShortClipsController::class, "store_short_clips"]); +Route::post('likeShortClips', [ShortClipsController::class, "like_short_clips"]); +Route::get('getShortClipsById/{id}', [ShortClipsController::class, "get_short_clips_by_id"]); +Route::put('updateShortClips', [ShortClipsController::class, "update_short_clips"]); +Route::get('getShortClips', [ShortClipsController::class, "get_short_clips"]); +Route::get('getShortClipsLikes', [ShortClipsController::class, "get_short_clips_likes"]); + +//*******************************************************ShortClipsController end here******************************************************** + +//*******************************************************MoodOMeterController start here******************************************************** +Route::post('storeMoodOMeter', [MoodOMeterController::class, "store_mood_o_meter"]); +Route::get('getMoodOMeter', [MoodOMeterController::class, "get_mood_o_meter"]); +Route::get('getMoodOMeterValue', [MoodOMeterController::class, "get_mood_o_meter_mood"]); +//*******************************************************MoodOMeterController end here******************************************************** + +//*******************************************************AboutController start here******************************************************** +Route::get('getAboutUs', [AboutController::class, "get_About_Us"]); +//*******************************************************AboutController end here******************************************************** + +//*******************************************************UserOverviewController start here******************************************************** +Route::post("addUserOverview",[UserOverviewController::class, "add_user_overview"]); +Route::get("getUserOverview",[UserOverviewController::class, "get_user_overview_by_id"]); +Route::get("showUserOverview",[UserOverviewController::class, "show_user_overview"]); +Route::post("showUserOverview_new",[UserOverviewController::class, "showUserOverview_new"]); +Route::get("getUserRanking",[LeaderBordMasterContoller::class, "get_user_ranking"]); +Route::post("getUserGender",[LeaderBordMasterContoller::class, "get_user_gender"]); +Route::post("getUserGroupLevel",[LeaderBordMasterContoller::class, "get_user_group_level"]); +Route::post("filterUsers",[LeaderBordMasterContoller::class, "filter_users"]); +Route::post("get_user_data_filterUsers",[LeaderBordMasterContoller::class, "get_user_data"]); +Route::post("get_user_data_filterUsersNew",[LeaderBordMasterContoller::class, "get_user_data_new"]); +Route::post("get_user_data_filterUsers_home",[LeaderBordMasterContoller::class, "get_user_data_home"]); +Route::get("get_position",[LeaderBordMasterContoller::class,"ranking_position"]); +Route::get("get_user_position",[LeaderBordMasterContoller::class,"get_user_position"]); +Route::get("get_user_position_daily",[LeaderBordMasterContoller::class,"get_daily_user_position"]); + +//*******************************************************UserOverviewController end here******************************************************** + +//*******************************************************TestimonialController start here******************************************************** +Route::get('getTestimonial', [TestimonialController::class, "get_Testimonial"]); +Route::post('storeTestimonial', [TestimonialController::class, "store_testimonial"]); +//Route::put('updateTestimonial', [TestimonialController::class, "update_testimonial"]); +//*******************************************************TestimonialController end here******************************************************** + + +//*******************************************************ManageActivityController end here******************************************************** +Route::get("getManageActivity",[ManageActivityController::class, "get_manage_activity"]); +Route::get("getManageActivitySchedule",[ManageActivityController::class, "get_manage_activity_schedule"]); +Route::get("getManageActivityScheduleUTC",[ManageActivityController::class, "get_manage_activity_schedule_utc"]); +Route::get("getManagePastSession",[ManageActivityController::class, "get_manage_past_session"]); +Route::post("addSessionStatus",[ManageActivityController::class,"add_session_status"]); +Route::get("getManageActivityById",[ManageActivityController::class, "get_manage_activity_id"]); +Route::get("getManageActivityScheduleById",[ManageActivityController::class, "get_schedule_id"]); +Route::get("getManagePastSessionById",[ManageActivityController::class, "get_manage_past_session_id"]); + +Route::get("dummy_activity",[ManageActivityController::class, "dummy_activity"]); +//*******************************************************ManageActivityController end here******************************************************** +// +//*******************************************************DietPlanController start here******************************************************** +Route::post("getDietCategories",[DietPlanController::class, "get_diet_categories"]); +//*******************************************************DietPlanController end here******************************************************** + +//*******************************************************ManageNotificationController start here******************************************************** +Route::get("get_notification_count",[ManageNotificationController::class, "get_notification_count"]); +Route::post("update_read_status",[ManageNotificationController::class, "update_read_status"]); +Route::post("delete_notification",[ManageNotificationController::class, "delete_notification"]); + +//*******************************************************ManageNotificationController end here******************************************************** + +//*******************************************************Feedback start here******************************************************** +Route::get("getFeedback",[ManageFeedbackController::class, "getData"]); +Route::post("updateFeedback",[ManageFeedbackController::class, "updateFeedback"]); + +//*******************************************************Feedback end here******************************************************** + +//*******************************************************Rateus start here******************************************************** + +Route::get("getRateus",[RateUsController::class, "getData"]); +Route::post("updateRateUs",[RateUsController::class, "updateRateUs"]); + +//*******************************************************Rateus end here******************************************************** + +//*******************************************************user start here******************************************************** + +Route::get("userSubscriptionData",[UserController::class, "userSubscriptionData"]); +Route::post("delete_user",[UserController::class, "delete_user"]); + +//*******************************************************user end here******************************************************** + +//*******************************************************DailyStepCountCotroller start here******************************************************** +Route::post("/step_count",[StepCountController::class,"store_step_count"]); +//*******************************************************DailyStepCountCotroller end here******************************************************** + + +}); + +Route::get("reset_points",[UserOverviewController::class, "resetPoints"]); + +//*******************************************************ViewDevicesOneSignalController start here******************************************************** +Route::get("/fetchDevices",[ViewDevicesOneSignalController::class,"fetchDevices"]); +//*******************************************************ViewDevicesOneSignalController end here******************************************************** + +//*******************************************************CreateNotificationOneSignalController start here******************************************************** +Route::post("/createNotification",[CreateNotificationOneSignalController::class,"createNotification"]); +//*******************************************************CreateNotificationOneSignalController end here******************************************************** + +Route::get("getQuiz",[QuizController::class, "getQuiz"]); + +//*******************************************************Podcast start here******************************************************** +Route::get("getPodcast",[ManagePodcastController::class, "getPodcast"]); + +//*******************************************************Podcast end here******************************************************** + +//*******************************************************ManageNewsArticle start here******************************************************** +Route::get("getNewsArticle",[NewsAndArticleController::class, "getData"]); +Route::post("search",[NewsAndArticleController::class,"search"]); +//*******************************************************ManageNewsArticle end here******************************************************** + +Route::post('/updateAppVersion', [GetAppVersionCotroller::class, 'updateAppVersion']); + +// Route::get("delete_notif",[ManageNotificationController::class, "delete"]); + +}); diff --git a/routes/channels.php b/routes/channels.php new file mode 100644 index 0000000..5d451e1 --- /dev/null +++ b/routes/channels.php @@ -0,0 +1,18 @@ +id === (int) $id; +}); diff --git a/routes/console.php b/routes/console.php new file mode 100644 index 0000000..e05f4c9 --- /dev/null +++ b/routes/console.php @@ -0,0 +1,19 @@ +comment(Inspiring::quote()); +})->purpose('Display an inspiring quote'); diff --git a/routes/web.php b/routes/web.php new file mode 100644 index 0000000..9066ece --- /dev/null +++ b/routes/web.php @@ -0,0 +1,444 @@ +group( function () { + + Route::get('/', function () { + return redirect('/admin/sign_in'); + +}); + +// Route::get('/test', function () { +// $to = "vedant@wdimail.com"; +// $detail = "hello"; +// Mail::to($to)->send(new ContactUsForm($detail)); +// return "Receiver: ".$to; +// }); +Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home'); +Route::post('/admin-login', [LoginController::class, 'adminPostLogin'])->name('admin-login'); +Route::get('/sign_in', [LoginController::class, 'create'])->name('sign_in'); +Route::post('/send_otp', [LoginController::class, 'sendOtp'])->name('adminOtpSend'); +Route::get('/two_step', [LoginController::class, 'getOTP'])->name('adminOtpGet'); +Route::post('/Login', [LoginController::class, 'adminLogin']); +Route::post('/verify_login', [LoginController::class, 'verifyLogin'])->name('adminVerifyLogin'); +Route::get('/create_two_step', [LoginController::class, 'create_two_step'])->name('create_two_step'); + +Route::middleware('admin')->group( function () { + Route::get('/dashboard', [DashboardController::class, 'view_dashboard'])->name('dashboard'); + +// }); +// Route::group(['middleware' => ['auth_check']], function () { +// Route::prefix('admin')->middleware(['auth:auth_check', 'admin.auth'])->group(function () { + // Route::get('/dashboard', [DashboardController::class, 'view_dashboard'])->name('dashboard'); +// Route::get('/get_count',[DashboardController::class,'get_count']); + + //*******************************************************manage_shorts_clips******************************************************** + + Route::get('/manage_short_clips', [ManageShortClipsController::class, 'index'])->name('manage_short_clips'); + Route::get('/add_short_clips',[ManageShortClipsController::class, 'create_short_clips'])->name('add_short_clips'); + Route::post('/insert_short_clips',[ManageShortClipsController::class, 'insert'])->name('insert_short_clips'); + Route::delete('/delete_short_clips/{id}',[ManageShortClipsController::class, 'destroy'])->name('delete_short_clips'); + Route::get('/edit_short_clips/{id}', [ManageShortClipsController::class, 'edit_short_clips'])->name('edit_short_clips'); + Route::post('/update_short_clips',[ManageShortClipsController::class, 'update']); + Route::get('/changeStatus', [ManageShortClipsController::class, 'changeStatus']); + + + //*******************************************************manage_shorts_clips end******************************************************** + + //*******************************************************direct_users******************************************************** + + Route::get('/direct_users', [DirectUserController::class, 'users'])->name('direct_users'); +// Route::get('/view_manage_direct_users', [ManageDirectUserController::class, 'index'])->name('view_manage_direct_users'); +// Route::get('/edit_manage_direct_users/{id}', [ManageDirectUserController::class, 'edit_user'])->name('edit_manage_direct_users'); +// Route::delete('/delete_manage_direct_users/{id}', [ManageDirectUserController::class, 'destroy_user']); +// Route::post('/import-csv', 'ImportController@import')->name('import.csv'); + Route::post('/import-csv', [DirectUserController::class, 'import'])->name('import.csv'); + ////*******************************************************direct_users end******************************************************** +// +// //*******************************************************manage_direct_users******************************************************** +// + Route::get('/manage_direct_users', [ManageDirectUserController::class, 'view_users'])->name('manage_direct_users'); + Route::get('/view_manage_direct_users', [ManageDirectUserController::class, 'index'])->name('view_manage_direct_users'); + Route::get('/edit_manage_direct_users/{id}', [ManageDirectUserController::class, 'edit_user'])->name('edit_manage_direct_users'); + Route::post('/update_age_height', [ManageDirectUserController::class, 'update_age_height']); + Route::post('/update_sub_plan', [ManageDirectUserController::class, 'updateSubPlan']); + Route::delete('/delete_manage_direct_users/{id}', [ManageDirectUserController::class, 'destroy_user']); +// //*******************************************************manage_direct_users end******************************************************** +// + //*******************************************************manage_company_users******************************************************** + Route::get('/add_company', [ManageCompanyUserController::class, 'create_add_company'])->name('add_company'); + Route::get('/add_company_user', [ManageCompanyUserController::class, 'create_company_user'])->name('add_company_user'); + Route::get('/manage_company_users', [ManageCompanyUserController::class, 'create'])->name('manage_company_users'); + Route::get('/view_manage_company_users', [ManageCompanyUserController::class, 'index'])->name('view_manage_company_users'); + Route::get('/view_user_profile_tree', [ManageCompanyUserController::class, 'index_user_profile_three'])->name('view_user_profile_tree'); + //*******************************************************manage_company_users end******************************************************** + + //*******************************************************manage_subsription_plans******************************************************** + Route::get('/manage_subcription_plans', [ManageSubcriptionPlansController::class, 'create'])->name('manage_subcription_plans'); + //*******************************************************manage_subsription_plans end******************************************************** + + //*******************************************************manage_subcription******************************************************** + Route::get('/manage_subcription', [ManageSubcriptionController::class, 'create'])->name('manage_subcription'); + Route::get('/manage_archive_list', [ManageSubcriptionController::class, 'create_archive_list'])->name('manage_archive_list'); + //*******************************************************manage_subcription end******************************************************** + + //*******************************************************manage_diet_plan******************************************************** + Route::get('/manage_diet_plan', [ManageDietPlanController::class, 'create'])->name('manage_diet_plan'); + Route::get('/add_diet_plan', [ManageDietPlanController::class, 'create_diet_plan'])->name('add_diet_plan'); + Route::post('/insert_diet_plan',[ManageDietPlanController::class, 'insert_diet_plan'])->name('insert_diet_plan'); + Route::get('/edit_diet_plan/{id}', [ManageDietPlanController::class, 'edit_diet_plan']); + Route::post('/update_diet_plan',[ManageDietPlanController::class, 'update_diet_plan'])->name('update_diet_plan'); + Route::delete ('/delete_diet_plan/{id}', [ManageDietPlanController::class, 'delete_diet_plan'])->name('delete_diet_plan'); + + //*******************************************************manage_diet_plan end******************************************************** + + //*******************************************************manage_plan******************************************************** + Route::get('/manage_plan', [ManagePlanController::class, 'view_plan'])->name('manage_plan'); + Route::get('/add_plan',[ManagePlanController::class, 'create_plan'])->name('add_plan'); + Route::post('/insert_plan',[ManagePlanController::class, 'insert_plan'])->name('insert_plan'); + Route::get('/edit_plan/{id}', [ManagePlanController::class, 'edit']); + Route::post('/update_plan',[ManagePlanController::class, 'update_plan'])->name('update_plan'); + Route::delete ('/delete_plan/{id}', [ManagePlanController::class, 'delete_plan'])->name('delete_plan'); + + //*******************************************************manage_plan end******************************************************** + + //*******************************************************manage_passed_session******************************************************** + Route::get('/add_past_session/{id}', [ManagePastSessionContoller::class, 'create_past_session'])->name('add_past_session'); + Route::post('/insert_past_session',[ManagePastSessionContoller::class, 'insert_past_session'])->name('insert_past_session'); + Route::get('/past_session',[ManagePastSessionContoller::class, 'index'])->name('past_session'); + Route::get('/edit_session/{id}', [ManageActivitiesController::class, 'edit_past_session']); + Route::post('/update_past_session',[ManageActivitiesController::class, 'update'])->name('update_plan'); + Route::delete ('/delete_past_session/{id}', [ManageActivitiesController::class, 'delete_past_session'])->name('delete_plan'); + Route::get('/past_activity_day/{id}',[ManagePastSessionContoller::class,'past_days_show'])->name('past_activity_day'); + Route::get('/past_schedule/{id}',[ManagePastSessionContoller::class,'past_schedule'])->name('past_schedule'); + ////*******************************************************manage_passed_session ******************************************************** + //*******************************************************manage_activities******************************************************** + + Route::get('/manage_activities', [ManageActivitiesController::class, 'index'])->name('manage_activities'); + Route::get('/add_main_activity', [ManageActivitiesController::class, 'create_main_activity'])->name('add_main_activity'); + Route::post('/insert_main_activity', [ManageActivitiesController::class, 'insert_main_activity'])->name('insert_main_activity'); + Route::get('/edit_main_activity/{id}', [ManageActivitiesController::class, 'edit_main_activity'])->name('edit_main_activity'); + Route::get('/edit_upcoming_activity/{id}', [ManageActivitiesController::class, 'edit_upcoming_main_activity'])->name('edit_upcoming_activity'); + Route::delete('/delete_main_activity/{id}', [ManageActivitiesController::class, 'delete_main_activity'])->name('delete_plan'); + Route::post('/update_main_activity', [ManageActivitiesController::class, 'update_main_activity'])->name('update_main_activity'); + Route::post('/update_upcoming_activity', [ManageActivitiesController::class, 'update_upcoming_main_activity'])->name('update_upcoming_activity'); + Route::get('/summer_sweat/{id}', [ManageActivitiesController::class, 'show_schedule']); + Route::get('/summer_sweat_upcoming/{id}', [ManageActivitiesController::class, 'show_upcoming_schedule']); + + + //*******************************************************summer_sweats****************************************************** +// Route::get('/summer_sweat', [SummerSweatController::class, 'index'])->name('summer_sweat'); + Route::get('/add_summer_sweat/{id}', [SummerSweatController::class, 'add_create'])->name('add_summer_sweat'); + Route::get('/add_upcoming_summer_sweat/{id}', [SummerSweatController::class, 'add_upcoming_create'])->name('add_upcoming_summer_sweat'); + Route::post('/insert_summer_sweat', [SummerSweatController::class, 'insert_summer_sweat'])->name('insert_summer_sweat'); + Route::post('/insert_upcoming_summer_sweat', [SummerSweatController::class, 'insert_upcoming_summer_sweat'])->name('insert_upcoming_summer_sweat'); + Route::get('/edit_summer_sweat/{id}', [SummerSweatController::class, 'edit_summer_sweat'])->name('edit_summer_sweat'); + Route::get('/edit_upcoming_summer_sweat/{id}', [SummerSweatController::class, 'edit_upcoming_summer_sweat'])->name('edit_upcoming_summer_sweat'); + Route::post('/update_summer_sweat', [SummerSweatController::class, 'update_summer_sweat'])->name('update_summer_sweat'); + Route::post('/update_upcoming_summer_sweat', [SummerSweatController::class, 'update_upcoming_summer_sweat'])->name('update_upcoming_summer_sweat'); + Route::delete('/delete_schedule/{id}', [SummerSweatController::class, 'delete_schedule'])->name('delete_schedule'); + //*******************************************************summer_sweats end******************************************************* + //*******************************************************activity_days start******************************************************* + + Route::get('/activity_day/{id}',[ActivityDaysController::class,'show'])->name('activity_day'); + Route::get('/upcomimg_activity_day/{id}',[ActivityDaysController::class,'upcomimg_days_show'])->name('upcomimg_activity_day'); + Route::get('/add_activity_day/{id}',[ActivityDaysController::class,'add'])->name('add_activity_day'); + Route::get('/add_upcoming_activity_day/{id}',[ActivityDaysController::class,'add_upcoming'])->name('add_upcoming_activity_day'); + Route::post('/insert_activity_day_data',[ActivityDaysController::class,'add_data'])->name('insert_activity_day_data'); + Route::post('/insert_upcoming_activity_day_data',[ActivityDaysController::class,'add_upcoming_data'])->name('insert_upcoming_activity_day_data'); + Route::get('/edit_activity_day/{id}', [ActivityDaysController::class, 'edit_activity_day'])->name('edit_activity_day'); + Route::get('/edit_upcoming_activity_day/{id}', [ActivityDaysController::class, 'edit_upcoming_activity_day'])->name('edit_upcoming_activity_day'); + Route::post('/update_activity_day', [ActivityDaysController::class, 'edit_activity_day_data'])->name('update_activity_day'); + Route::post('/edit_upcoming_activity_day', [ActivityDaysController::class, 'edit_upcoming_activity_day_data'])->name('edit_upcoming_activity_day'); + Route::delete('/delete_activity_days/{id}', [ActivityDaysController::class, 'delete_activity_days'])->name('delete_activity_days'); + + + //*******************************************************activity_days end******************************************************* + + + //*******************************************************manage_activities end******************************************************** + + //*******************************************************manage_pre_recorded******************************************************** + Route::get('/manage_pre_recorded', [ManagePreRecordedController::class, 'create'])->name('manage_pre_recorded'); + Route::get('/add_manage_pre_recorded', [ManagePreRecordedController::class, 'create_pre_recorded_video'])->name('add_manage_pre_recorded'); + Route::get('/edit_manage_pre_recorded', [ManagePreRecordedController::class, 'edit_pre_recorded_video'])->name('edit_manage_pre_recorded'); + Route::get('/view_manage_pre_recorded', [ManagePreRecordedController::class, 'view_pre_recorded_video'])->name('view_manage_pre_recorded'); + //*******************************************************manage_activities end******************************************************** + //*******************************************************manage_feedback******************************************************** + Route::get('/manage_feedback', [ManageFeedbackController::class, 'create'])->name('manage_feedback'); + Route::delete('/delete_feedback/{id}', [ManageFeedbackController::class, 'delete_feedback'])->name('delete_feedback'); + //*******************************************************manage_feedback end******************************************************** + + //*******************************************************user_overview******************************************************** + Route::get('/user_overview', [UserOverviewController::class, 'create'])->name('user_overview'); + Route::post('/export-data', [UserOverviewController::class, 'export'])->name('exportData'); + //*******************************************************user_overview end******************************************************** + + + //*******************************************************manage_contact******************************************************** + Route::get('/manage_contact/deleted', [ManageContactController::class, 'deleted'])->name('manage_contact_deleted'); + Route::get('/manage_contact', [ManageContactController::class, 'view_contact'])->name('manage_contact'); + Route::get('/view_contact', [ManageContactController::class, 'view_contact'])->name('view_contact'); + Route::delete('/delete_contact/{id}', [ManageContactController::class, 'delete_contact'])->name('manage_deleted'); + Route::post('/send_manage_contact', [ManageContactController::class, 'sendManageContact'])->name('send_manage_contact'); + Route::get('/export_user', [ManageContactController::class, 'exportUser'])->name('export_user'); + //*******************************************************manage_contact end******************************************************** + + //*******************************************************manage_notification******************************************************** + Route::get('/manage_notification', [ManageNotificationController::class, 'create'])->name('manage_notification'); + Route::post('/send_notification', [ManageNotificationController::class, 'send_notification'])->name('send_notification'); + //*******************************************************manage_notification end******************************************************** + + //*******************************************************manage_settings******************************************************** + Route::get('/manage_settings', [ManageSettingController::class, 'create'])->name('manage_settings'); + //*******************************************************manage_settings end******************************************************** + + //*******************************************************manage_reports******************************************************** + Route::get('/manage_reports', [ManageReportsController::class, 'create'])->name('manage_reports'); + Route::get('/user_reports', [ManageReportsController::class, 'user_report_create'])->name('user_reports'); + Route::get('/activities_report', [ManageReportsController::class, 'activities_report_create'])->name('activities_report'); + Route::get('/transaction_report', [ManageReportsController::class, 'transaction_report_create'])->name('transaction_report'); + //*******************************************************manage_reports end******************************************************** + + //*******************************************************manage_transaction******************************************************** + Route::get('/manage_transactions', [ManageTransactionController::class, 'create'])->name('manage_transactions'); + Route::get('/manage_transactions_archive_list', [ManageTransactionController::class, 'create_manage_transactions_archive_list'])->name('manage_transactions_archive_list'); + //*******************************************************manage_transaction end******************************************************** + + //*******************************************************manage_sub_admin******************************************************** + Route::get('/manage_sub_admin', [ManageSubAdminController::class, 'create'])->name('manage_sub_admin'); + //*******************************************************manage_sub_admin end******************************************************** + + //*******************************************************manage_cms******************************************************** + Route::get('/manage_cms', [ManageCmsController::class, 'create'])->name('manage_cms'); + Route::get('/manage_cms_upload', [ManageCmsController::class, 'manage_cms_upload'])->name('manage_cms_upload'); + + //*******************************************************manage_cms_news_and_article******************************************************** + Route::get('/manage_cms_news_article', [ManageCmsNewsAndArticleController::class, 'create'])->name('manage_cms_news_article'); + Route::get('/add_manage_cms_news_article', [ManageCmsNewsAndArticleController::class, 'add_manage_cms_news_article'])->name('add_manage_cms_news_article'); + Route::get('/edit_manage_cms_news_article/{id}', [ManageCmsNewsAndArticleController::class, 'edit_manage_cms_news_article'])->name('edit_manage_cms_news_article'); + Route::post('/addCategoriesData', [ManageCmsNewsAndArticleController::class, 'addCategoriesData']); + Route::post('/editCategoriesData', [ManageCmsNewsAndArticleController::class, 'editCategoriesData']); + Route::post('/deleteCategoriesData', [ManageCmsNewsAndArticleController::class, 'deleteCategoriesData']); + Route::post('/updatCatStatus', [ManageCmsNewsAndArticleController::class, 'updatCatStatus']); + Route::post('/addArticleData', [ManageCmsNewsAndArticleController::class, 'addArticleData']); + Route::post('/editArticleData', [ManageCmsNewsAndArticleController::class, 'editArticleData']); + Route::post('/updatArticleStatus', [ManageCmsNewsAndArticleController::class, 'updatArticleStatus']); + Route::post('/deleteArticlesData', [ManageCmsNewsAndArticleController::class, 'deleteArticlesData']); + //*******************************************************manage_cms_news_and_article end******************************************************** + // + ////*******************************************************manage_quiz******************************************************** + Route::get('/manage_quiz', [ManageQuizController::class, 'create'])->name('manage_quiz'); + Route::get('/add_quiz', [ManageQuizController::class, 'add_quiz'])->name('add_quiz'); + Route::get('/edit_quiz/{id}', [ManageQuizController::class, 'edit_quiz'])->name('edit_quiz'); + Route::post('/add_quiz_data', [ManageQuizController::class, 'add_quiz_data'])->name('add_quiz_data'); + Route::post('/updateQueStatus', [ManageQuizController::class, 'updateQueStatus'])->name('updateQueStatus'); + Route::post('/updateQueAnsFormData', [ManageQuizController::class, 'updateQueAnsFormData'])->name('updateQueAnsFormData'); + Route::delete('deleteQueAns/{id}', [ManageQuizController::class, 'deleteQueAnsData'])->name('deleteQueAns'); + ///*******************************************************manage_quiz end******************************************************** + + //*******************************************************manage_video ******************************************************** + // Route::get('/manage_video', [ManageVideoController::class, 'create'])->name('manage_video'); + Route::get('/manage_video', [ManageVideoController::class, 'view_manage_video'])->name('manage_video'); + Route::get('/add_manage_video', [ManageVideoController::class, 'add_manage_video'])->name('add_manage_video'); + Route::post('/insert_manage_video', [ManageVideoController::class, 'insert_manage_video'])->name('insert_manage_video'); + Route::get('/edit_manage_video/{id}', [ManageVideoController::class, 'edit_manage_video'])->name('edit_manage_video'); + Route::delete('delete_video/{id}', [ManageVideoController::class, 'delete_manage_video'])->name('delete_manage_video'); + Route::post('/update_mange_video',[ManageVideoController::class, 'update_mange_video']); + Route::get('/change_manage_video_Status', [ManageVideoController::class, 'change_manage_video_Status']); + // Route::get('/change_manage_video_Status', [ManageVideoController::class, 'change_manage_video_Status']); + + //*******************************************************manage_video end******************************************************** + + ////*******************************************************manage_faq ******************************************************** + // Route::get('/manage_faq', [ManageFaqController::class, 'create'])->name('manage_faq'); + + Route::post('/add_faq',[ManageFaqController::class, 'insert_faq'])->name('add_faq'); + Route::get('/view_faq',[ManageFaqController::class, 'view_faq'])->name('view_faq'); + // Route::get('/edit_faq/{id}',[ManageFaqController::class, 'edit_faq'])->name('edit_faq'); + Route::delete('/delete_faq/{id}',[ManageFaqController::class, 'delete_faq'])->name('delete_faq'); + Route::post('/update_faq',[ManageFaqController::class, 'update_faq']); + Route::get('/change_faq_Status', [ManageFaqController::class, 'change_faq_Status']); + + + // manage_faq_category + Route::post('/add_faq_category', [ManageFaqController::class, 'insert_faq_categories'])->name('add_faq_category'); + Route::get('/manage_faq',[ManageFaqController::class,'view_faq_category'])->name('manage_faq'); + Route::delete('/delete_faq_category/{id}',[ManageFaqController::class, 'delete_faq_category'])->name('delete_faq_category'); + // Route::get('/edit_faq_category/{id}',[ManageFaqController::class,'edit_faq_category']); + Route::post('/update_faq_category',[ManageFaqController::class, 'update_faq_category']); + Route::get('/change_faq_catg_Status_', [ManageFaqController::class, 'change_faq_catg_Status_']); + + // manage_faq_category + + ////*******************************************************manage_faq end******************************************************** + + ////*******************************************************manage_Teacher ******************************************************** + Route::get('/manage_teacher', [TeacherController::class, 'index'])->name('manage_teacher'); + Route::get('/add_teacher', [TeacherController::class, 'create'])->name('add_teacher'); + Route::post('/insert_teacher', [TeacherController::class, 'insert'])->name('insert_teacher'); + Route::delete('/delete_teacher/{id}', [TeacherController::class, 'delete_teacher'])->name('delete_teacher'); + Route::get('/edit_teacher/{id}', [TeacherController::class, 'edit_teacher'])->name('edit_teacher'); + Route::post('/update_teacher',[TeacherController::class, 'update_teacher']); + ////*******************************************************manage_Teacher end ******************************************************** + + ////*******************************************************manage_podcast ******************************************************** + Route::get('/manage_podcast', [ManagePodcastController::class, 'create'])->name('manage_podcast'); + Route::get('/add_manage_podcast', [ManagePodcastController::class, 'add_manage_podcast'])->name('add_manage_podcast'); + Route::post('/addPodcastData', [ManagePodcastController::class, 'addData']); + Route::post('/updatePodcastData', [ManagePodcastController::class, 'updateData']); + Route::post('/deletePodcastData', [ManagePodcastController::class, 'deleteData']); + Route::post('/updatePodcastStatus', [ManagePodcastController::class, 'updatePodcastStatus']); + ////*******************************************************manage_podcast end ******************************************************** + + //////******************************************************* about_us ******************************************************** + Route::get('/about_us', [AboutUsController::class, 'view_about_us'])->name('about_us'); + Route::get('/edit_about_us/{id}', [AboutUsController::class, 'edit_about_us'])->name('edit_about_us'); + Route::post('/update_about_us', [AboutUsController::class, 'update_about_us'])->name('update_about_us'); + //////*******************************************************about_us end ******************************************************** + + ////******************************************************* Testimonial ******************************************************** + // Route::get('/testimonial', [TestimonialController::class, 'create'])->name('testimonial'); + Route::get('/view_testimonial', [TestimonialController::class, 'view_testimonial'])->name('testimonial'); + Route::get('/add_testimonial',[TestimonialController::class, 'create_testimonial'])->name('add_testimonial'); + Route::post('/insert_testimonial',[TestimonialController::class, 'insert_testimonial'])->name('insert_testimonial'); + Route::delete('/delete_testimonial/{id}', [TestimonialController::class, 'delete_testimonial'])->name('delete_testimonial'); + Route::get('/edit_testimonial/{id}', [TestimonialController::class, 'edit_testimonial'])->name('edit_testimonial'); + Route::post('/update_testimonial',[TestimonialController::class, 'update_testimonial']); + + //////******************************************************* Testimonial end******************************************************** + + ////////******************************************************* manage_banner******************************************************** + // Route::get('/view_manage_banner', [TestimonialController::class, 'view_manage_banner'])->name('view_manage_banner'); + Route::get('/manage_banner', [ManageBannerController::class, 'create'])->name('manage_banner'); + Route::post('/insert_manage_bannner', [ManageBannerController::class, 'insert_manage_bannner'])->name('insert_manage_bannner'); + + ////////******************************************************* manage_thoughts end******************************************************** + + Route::get('/manage_thoughts', [ManageThoughtsController::class, 'view_manage_thoughts'])->name('manage_thoughts'); + Route::post('/add_thought', [ManageThoughtsController::class, 'insert_thoughts'])->name('add_thought'); + Route::get('/change_manage_thoughts_Status', [ManageThoughtsController::class, 'change_manage_thoughts_Status']); + Route::delete('/delete_thought/{id}',[ManageThoughtsController::class, 'delete_thought'])->name('delete_thought'); + Route::post('/update_thought',[ManageThoughtsController::class, 'update_thought']); + + ////////******************************************************* manage_thoughts end******************************************************** + + + //*******************************************************manage_cms end******************************************************** +}); + +//logout +Route::get('/admin_logout', function () { + Auth::guard('admin')->logout(); + // session()->flush(); + return redirect('/admin/sign_in'); + }); +}); + Route::get('/register',[RegisterController::class,'create']); + Route::post('/add_users',[RegisterController::class,'insert_user']); + Route::get('/subscription_view',[SubcriptionController::class,'index']); + Route::get('/subscription_create_beginners',[SubcriptionController::class,'create'])->name('subscription_create_beginners'); + Route::get('/subscription_create_intermidate',[SubcriptionController::class,'create_Intermidate'])->name('subscription_create_intermidate'); + Route::get('/subscription_create_advance',[SubcriptionController::class,'create_advance'])->name('subscription_create_advance'); + Route::get('/subscription_create_advance',[SubcriptionController::class,'create_advance'])->name('subscription_create_advance'); + Route::get('/show_activities/{id}', [SubcriptionController::class, 'show_activities']); + Route::get('/show_single_activity/{id}', [SubcriptionController::class, 'show_single_activity']); + + + Route::get('/payment',[PaymentController::class,'getChecksum']); + Route::get('/getChecksum',[PaymentController::class,'getChecksum']); + Route::get('/payment/response', [PaymentController::class, 'response'])->name('payment.response'); + + // website Routes + Route::get('/',[HomeController::class,'index']); + Route::get('/Home',[HomeController::class,'index'])->name('Home'); + Route::get('/our_services',[OurServicesController::class,'index'])->name('our_services'); + Route::get('/download',[DownloadController::class,'index'])->name('download'); + Route::get('/contact_us',[ContactUsController::class,'index'])->name('contact_us'); + Route::get('/transform_beyond',[TransformBeyondController::class,'index'])->name('transform_beyond'); + Route::post('/login',[WebsiteLoginController::class,'login']); + Route::post('/submit_contact_us',[ContactUsController::class,'send_contact_us']); + + + Route::get('/transform_beyond_beginner',[OurServicesController::class,'transform_beyond_beginner'])->name('transform_beyond_beginner'); + Route::get('/gsf_exclusive',[OurServicesController::class,'gsf_exclusive'])->name('gsf_exclusive'); + Route::get('/get_set_eat',[OurServicesController::class,'get_set_eat'])->name('get_set_eat'); + + + Route::middleware('website')->group(function () { + + Route::get('/your_activity',[YourActivityController::class,'index'])->name('your_activity'); +}); + +Route::get("/privacy_policy",function(){ + return view('website.pages.privacy_policy'); +}); + +Route::get('/logout', function () { + Auth::logout(); + // session()->flush(); + return redirect('/Home'); + }); diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php new file mode 100644 index 0000000..547152f --- /dev/null +++ b/tests/CreatesApplication.php @@ -0,0 +1,22 @@ +make(Kernel::class)->bootstrap(); + + return $app; + } +} diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php new file mode 100644 index 0000000..1eafba6 --- /dev/null +++ b/tests/Feature/ExampleTest.php @@ -0,0 +1,21 @@ +get('/'); + + $response->assertStatus(200); + } +} diff --git a/tests/TestCase.php b/tests/TestCase.php new file mode 100644 index 0000000..2932d4a --- /dev/null +++ b/tests/TestCase.php @@ -0,0 +1,10 @@ +assertTrue(true); + } +} diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..dbbf333 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,14 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; + +export default defineConfig({ + plugins: [ + laravel({ + input: [ + 'resources/sass/app.scss', + 'resources/js/app.js', + ], + refresh: true, + }), + ], +});