├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── CategoryController.php │ │ ├── CommentController.php │ │ ├── Controller.php │ │ ├── CourseController.php │ │ ├── EventController.php │ │ ├── FrontEnd │ │ │ ├── AboutUsController.php │ │ │ ├── ContactUsController.php │ │ │ ├── CourseController.php │ │ │ ├── FrontEndController.php │ │ │ ├── FrontEndEventController.php │ │ │ ├── TeacherController.php │ │ │ └── WebsiteController.php │ │ ├── HomeController.php │ │ ├── InstructorController.php │ │ ├── LessonController.php │ │ ├── NewsController.php │ │ ├── PaymentController.php │ │ ├── QuizController.php │ │ ├── ReviewController.php │ │ ├── RoleController.php │ │ ├── SettingController.php │ │ ├── SliderController.php │ │ ├── StudentController.php │ │ └── UserController.php │ ├── Kernel.php │ ├── Livewire │ │ ├── AddToCartCounter.php │ │ ├── Cart.php │ │ ├── GlobalLogin.php │ │ ├── Login.php │ │ ├── Payment.php │ │ └── Register.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── Role │ │ ├── StoreRoleRequest.php │ │ └── UpdateRoleRequest.php │ │ ├── StoreCategoryRequest.php │ │ ├── StoreCommentRequest.php │ │ ├── StoreCourseRequest.php │ │ ├── StoreEventRequest.php │ │ ├── StoreInstructorRequest.php │ │ ├── StoreLessonRequest.php │ │ ├── StoreNewsRequest.php │ │ ├── StoreQuizRequest.php │ │ ├── StoreReviewRequest.php │ │ ├── StoreSliderRequest.php │ │ ├── StoreStudentRequest.php │ │ ├── StoreUserRequest.php │ │ ├── UpdateCategoryRequest.php │ │ ├── UpdateCommentRequest.php │ │ ├── UpdateCourseRequest.php │ │ ├── UpdateEventRequest.php │ │ ├── UpdateInstructorRequest.php │ │ ├── UpdateLessonRequest.php │ │ ├── UpdateNewsRequest.php │ │ ├── UpdateQuizRequest.php │ │ ├── UpdateReviewRequest.php │ │ ├── UpdateSliderRequest.php │ │ ├── UpdateStudentRequest.php │ │ └── UpdateUserRequest.php ├── Models │ ├── AddToCart.php │ ├── Category.php │ ├── Comment.php │ ├── Course.php │ ├── CourseOrder.php │ ├── CourseUser.php │ ├── Event.php │ ├── Instructor.php │ ├── Lesson.php │ ├── Message.php │ ├── News.php │ ├── Order.php │ ├── Permission.php │ ├── Quiz.php │ ├── Review.php │ ├── Role.php │ ├── Setting.php │ ├── Slider.php │ ├── Student.php │ ├── User.php │ └── User_old.php ├── Policies │ ├── CategoryPolicy.php │ ├── CommentPolicy.php │ ├── EventPolicy.php │ ├── InstructorPolicy.php │ ├── NewsPolicy.php │ ├── QuizPolicy.php │ ├── ReviewPolicy.php │ ├── SliderPolicy.php │ └── StudentPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── RouteServiceProvider.php │ └── SettingsServiceProvider.php ├── Repositories │ ├── Contracts │ │ ├── PermissionRepositoryInterface.php │ │ ├── RoleRepositoryInterface.php │ │ └── UserRepositoryInterface.php │ ├── EloquentPermissionRepository.php │ ├── EloquentRoleRepository.php │ └── EloquentUserRepository.php ├── Traits │ ├── Authorizable.php │ └── Slugable.php └── jambasangsang │ ├── constant.php │ └── helper.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── flash.php ├── hashing.php ├── laraberg.php ├── logging.php ├── mail.php ├── paypal.php ├── permission.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── CategoryFactory.php │ ├── CommentFactory.php │ ├── CourseFactory.php │ ├── EventFactory.php │ ├── InstructorFactory.php │ ├── NewsFactory.php │ ├── QuizFactory.php │ ├── ReviewFactory.php │ ├── SliderFactory.php │ ├── StudentFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_07_28_234601_create_messages_table.php │ ├── 2019_07_28_234602_create_categories_table.php │ ├── 2019_08_02_190658_create_courses_table.php │ ├── 2019_08_05_194800_create_lessons_table.php │ ├── 2019_08_05_195916_create_resources_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2020_04_28_161032_create_course_user_table.php │ ├── 2020_04_29_003622_create_settings_table.php │ ├── 2022_06_14_075950_create_permission_tables.php │ ├── 2022_06_14_092735_create_quizzes_table.php │ ├── 2022_06_14_093459_create_reviews_table.php │ ├── 2022_06_14_093721_create_comments_table.php │ ├── 2022_06_14_115957_create_events_table.php │ ├── 2022_06_15_123100_create_students_table.php │ ├── 2022_06_15_140436_create_instructors_table.php │ ├── 2022_06_16_121147_create_news_table.php │ ├── 2022_06_16_132717_create_sliders_table.php │ ├── 2022_07_01_122936_create_add_to_carts_table.php │ ├── 2022_07_01_123030_create_orders_table.php │ └── 2022_07_01_123131_create_course_orders_table.php └── seeders │ ├── CategorySeeder.php │ ├── CommentSeeder.php │ ├── CourseSeeder.php │ ├── DatabaseSeeder.php │ ├── DatabaseSeeder_old.php │ ├── EventSeeder.php │ ├── InstructorSeeder.php │ ├── NewsSeeder.php │ ├── QuizSeeder.php │ ├── ReviewSeeder.php │ ├── RoleAndPermissionSeeder.php │ ├── SettingsTableSeeder.php │ ├── SliderSeeder.php │ └── StudentSeeder.php ├── lang └── en │ ├── auth.php │ ├── course │ ├── actions.php │ └── fields.php │ ├── general.php │ ├── lesson │ ├── actions.php │ ├── fields.php │ └── lessons.php │ ├── menus.php │ ├── pagination.php │ ├── passwords.php │ ├── roles.php │ └── validation.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── index.php ├── jambasangsang │ ├── assets │ │ ├── categories │ │ │ └── images │ │ │ │ ├── 1655378540_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (23).png │ │ │ │ ├── 1655378599_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (23).png │ │ │ │ ├── 1655655307_ctg-1.jpg │ │ │ │ ├── 1655655317_ctg-5.jpg │ │ │ │ ├── 1655655325_ctg-6.jpg │ │ │ │ ├── 1655655406_ctg-2.jpg │ │ │ │ ├── 1655655420_ctg-1.jpg │ │ │ │ └── 1655660183_ctg-3.jpg │ │ ├── courses │ │ │ └── images │ │ │ │ ├── 1655361707_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (27).png │ │ │ │ ├── 1655362510_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (25).png │ │ │ │ ├── 1655370400_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (7).png │ │ │ │ ├── 1655554027_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023.png │ │ │ │ ├── 1655554118_undraw_static_assets_rpm6.png │ │ │ │ ├── 1655655033_cu-2.jpg │ │ │ │ ├── 1655655158_cu-4.jpg │ │ │ │ ├── 1655655180_cu-3.jpg │ │ │ │ ├── 1655655224_cu-1.jpg │ │ │ │ └── 1655655250_cu-5.jpg │ │ ├── events │ │ │ └── images │ │ │ │ ├── 1655582162_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (22).png │ │ │ │ ├── 1655583378_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (25).png │ │ │ │ ├── 1655583398_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (13).png │ │ │ │ ├── 1655583490_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (2).png │ │ │ │ ├── 1655584830_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (25).png │ │ │ │ └── 1655657615_singhateh-removebg-preview.png │ │ ├── instructors │ │ │ └── images │ │ │ │ └── 1655657615_singhateh-removebg-preview.png │ │ ├── lessons │ │ │ └── images │ │ │ │ ├── 1655363782_manchester university scholarships award.png │ │ │ │ ├── 1655364835_180307_ReachOut_Orange_032_sRGB.jpg │ │ │ │ ├── 1655372802_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (9).png │ │ │ │ ├── 1655536396_laravel-logo.png │ │ │ │ ├── 1655554590_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (25).png │ │ │ │ ├── 1655659779_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (27).png │ │ │ │ ├── 1655659976_lms-logo.png │ │ │ │ ├── 1655660024_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (19).png │ │ │ │ ├── 1655660087_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (27).png │ │ │ │ └── 1655660125_lms-logo.png │ │ ├── news │ │ │ └── images │ │ │ │ ├── 1655585498_Purple Pink Scholarship Instagram Post.png │ │ │ │ ├── 1655586506_Light Education Instagram Post.png │ │ │ │ ├── 1655655482_ns-1.jpg │ │ │ │ ├── 1655655496_n-1.jpg │ │ │ │ ├── 1655655531_ns-2.jpg │ │ │ │ ├── 1655655545_ns-3.jpg │ │ │ │ └── 1655655571_n-1.jpg │ │ ├── sliders │ │ │ ├── 1655656697_s-2.jpg │ │ │ ├── 1655656753_s-1.jpg │ │ │ └── 1655656780_s-3.jpg │ │ ├── system │ │ │ └── logos │ │ │ │ ├── 1655649245_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (22).png │ │ │ │ ├── 1655650373_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (3).png │ │ │ │ ├── 1655650467_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (3).png │ │ │ │ ├── 1655650591_Scholarship Search Engines.jpg │ │ │ │ ├── 1655650729_180307_ReachOut_Orange_032_sRGB.jpg │ │ │ │ ├── 1655650779_Purple Pink Scholarship Instagram Post.png │ │ │ │ └── 1655657193_lms-logo.png │ │ └── users │ │ │ └── images │ │ │ ├── 1655404066_Programming with Singhateh - School Management System Upgraded Version Full Project [ Administrator, Teacher , Accountant ] PHP [yKRlmHk2LNc - 853x480 - 19m44s].png │ │ │ ├── 1655404095_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (6).png │ │ │ ├── 1655404164_Purple Pink Scholarship Instagram Post.png │ │ │ ├── 1655404190_Orange Scholarship Instagram Post.png │ │ │ ├── 1655404237_Purple Pink Scholarship Instagram Post.png │ │ │ ├── 1655404262_Blue Navy Scholarship Instagram Post (3).png │ │ │ ├── 1655404572_Blue Navy Scholarship Instagram Post (3).png │ │ │ ├── 1655558794_undraw_laravel_and_vue_59tp.png │ │ │ ├── 1655564748_Hans-Peter Wild Talent Scholarships for International Students 2022 - 2023 (6).png │ │ │ ├── 1655564767_Purple Pink Scholarship Instagram Post.png │ │ │ ├── 1655564790_livewire-logo-removebg-preview.png │ │ │ ├── 1655657615_singhateh-removebg-preview.png │ │ │ └── 1655658647_singhateh.jpg │ ├── backend │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── style.css │ │ │ │ └── style.css.map │ │ │ ├── js │ │ │ │ ├── dashboard.js │ │ │ │ ├── index.html │ │ │ │ ├── init-scripts │ │ │ │ │ ├── chart-js │ │ │ │ │ │ └── chartjs-init.js │ │ │ │ │ ├── data-table │ │ │ │ │ │ └── datatables-init.js │ │ │ │ │ ├── flot-chart │ │ │ │ │ │ ├── curvedLines.js │ │ │ │ │ │ ├── flot-chart-init.js │ │ │ │ │ │ └── flot-tooltip │ │ │ │ │ │ │ └── jquery.flot.tooltip.min.js │ │ │ │ │ ├── gmap │ │ │ │ │ │ └── gmap.init.js │ │ │ │ │ ├── peitychart │ │ │ │ │ │ └── peitychart.init.js │ │ │ │ │ └── vector-map │ │ │ │ │ │ └── vector.init.js │ │ │ │ ├── main.js │ │ │ │ └── widgets.js │ │ │ └── scss │ │ │ │ ├── _gauge.scss │ │ │ │ ├── _socials.scss │ │ │ │ ├── _switches.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── _widgets.scss │ │ │ │ └── style.scss │ │ ├── images │ │ │ ├── .gitignore │ │ │ ├── admin.jpg │ │ │ ├── avatar │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ └── 6.jpg │ │ │ ├── logo.png │ │ │ ├── logo2.png │ │ │ ├── placeholder.png │ │ │ ├── twitter_corner_black.png │ │ │ └── twitter_corner_blue.png │ │ └── vendors │ │ │ ├── animate.css │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ ├── animate-config.json │ │ │ ├── animate.css │ │ │ ├── animate.min.css │ │ │ ├── bower.json │ │ │ ├── gulpfile.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── source │ │ │ │ ├── _base.css │ │ │ │ ├── attention_seekers │ │ │ │ ├── bounce.css │ │ │ │ ├── flash.css │ │ │ │ ├── headShake.css │ │ │ │ ├── heartBeat.css │ │ │ │ ├── jello.css │ │ │ │ ├── pulse.css │ │ │ │ ├── rubberBand.css │ │ │ │ ├── shake.css │ │ │ │ ├── swing.css │ │ │ │ ├── tada.css │ │ │ │ └── wobble.css │ │ │ │ ├── bouncing_entrances │ │ │ │ ├── bounceIn.css │ │ │ │ ├── bounceInDown.css │ │ │ │ ├── bounceInLeft.css │ │ │ │ ├── bounceInRight.css │ │ │ │ └── bounceInUp.css │ │ │ │ ├── bouncing_exits │ │ │ │ ├── bounceOut.css │ │ │ │ ├── bounceOutDown.css │ │ │ │ ├── bounceOutLeft.css │ │ │ │ ├── bounceOutRight.css │ │ │ │ └── bounceOutUp.css │ │ │ │ ├── fading_entrances │ │ │ │ ├── fadeIn.css │ │ │ │ ├── fadeInDown.css │ │ │ │ ├── fadeInDownBig.css │ │ │ │ ├── fadeInLeft.css │ │ │ │ ├── fadeInLeftBig.css │ │ │ │ ├── fadeInRight.css │ │ │ │ ├── fadeInRightBig.css │ │ │ │ ├── fadeInUp.css │ │ │ │ └── fadeInUpBig.css │ │ │ │ ├── fading_exits │ │ │ │ ├── fadeOut.css │ │ │ │ ├── fadeOutDown.css │ │ │ │ ├── fadeOutDownBig.css │ │ │ │ ├── fadeOutLeft.css │ │ │ │ ├── fadeOutLeftBig.css │ │ │ │ ├── fadeOutRight.css │ │ │ │ ├── fadeOutRightBig.css │ │ │ │ ├── fadeOutUp.css │ │ │ │ └── fadeOutUpBig.css │ │ │ │ ├── flippers │ │ │ │ ├── flip.css │ │ │ │ ├── flipInX.css │ │ │ │ ├── flipInY.css │ │ │ │ ├── flipOutX.css │ │ │ │ └── flipOutY.css │ │ │ │ ├── lightspeed │ │ │ │ ├── lightSpeedIn.css │ │ │ │ └── lightSpeedOut.css │ │ │ │ ├── rotating_entrances │ │ │ │ ├── rotateIn.css │ │ │ │ ├── rotateInDownLeft.css │ │ │ │ ├── rotateInDownRight.css │ │ │ │ ├── rotateInUpLeft.css │ │ │ │ └── rotateInUpRight.css │ │ │ │ ├── rotating_exits │ │ │ │ ├── rotateOut.css │ │ │ │ ├── rotateOutDownLeft.css │ │ │ │ ├── rotateOutDownRight.css │ │ │ │ ├── rotateOutUpLeft.css │ │ │ │ └── rotateOutUpRight.css │ │ │ │ ├── sliding_entrances │ │ │ │ ├── slideInDown.css │ │ │ │ ├── slideInLeft.css │ │ │ │ ├── slideInRight.css │ │ │ │ └── slideInUp.css │ │ │ │ ├── sliding_exits │ │ │ │ ├── slideOutDown.css │ │ │ │ ├── slideOutLeft.css │ │ │ │ ├── slideOutRight.css │ │ │ │ └── slideOutUp.css │ │ │ │ ├── specials │ │ │ │ ├── hinge.css │ │ │ │ ├── jackInTheBox.css │ │ │ │ ├── rollIn.css │ │ │ │ └── rollOut.css │ │ │ │ ├── zooming_entrances │ │ │ │ ├── zoomIn.css │ │ │ │ ├── zoomInDown.css │ │ │ │ ├── zoomInLeft.css │ │ │ │ ├── zoomInRight.css │ │ │ │ └── zoomInUp.css │ │ │ │ └── zooming_exits │ │ │ │ ├── zoomOut.css │ │ │ │ ├── zoomOutDown.css │ │ │ │ ├── zoomOutLeft.css │ │ │ │ ├── zoomOutRight.css │ │ │ │ └── zoomOutUp.css │ │ │ ├── bootstrap │ │ │ ├── .babelrc.js │ │ │ ├── .bower.json │ │ │ ├── .browserslistrc │ │ │ ├── .editorconfig │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc.json │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── bug.md │ │ │ │ │ ├── bug_report.md │ │ │ │ │ ├── feature.md │ │ │ │ │ └── feature_request.md │ │ │ │ └── SUPPORT.md │ │ │ ├── .gitignore │ │ │ ├── .stylelintignore │ │ │ ├── .stylelintrc │ │ │ ├── .travis.yml │ │ │ ├── CNAME │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── _config.yml │ │ │ ├── build │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── .htmllintrc │ │ │ │ ├── build-plugins.js │ │ │ │ ├── change-version.js │ │ │ │ ├── gcp-key.json.enc │ │ │ │ ├── generate-sri.js │ │ │ │ ├── lint-vars.js │ │ │ │ ├── postcss.config.js │ │ │ │ ├── rollup.config.js │ │ │ │ ├── sauce_browsers.json │ │ │ │ ├── saucelabs-unit-test.js │ │ │ │ ├── ship.sh │ │ │ │ ├── vnu-jar.js │ │ │ │ ├── workbox.config.json │ │ │ │ └── workbox.js │ │ │ ├── composer.json │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── js │ │ │ │ ├── dist │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── alert.js.map │ │ │ │ │ ├── button.js │ │ │ │ │ ├── button.js.map │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── carousel.js.map │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── collapse.js.map │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── dropdown.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── modal.js.map │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── popover.js.map │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── scrollspy.js.map │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tab.js.map │ │ │ │ │ ├── tooltip.js │ │ │ │ │ ├── tooltip.js.map │ │ │ │ │ ├── util.js │ │ │ │ │ └── util.js.map │ │ │ │ ├── src │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── util.js │ │ │ │ └── tests │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.html │ │ │ │ │ ├── karma-bundle.conf.js │ │ │ │ │ ├── karma.conf.js │ │ │ │ │ ├── unit │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── util.js │ │ │ │ │ └── visual │ │ │ │ │ ├── alert.html │ │ │ │ │ ├── button.html │ │ │ │ │ ├── carousel.html │ │ │ │ │ ├── collapse.html │ │ │ │ │ ├── dropdown.html │ │ │ │ │ ├── modal.html │ │ │ │ │ ├── popover.html │ │ │ │ │ ├── scrollspy.html │ │ │ │ │ ├── tab.html │ │ │ │ │ └── tooltip.html │ │ │ ├── nuget │ │ │ │ ├── MyGet.ps1 │ │ │ │ ├── bootstrap.nuspec │ │ │ │ └── bootstrap.sass.nuspec │ │ │ ├── package-lock.json │ │ │ ├── package.js │ │ │ ├── package.json │ │ │ ├── sache.json │ │ │ ├── scss │ │ │ │ ├── _alert.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _button-group.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _custom-forms.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _images.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _reboot.scss │ │ │ │ ├── _root.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _transitions.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ ├── bootstrap.scss │ │ │ │ ├── mixins │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ ├── _box-shadow.scss │ │ │ │ │ ├── _breakpoints.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _caret.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _float.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ ├── _grid-framework.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _hover.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _lists.scss │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ ├── _resize.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── _size.scss │ │ │ │ │ ├── _table-row.scss │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ ├── _text-hide.scss │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ ├── _transition.scss │ │ │ │ │ └── _visibility.scss │ │ │ │ └── utilities │ │ │ │ │ ├── _align.scss │ │ │ │ │ ├── _background.scss │ │ │ │ │ ├── _borders.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _display.scss │ │ │ │ │ ├── _embed.scss │ │ │ │ │ ├── _flex.scss │ │ │ │ │ ├── _float.scss │ │ │ │ │ ├── _position.scss │ │ │ │ │ ├── _screenreaders.scss │ │ │ │ │ ├── _shadows.scss │ │ │ │ │ ├── _sizing.scss │ │ │ │ │ ├── _spacing.scss │ │ │ │ │ ├── _text.scss │ │ │ │ │ └── _visibility.scss │ │ │ └── site │ │ │ │ ├── _data │ │ │ │ ├── breakpoints.yml │ │ │ │ ├── browser-bugs.yml │ │ │ │ ├── browser-features.yml │ │ │ │ ├── colors.yml │ │ │ │ ├── examples.yml │ │ │ │ ├── grays.yml │ │ │ │ ├── nav.yml │ │ │ │ ├── theme-colors.yml │ │ │ │ └── translations.yml │ │ │ │ ├── _includes │ │ │ │ ├── ads.html │ │ │ │ ├── bugify.html │ │ │ │ ├── callout-danger-async-methods.md │ │ │ │ ├── callout-info-mediaqueries-breakpoints.md │ │ │ │ ├── callout-warning-color-assistive-technologies.md │ │ │ │ ├── callout.html │ │ │ │ ├── docs-navbar.html │ │ │ │ ├── docs-sidebar.html │ │ │ │ ├── example.html │ │ │ │ ├── favicons.html │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── icons │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── import.svg │ │ │ │ │ ├── lightning.svg │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ └── twitter.svg │ │ │ │ ├── scripts.html │ │ │ │ ├── skippy.html │ │ │ │ └── social.html │ │ │ │ ├── _layouts │ │ │ │ ├── default.html │ │ │ │ ├── docs.html │ │ │ │ ├── examples.html │ │ │ │ ├── home.html │ │ │ │ ├── redirect.html │ │ │ │ └── simple.html │ │ │ │ ├── docs │ │ │ │ └── 4.1 │ │ │ │ │ ├── about │ │ │ │ │ ├── brand.md │ │ │ │ │ ├── license.md │ │ │ │ │ ├── overview.md │ │ │ │ │ └── translations.md │ │ │ │ │ ├── assets │ │ │ │ │ ├── brand │ │ │ │ │ │ ├── bootstrap-outline.svg │ │ │ │ │ │ ├── bootstrap-punchout.svg │ │ │ │ │ │ ├── bootstrap-social-logo.png │ │ │ │ │ │ ├── bootstrap-social.png │ │ │ │ │ │ └── bootstrap-solid.svg │ │ │ │ │ ├── css │ │ │ │ │ │ ├── docs.min.css │ │ │ │ │ │ └── docs.min.css.map │ │ │ │ │ ├── img │ │ │ │ │ │ ├── bootstrap-stack.png │ │ │ │ │ │ ├── bootstrap-themes.png │ │ │ │ │ │ └── favicons │ │ │ │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ │ │ ├── browserconfig.xml │ │ │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ │ │ ├── manifest.json │ │ │ │ │ │ │ ├── mstile-144x144.png │ │ │ │ │ │ │ ├── mstile-150x150.png │ │ │ │ │ │ │ ├── mstile-310x150.png │ │ │ │ │ │ │ ├── mstile-310x310.png │ │ │ │ │ │ │ ├── mstile-70x70.png │ │ │ │ │ │ │ └── safari-pinned-tab.svg │ │ │ │ │ ├── js │ │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ │ ├── docs.min.js │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ │ ├── ie-emulation-modes-warning.js │ │ │ │ │ │ │ ├── pwa.js │ │ │ │ │ │ │ └── search.js │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── anchor.min.js │ │ │ │ │ │ │ ├── clipboard.min.js │ │ │ │ │ │ │ ├── holder.min.js │ │ │ │ │ │ │ ├── jquery-slim.min.js │ │ │ │ │ │ │ └── popper.min.js │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _ads.scss │ │ │ │ │ │ ├── _algolia.scss │ │ │ │ │ │ ├── _anchor.scss │ │ │ │ │ │ ├── _brand.scss │ │ │ │ │ │ ├── _browser-bugs.scss │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ ├── _callouts.scss │ │ │ │ │ │ ├── _clipboard-js.scss │ │ │ │ │ │ ├── _colors.scss │ │ │ │ │ │ ├── _component-examples.scss │ │ │ │ │ │ ├── _content.scss │ │ │ │ │ │ ├── _examples.scss │ │ │ │ │ │ ├── _footer.scss │ │ │ │ │ │ ├── _masthead.scss │ │ │ │ │ │ ├── _nav.scss │ │ │ │ │ │ ├── _sidebar.scss │ │ │ │ │ │ ├── _skiplink.scss │ │ │ │ │ │ ├── _syntax.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── docs.scss │ │ │ │ │ ├── browser-bugs.md │ │ │ │ │ ├── components │ │ │ │ │ ├── alerts.md │ │ │ │ │ ├── badge.md │ │ │ │ │ ├── breadcrumb.md │ │ │ │ │ ├── button-group.md │ │ │ │ │ ├── buttons.md │ │ │ │ │ ├── card.md │ │ │ │ │ ├── carousel.md │ │ │ │ │ ├── collapse.md │ │ │ │ │ ├── dropdowns.md │ │ │ │ │ ├── forms.md │ │ │ │ │ ├── input-group.md │ │ │ │ │ ├── jumbotron.md │ │ │ │ │ ├── list-group.md │ │ │ │ │ ├── modal.md │ │ │ │ │ ├── navbar.md │ │ │ │ │ ├── navs.md │ │ │ │ │ ├── pagination.md │ │ │ │ │ ├── popovers.md │ │ │ │ │ ├── progress.md │ │ │ │ │ ├── scrollspy.md │ │ │ │ │ └── tooltips.md │ │ │ │ │ ├── content │ │ │ │ │ ├── code.md │ │ │ │ │ ├── figures.md │ │ │ │ │ ├── images.md │ │ │ │ │ ├── reboot.md │ │ │ │ │ ├── tables.md │ │ │ │ │ └── typography.md │ │ │ │ │ ├── examples │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── .stylelintrc │ │ │ │ │ ├── album │ │ │ │ │ │ ├── album.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── blog │ │ │ │ │ │ ├── blog.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── carousel │ │ │ │ │ │ ├── carousel.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── checkout │ │ │ │ │ │ ├── form-validation.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cover │ │ │ │ │ │ ├── cover.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── dashboard.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── floating-labels │ │ │ │ │ │ ├── floating-labels.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── grid.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jumbotron │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jumbotron.css │ │ │ │ │ ├── navbar-bottom │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── navbar-fixed │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── navbar-top-fixed.css │ │ │ │ │ ├── navbar-static │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── navbar-top.css │ │ │ │ │ ├── navbars │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── navbar.css │ │ │ │ │ ├── offcanvas │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── offcanvas.css │ │ │ │ │ │ └── offcanvas.js │ │ │ │ │ ├── pricing │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pricing.css │ │ │ │ │ ├── product │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── product.css │ │ │ │ │ ├── screenshots │ │ │ │ │ │ ├── album.png │ │ │ │ │ │ ├── blog.png │ │ │ │ │ │ ├── carousel.png │ │ │ │ │ │ ├── checkout.png │ │ │ │ │ │ ├── cover.png │ │ │ │ │ │ ├── dashboard.png │ │ │ │ │ │ ├── floating-labels.png │ │ │ │ │ │ ├── grid.png │ │ │ │ │ │ ├── jumbotron.png │ │ │ │ │ │ ├── navbar-bottom.png │ │ │ │ │ │ ├── navbar-fixed.png │ │ │ │ │ │ ├── navbar-static.png │ │ │ │ │ │ ├── navbars.png │ │ │ │ │ │ ├── offcanvas.png │ │ │ │ │ │ ├── pricing.png │ │ │ │ │ │ ├── product.png │ │ │ │ │ │ ├── sign-in.png │ │ │ │ │ │ ├── starter-template.png │ │ │ │ │ │ ├── sticky-footer-navbar.png │ │ │ │ │ │ └── sticky-footer.png │ │ │ │ │ ├── sign-in │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── signin.css │ │ │ │ │ ├── starter-template │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── starter-template.css │ │ │ │ │ ├── sticky-footer-navbar │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sticky-footer-navbar.css │ │ │ │ │ ├── sticky-footer │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sticky-footer.css │ │ │ │ │ └── tooltip-viewport │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tooltip-viewport.css │ │ │ │ │ │ └── tooltip-viewport.js │ │ │ │ │ ├── extend │ │ │ │ │ ├── approach.md │ │ │ │ │ ├── icons.md │ │ │ │ │ └── index.md │ │ │ │ │ ├── getting-started │ │ │ │ │ ├── accessibility.md │ │ │ │ │ ├── best-practices.md │ │ │ │ │ ├── browsers-devices.md │ │ │ │ │ ├── build-tools.md │ │ │ │ │ ├── contents.md │ │ │ │ │ ├── download.md │ │ │ │ │ ├── introduction.md │ │ │ │ │ ├── javascript.md │ │ │ │ │ ├── theming.md │ │ │ │ │ └── webpack.md │ │ │ │ │ ├── layout │ │ │ │ │ ├── grid.md │ │ │ │ │ ├── media-object.md │ │ │ │ │ ├── overview.md │ │ │ │ │ └── utilities-for-layout.md │ │ │ │ │ ├── migration.md │ │ │ │ │ └── utilities │ │ │ │ │ ├── borders.md │ │ │ │ │ ├── clearfix.md │ │ │ │ │ ├── close-icon.md │ │ │ │ │ ├── colors.md │ │ │ │ │ ├── display.md │ │ │ │ │ ├── embed.md │ │ │ │ │ ├── flex.md │ │ │ │ │ ├── float.md │ │ │ │ │ ├── image-replacement.md │ │ │ │ │ ├── position.md │ │ │ │ │ ├── screenreaders.md │ │ │ │ │ ├── shadows.md │ │ │ │ │ ├── sizing.md │ │ │ │ │ ├── spacing.md │ │ │ │ │ ├── text.md │ │ │ │ │ ├── vertical-align.md │ │ │ │ │ └── visibility.md │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── robots.txt │ │ │ │ └── sw.js │ │ │ ├── chart.js │ │ │ ├── .bower.json │ │ │ ├── .editorconfig │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc.yml │ │ │ ├── .htmllintrc │ │ │ ├── LICENSE.md │ │ │ ├── MAINTAINING.md │ │ │ ├── README.md │ │ │ ├── book.json │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── dist │ │ │ │ ├── Chart.bundle.js │ │ │ │ ├── Chart.bundle.min.js │ │ │ │ ├── Chart.js │ │ │ │ └── Chart.min.js │ │ │ ├── docs │ │ │ │ ├── README.md │ │ │ │ ├── SUMMARY.md │ │ │ │ ├── axes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cartesian │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── category.md │ │ │ │ │ │ ├── linear.md │ │ │ │ │ │ ├── logarithmic.md │ │ │ │ │ │ └── time.md │ │ │ │ │ ├── labelling.md │ │ │ │ │ ├── radial │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── linear.md │ │ │ │ │ └── styling.md │ │ │ │ ├── charts │ │ │ │ │ ├── README.md │ │ │ │ │ ├── area.md │ │ │ │ │ ├── bar.md │ │ │ │ │ ├── bubble.md │ │ │ │ │ ├── doughnut.md │ │ │ │ │ ├── line.md │ │ │ │ │ ├── mixed.md │ │ │ │ │ ├── polar.md │ │ │ │ │ ├── radar.md │ │ │ │ │ └── scatter.md │ │ │ │ ├── configuration │ │ │ │ │ ├── README.md │ │ │ │ │ ├── animations.md │ │ │ │ │ ├── elements.md │ │ │ │ │ ├── layout.md │ │ │ │ │ ├── legend.md │ │ │ │ │ ├── title.md │ │ │ │ │ └── tooltip.md │ │ │ │ ├── developers │ │ │ │ │ ├── README.md │ │ │ │ │ ├── api.md │ │ │ │ │ ├── axes.md │ │ │ │ │ ├── charts.md │ │ │ │ │ ├── contributing.md │ │ │ │ │ ├── plugins.md │ │ │ │ │ └── updates.md │ │ │ │ ├── general │ │ │ │ │ ├── README.md │ │ │ │ │ ├── colors.md │ │ │ │ │ ├── device-pixel-ratio.md │ │ │ │ │ ├── fonts.md │ │ │ │ │ ├── interactions │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── events.md │ │ │ │ │ │ └── modes.md │ │ │ │ │ ├── options.md │ │ │ │ │ └── responsive.md │ │ │ │ ├── getting-started │ │ │ │ │ ├── README.md │ │ │ │ │ ├── installation.md │ │ │ │ │ ├── integration.md │ │ │ │ │ └── usage.md │ │ │ │ ├── notes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── comparison.md │ │ │ │ │ ├── extensions.md │ │ │ │ │ └── license.md │ │ │ │ └── style.css │ │ │ ├── gulpfile.js │ │ │ ├── karma.conf.js │ │ │ ├── package.json │ │ │ ├── samples │ │ │ │ ├── .eslintrc.yml │ │ │ │ ├── advanced │ │ │ │ │ ├── data-labelling.html │ │ │ │ │ └── progress-bar.html │ │ │ │ ├── charts │ │ │ │ │ ├── area │ │ │ │ │ │ ├── analyser.js │ │ │ │ │ │ ├── line-boundaries.html │ │ │ │ │ │ ├── line-datasets.html │ │ │ │ │ │ ├── line-stacked.html │ │ │ │ │ │ └── radar.html │ │ │ │ │ ├── bar │ │ │ │ │ │ ├── horizontal.html │ │ │ │ │ │ ├── multi-axis.html │ │ │ │ │ │ ├── stacked-group.html │ │ │ │ │ │ ├── stacked.html │ │ │ │ │ │ └── vertical.html │ │ │ │ │ ├── bubble.html │ │ │ │ │ ├── combo-bar-line.html │ │ │ │ │ ├── doughnut.html │ │ │ │ │ ├── line │ │ │ │ │ │ ├── basic.html │ │ │ │ │ │ ├── interpolation-modes.html │ │ │ │ │ │ ├── line-styles.html │ │ │ │ │ │ ├── multi-axis.html │ │ │ │ │ │ ├── point-sizes.html │ │ │ │ │ │ ├── point-styles.html │ │ │ │ │ │ ├── skip-points.html │ │ │ │ │ │ └── stepped.html │ │ │ │ │ ├── pie.html │ │ │ │ │ ├── polar-area.html │ │ │ │ │ ├── radar-skip-points.html │ │ │ │ │ ├── radar.html │ │ │ │ │ └── scatter │ │ │ │ │ │ ├── basic.html │ │ │ │ │ │ └── multi-axis.html │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── legend │ │ │ │ │ ├── point-style.html │ │ │ │ │ └── positioning.html │ │ │ │ ├── logo.svg │ │ │ │ ├── samples.js │ │ │ │ ├── scales │ │ │ │ │ ├── filtering-labels.html │ │ │ │ │ ├── gridlines-display.html │ │ │ │ │ ├── gridlines-style.html │ │ │ │ │ ├── linear │ │ │ │ │ │ ├── min-max-suggested.html │ │ │ │ │ │ ├── min-max.html │ │ │ │ │ │ └── step-size.html │ │ │ │ │ ├── logarithmic │ │ │ │ │ │ ├── line.html │ │ │ │ │ │ └── scatter.html │ │ │ │ │ ├── multiline-labels.html │ │ │ │ │ ├── non-numeric-y.html │ │ │ │ │ ├── time │ │ │ │ │ │ ├── combo.html │ │ │ │ │ │ ├── financial.html │ │ │ │ │ │ ├── line-point-data.html │ │ │ │ │ │ └── line.html │ │ │ │ │ └── toggle-scale-type.html │ │ │ │ ├── scriptable │ │ │ │ │ └── bubble.html │ │ │ │ ├── style.css │ │ │ │ ├── tooltips │ │ │ │ │ ├── border.html │ │ │ │ │ ├── callbacks.html │ │ │ │ │ ├── custom-line.html │ │ │ │ │ ├── custom-pie.html │ │ │ │ │ ├── custom-points.html │ │ │ │ │ ├── interactions.html │ │ │ │ │ └── positioning.html │ │ │ │ └── utils.js │ │ │ ├── src │ │ │ │ ├── chart.js │ │ │ │ ├── charts │ │ │ │ │ ├── Chart.Bar.js │ │ │ │ │ ├── Chart.Bubble.js │ │ │ │ │ ├── Chart.Doughnut.js │ │ │ │ │ ├── Chart.Line.js │ │ │ │ │ ├── Chart.PolarArea.js │ │ │ │ │ ├── Chart.Radar.js │ │ │ │ │ └── Chart.Scatter.js │ │ │ │ ├── controllers │ │ │ │ │ ├── controller.bar.js │ │ │ │ │ ├── controller.bubble.js │ │ │ │ │ ├── controller.doughnut.js │ │ │ │ │ ├── controller.line.js │ │ │ │ │ ├── controller.polarArea.js │ │ │ │ │ ├── controller.radar.js │ │ │ │ │ └── controller.scatter.js │ │ │ │ ├── core │ │ │ │ │ ├── core.animation.js │ │ │ │ │ ├── core.controller.js │ │ │ │ │ ├── core.datasetController.js │ │ │ │ │ ├── core.defaults.js │ │ │ │ │ ├── core.element.js │ │ │ │ │ ├── core.helpers.js │ │ │ │ │ ├── core.interaction.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── core.layouts.js │ │ │ │ │ ├── core.plugins.js │ │ │ │ │ ├── core.scale.js │ │ │ │ │ ├── core.scaleService.js │ │ │ │ │ ├── core.ticks.js │ │ │ │ │ └── core.tooltip.js │ │ │ │ ├── elements │ │ │ │ │ ├── element.arc.js │ │ │ │ │ ├── element.line.js │ │ │ │ │ ├── element.point.js │ │ │ │ │ ├── element.rectangle.js │ │ │ │ │ └── index.js │ │ │ │ ├── helpers │ │ │ │ │ ├── helpers.canvas.js │ │ │ │ │ ├── helpers.core.js │ │ │ │ │ ├── helpers.easing.js │ │ │ │ │ ├── helpers.options.js │ │ │ │ │ └── index.js │ │ │ │ ├── platforms │ │ │ │ │ ├── platform.basic.js │ │ │ │ │ ├── platform.dom.js │ │ │ │ │ └── platform.js │ │ │ │ ├── plugins │ │ │ │ │ ├── index.js │ │ │ │ │ ├── plugin.filler.js │ │ │ │ │ ├── plugin.legend.js │ │ │ │ │ └── plugin.title.js │ │ │ │ └── scales │ │ │ │ │ ├── scale.category.js │ │ │ │ │ ├── scale.linear.js │ │ │ │ │ ├── scale.linearbase.js │ │ │ │ │ ├── scale.logarithmic.js │ │ │ │ │ ├── scale.radialLinear.js │ │ │ │ │ └── scale.time.js │ │ │ └── test │ │ │ │ ├── .eslintrc.yml │ │ │ │ ├── fixtures │ │ │ │ ├── controller.bar │ │ │ │ │ ├── bar-thickness-absolute.json │ │ │ │ │ ├── bar-thickness-absolute.png │ │ │ │ │ ├── bar-thickness-flex-offset.json │ │ │ │ │ ├── bar-thickness-flex-offset.png │ │ │ │ │ ├── bar-thickness-flex.json │ │ │ │ │ ├── bar-thickness-flex.png │ │ │ │ │ ├── bar-thickness-max.json │ │ │ │ │ ├── bar-thickness-max.png │ │ │ │ │ ├── bar-thickness-min-interval.json │ │ │ │ │ ├── bar-thickness-min-interval.png │ │ │ │ │ ├── bar-thickness-multiple.json │ │ │ │ │ ├── bar-thickness-multiple.png │ │ │ │ │ ├── bar-thickness-no-overlap.json │ │ │ │ │ ├── bar-thickness-no-overlap.png │ │ │ │ │ ├── bar-thickness-offset.json │ │ │ │ │ ├── bar-thickness-offset.png │ │ │ │ │ ├── bar-thickness-single-xy.json │ │ │ │ │ ├── bar-thickness-single-xy.png │ │ │ │ │ ├── bar-thickness-single.json │ │ │ │ │ ├── bar-thickness-single.png │ │ │ │ │ ├── bar-thickness-stacked.json │ │ │ │ │ └── bar-thickness-stacked.png │ │ │ │ ├── core.scale │ │ │ │ │ ├── label-offset-vertical-axes.json │ │ │ │ │ └── label-offset-vertical-axes.png │ │ │ │ └── plugin.filler │ │ │ │ │ ├── fill-line-boundary-end-span.json │ │ │ │ │ ├── fill-line-boundary-end-span.png │ │ │ │ │ ├── fill-line-boundary-end.json │ │ │ │ │ ├── fill-line-boundary-end.png │ │ │ │ │ ├── fill-line-boundary-origin-span.json │ │ │ │ │ ├── fill-line-boundary-origin-span.png │ │ │ │ │ ├── fill-line-boundary-origin-spline-span.json │ │ │ │ │ ├── fill-line-boundary-origin-spline-span.png │ │ │ │ │ ├── fill-line-boundary-origin-spline.json │ │ │ │ │ ├── fill-line-boundary-origin-spline.png │ │ │ │ │ ├── fill-line-boundary-origin-stepped-span.json │ │ │ │ │ ├── fill-line-boundary-origin-stepped-span.png │ │ │ │ │ ├── fill-line-boundary-origin-stepped.json │ │ │ │ │ ├── fill-line-boundary-origin-stepped.png │ │ │ │ │ ├── fill-line-boundary-origin.json │ │ │ │ │ ├── fill-line-boundary-origin.png │ │ │ │ │ ├── fill-line-boundary-start-span.json │ │ │ │ │ ├── fill-line-boundary-start-span.png │ │ │ │ │ ├── fill-line-boundary-start.json │ │ │ │ │ ├── fill-line-boundary-start.png │ │ │ │ │ ├── fill-line-dataset-span.json │ │ │ │ │ ├── fill-line-dataset-span.png │ │ │ │ │ ├── fill-line-dataset-spline-span.json │ │ │ │ │ ├── fill-line-dataset-spline-span.png │ │ │ │ │ ├── fill-line-dataset-spline.json │ │ │ │ │ ├── fill-line-dataset-spline.png │ │ │ │ │ ├── fill-line-dataset.json │ │ │ │ │ ├── fill-line-dataset.png │ │ │ │ │ ├── fill-radar-boundary-origin-spline.json │ │ │ │ │ ├── fill-radar-boundary-origin-spline.png │ │ │ │ │ ├── fill-radar-boundary-origin.json │ │ │ │ │ └── fill-radar-boundary-origin.png │ │ │ │ ├── jasmine.context.js │ │ │ │ ├── jasmine.index.js │ │ │ │ ├── jasmine.matchers.js │ │ │ │ ├── jasmine.utils.js │ │ │ │ └── specs │ │ │ │ ├── controller.bar.tests.js │ │ │ │ ├── controller.bubble.tests.js │ │ │ │ ├── controller.doughnut.tests.js │ │ │ │ ├── controller.line.tests.js │ │ │ │ ├── controller.polarArea.tests.js │ │ │ │ ├── controller.radar.tests.js │ │ │ │ ├── controller.scatter.test.js │ │ │ │ ├── core.controller.tests.js │ │ │ │ ├── core.datasetController.tests.js │ │ │ │ ├── core.element.tests.js │ │ │ │ ├── core.helpers.tests.js │ │ │ │ ├── core.interaction.tests.js │ │ │ │ ├── core.layouts.tests.js │ │ │ │ ├── core.plugin.tests.js │ │ │ │ ├── core.scale.tests.js │ │ │ │ ├── core.scaleService.tests.js │ │ │ │ ├── core.ticks.tests.js │ │ │ │ ├── core.tooltip.tests.js │ │ │ │ ├── element.arc.tests.js │ │ │ │ ├── element.line.tests.js │ │ │ │ ├── element.point.tests.js │ │ │ │ ├── element.rectangle.tests.js │ │ │ │ ├── global.defaults.tests.js │ │ │ │ ├── global.deprecations.tests.js │ │ │ │ ├── helpers.canvas.tests.js │ │ │ │ ├── helpers.core.tests.js │ │ │ │ ├── helpers.easing.tests.js │ │ │ │ ├── helpers.options.tests.js │ │ │ │ ├── platform.dom.tests.js │ │ │ │ ├── plugin.filler.tests.js │ │ │ │ ├── plugin.legend.tests.js │ │ │ │ ├── plugin.title.tests.js │ │ │ │ ├── scale.category.tests.js │ │ │ │ ├── scale.linear.tests.js │ │ │ │ ├── scale.logarithmic.tests.js │ │ │ │ ├── scale.radialLinear.tests.js │ │ │ │ └── scale.time.tests.js │ │ │ ├── chosen │ │ │ ├── .bower.json │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen-sprite@2x.png │ │ │ ├── chosen.css │ │ │ ├── chosen.jquery.js │ │ │ ├── chosen.jquery.min.js │ │ │ ├── chosen.min.css │ │ │ ├── chosen.proto.js │ │ │ ├── chosen.proto.min.js │ │ │ ├── composer.json │ │ │ └── package.json │ │ │ ├── datatables.net-bs4 │ │ │ ├── .bower.json │ │ │ ├── Readme.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap4.css │ │ │ │ └── dataTables.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap4.js │ │ │ │ └── dataTables.bootstrap4.min.js │ │ │ ├── datatables.net-buttons-bs4 │ │ │ ├── .bower.json │ │ │ ├── Readme.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ │ ├── buttons.bootstrap4.css │ │ │ │ └── buttons.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── buttons.bootstrap4.js │ │ │ │ └── buttons.bootstrap4.min.js │ │ │ ├── datatables.net-buttons │ │ │ ├── .bower.json │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── bower.json │ │ │ ├── js │ │ │ │ ├── buttons.colVis.js │ │ │ │ ├── buttons.colVis.min.js │ │ │ │ ├── buttons.flash.js │ │ │ │ ├── buttons.flash.min.js │ │ │ │ ├── buttons.html5.js │ │ │ │ ├── buttons.html5.min.js │ │ │ │ ├── buttons.print.js │ │ │ │ ├── buttons.print.min.js │ │ │ │ ├── dataTables.buttons.js │ │ │ │ └── dataTables.buttons.min.js │ │ │ └── swf │ │ │ │ └── flashExport.swf │ │ │ ├── datatables.net │ │ │ ├── .bower.json │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── bower.json │ │ │ └── js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ └── jquery.dataTables.min.js │ │ │ ├── flag-icon-css │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── css │ │ │ │ ├── flag-icon.css │ │ │ │ └── flag-icon.min.css │ │ │ ├── flags │ │ │ │ ├── 1x1 │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── af.svg │ │ │ │ │ ├── ag.svg │ │ │ │ │ ├── ai.svg │ │ │ │ │ ├── al.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── ao.svg │ │ │ │ │ ├── aq.svg │ │ │ │ │ ├── ar.svg │ │ │ │ │ ├── as.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── au.svg │ │ │ │ │ ├── aw.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ba.svg │ │ │ │ │ ├── bb.svg │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── bi.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── bm.svg │ │ │ │ │ ├── bn.svg │ │ │ │ │ ├── bo.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── br.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── bt.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── by.svg │ │ │ │ │ ├── bz.svg │ │ │ │ │ ├── ca.svg │ │ │ │ │ ├── cc.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── cf.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── ck.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ ├── cm.svg │ │ │ │ │ ├── cn.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── cu.svg │ │ │ │ │ ├── cv.svg │ │ │ │ │ ├── cw.svg │ │ │ │ │ ├── cx.svg │ │ │ │ │ ├── cy.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── dm.svg │ │ │ │ │ ├── do.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── ec.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── eg.svg │ │ │ │ │ ├── eh.svg │ │ │ │ │ ├── er.svg │ │ │ │ │ ├── es-ct.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── et.svg │ │ │ │ │ ├── eu.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── fj.svg │ │ │ │ │ ├── fk.svg │ │ │ │ │ ├── fm.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── gb-nir.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── gb-wls.svg │ │ │ │ │ ├── gb.svg │ │ │ │ │ ├── gd.svg │ │ │ │ │ ├── ge.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gi.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── gq.svg │ │ │ │ │ ├── gr.svg │ │ │ │ │ ├── gs.svg │ │ │ │ │ ├── gt.svg │ │ │ │ │ ├── gu.svg │ │ │ │ │ ├── gw.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── hk.svg │ │ │ │ │ ├── hm.svg │ │ │ │ │ ├── hn.svg │ │ │ │ │ ├── hr.svg │ │ │ │ │ ├── ht.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── il.svg │ │ │ │ │ ├── im.svg │ │ │ │ │ ├── in.svg │ │ │ │ │ ├── io.svg │ │ │ │ │ ├── iq.svg │ │ │ │ │ ├── ir.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── je.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── jo.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── ke.svg │ │ │ │ │ ├── kg.svg │ │ │ │ │ ├── kh.svg │ │ │ │ │ ├── ki.svg │ │ │ │ │ ├── km.svg │ │ │ │ │ ├── kn.svg │ │ │ │ │ ├── kp.svg │ │ │ │ │ ├── kr.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── ky.svg │ │ │ │ │ ├── kz.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── lb.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── li.svg │ │ │ │ │ ├── lk.svg │ │ │ │ │ ├── lr.svg │ │ │ │ │ ├── ls.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── md.svg │ │ │ │ │ ├── me.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mh.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mm.svg │ │ │ │ │ ├── mn.svg │ │ │ │ │ ├── mo.svg │ │ │ │ │ ├── mp.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── ms.svg │ │ │ │ │ ├── mt.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── mw.svg │ │ │ │ │ ├── mx.svg │ │ │ │ │ ├── my.svg │ │ │ │ │ ├── mz.svg │ │ │ │ │ ├── na.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── nf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ni.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── np.svg │ │ │ │ │ ├── nr.svg │ │ │ │ │ ├── nu.svg │ │ │ │ │ ├── nz.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── pa.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── pf.svg │ │ │ │ │ ├── pg.svg │ │ │ │ │ ├── ph.svg │ │ │ │ │ ├── pk.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── pn.svg │ │ │ │ │ ├── pr.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── pt.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── py.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── rs.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── rw.svg │ │ │ │ │ ├── sa.svg │ │ │ │ │ ├── sb.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── sg.svg │ │ │ │ │ ├── sh.svg │ │ │ │ │ ├── si.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── sk.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── sm.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── st.svg │ │ │ │ │ ├── sv.svg │ │ │ │ │ ├── sx.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── sz.svg │ │ │ │ │ ├── tc.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── tf.svg │ │ │ │ │ ├── tg.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── tj.svg │ │ │ │ │ ├── tk.svg │ │ │ │ │ ├── tl.svg │ │ │ │ │ ├── tm.svg │ │ │ │ │ ├── tn.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── tr.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── tw.svg │ │ │ │ │ ├── tz.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── ug.svg │ │ │ │ │ ├── um.svg │ │ │ │ │ ├── un.svg │ │ │ │ │ ├── us.svg │ │ │ │ │ ├── uy.svg │ │ │ │ │ ├── uz.svg │ │ │ │ │ ├── va.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── ve.svg │ │ │ │ │ ├── vg.svg │ │ │ │ │ ├── vi.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── vu.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── ws.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── za.svg │ │ │ │ │ ├── zm.svg │ │ │ │ │ └── zw.svg │ │ │ │ └── 4x3 │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── af.svg │ │ │ │ │ ├── ag.svg │ │ │ │ │ ├── ai.svg │ │ │ │ │ ├── al.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── ao.svg │ │ │ │ │ ├── aq.svg │ │ │ │ │ ├── ar.svg │ │ │ │ │ ├── as.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── au.svg │ │ │ │ │ ├── aw.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ba.svg │ │ │ │ │ ├── bb.svg │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── bi.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── bm.svg │ │ │ │ │ ├── bn.svg │ │ │ │ │ ├── bo.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── br.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── bt.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── by.svg │ │ │ │ │ ├── bz.svg │ │ │ │ │ ├── ca.svg │ │ │ │ │ ├── cc.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── cf.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── ck.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ ├── cm.svg │ │ │ │ │ ├── cn.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── cu.svg │ │ │ │ │ ├── cv.svg │ │ │ │ │ ├── cw.svg │ │ │ │ │ ├── cx.svg │ │ │ │ │ ├── cy.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── dm.svg │ │ │ │ │ ├── do.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── ec.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── eg.svg │ │ │ │ │ ├── eh.svg │ │ │ │ │ ├── er.svg │ │ │ │ │ ├── es-ct.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── et.svg │ │ │ │ │ ├── eu.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── fj.svg │ │ │ │ │ ├── fk.svg │ │ │ │ │ ├── fm.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── gb-nir.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── gb-wls.svg │ │ │ │ │ ├── gb.svg │ │ │ │ │ ├── gd.svg │ │ │ │ │ ├── ge.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gi.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── gq.svg │ │ │ │ │ ├── gr.svg │ │ │ │ │ ├── gs.svg │ │ │ │ │ ├── gt.svg │ │ │ │ │ ├── gu.svg │ │ │ │ │ ├── gw.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── hk.svg │ │ │ │ │ ├── hm.svg │ │ │ │ │ ├── hn.svg │ │ │ │ │ ├── hr.svg │ │ │ │ │ ├── ht.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── il.svg │ │ │ │ │ ├── im.svg │ │ │ │ │ ├── in.svg │ │ │ │ │ ├── io.svg │ │ │ │ │ ├── iq.svg │ │ │ │ │ ├── ir.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── je.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── jo.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── ke.svg │ │ │ │ │ ├── kg.svg │ │ │ │ │ ├── kh.svg │ │ │ │ │ ├── ki.svg │ │ │ │ │ ├── km.svg │ │ │ │ │ ├── kn.svg │ │ │ │ │ ├── kp.svg │ │ │ │ │ ├── kr.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── ky.svg │ │ │ │ │ ├── kz.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── lb.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── li.svg │ │ │ │ │ ├── lk.svg │ │ │ │ │ ├── lr.svg │ │ │ │ │ ├── ls.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── md.svg │ │ │ │ │ ├── me.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mh.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mm.svg │ │ │ │ │ ├── mn.svg │ │ │ │ │ ├── mo.svg │ │ │ │ │ ├── mp.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── ms.svg │ │ │ │ │ ├── mt.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── mw.svg │ │ │ │ │ ├── mx.svg │ │ │ │ │ ├── my.svg │ │ │ │ │ ├── mz.svg │ │ │ │ │ ├── na.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── nf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ni.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── np.svg │ │ │ │ │ ├── nr.svg │ │ │ │ │ ├── nu.svg │ │ │ │ │ ├── nz.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── pa.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── pf.svg │ │ │ │ │ ├── pg.svg │ │ │ │ │ ├── ph.svg │ │ │ │ │ ├── pk.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── pn.svg │ │ │ │ │ ├── pr.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── pt.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── py.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── rs.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── rw.svg │ │ │ │ │ ├── sa.svg │ │ │ │ │ ├── sb.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── sg.svg │ │ │ │ │ ├── sh.svg │ │ │ │ │ ├── si.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── sk.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── sm.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── st.svg │ │ │ │ │ ├── sv.svg │ │ │ │ │ ├── sx.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── sz.svg │ │ │ │ │ ├── tc.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── tf.svg │ │ │ │ │ ├── tg.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── tj.svg │ │ │ │ │ ├── tk.svg │ │ │ │ │ ├── tl.svg │ │ │ │ │ ├── tm.svg │ │ │ │ │ ├── tn.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── tr.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── tw.svg │ │ │ │ │ ├── tz.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── ug.svg │ │ │ │ │ ├── um.svg │ │ │ │ │ ├── un.svg │ │ │ │ │ ├── us.svg │ │ │ │ │ ├── uy.svg │ │ │ │ │ ├── uz.svg │ │ │ │ │ ├── va.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── ve.svg │ │ │ │ │ ├── vg.svg │ │ │ │ │ ├── vi.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── vu.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── ws.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── za.svg │ │ │ │ │ ├── zm.svg │ │ │ │ │ └── zw.svg │ │ │ ├── less │ │ │ │ ├── flag-icon-base.less │ │ │ │ ├── flag-icon-list.less │ │ │ │ ├── flag-icon-more.less │ │ │ │ ├── flag-icon.less │ │ │ │ └── variables.less │ │ │ ├── sass │ │ │ │ ├── _flag-icon-base.scss │ │ │ │ ├── _flag-icon-list.scss │ │ │ │ ├── _flag-icon-more.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── flag-icon.scss │ │ │ ├── svgo.yaml │ │ │ └── yarn.lock │ │ │ ├── flot │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── API.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── FAQ.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── NEWS.md │ │ │ ├── PLUGINS.md │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── examples │ │ │ │ ├── ajax │ │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ │ └── index.html │ │ │ │ ├── annotating │ │ │ │ │ └── index.html │ │ │ │ ├── axes-interacting │ │ │ │ │ └── index.html │ │ │ │ ├── axes-multiple │ │ │ │ │ └── index.html │ │ │ │ ├── axes-time-zones │ │ │ │ │ ├── date.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── tz │ │ │ │ │ │ ├── africa │ │ │ │ │ │ ├── antarctica │ │ │ │ │ │ ├── asia │ │ │ │ │ │ ├── australasia │ │ │ │ │ │ ├── backward │ │ │ │ │ │ ├── etcetera │ │ │ │ │ │ ├── europe │ │ │ │ │ │ ├── factory │ │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ │ ├── leapseconds │ │ │ │ │ │ ├── northamerica │ │ │ │ │ │ ├── pacificnew │ │ │ │ │ │ ├── solar87 │ │ │ │ │ │ ├── solar88 │ │ │ │ │ │ ├── solar89 │ │ │ │ │ │ ├── southamerica │ │ │ │ │ │ ├── systemv │ │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ │ └── zone.tab │ │ │ │ ├── axes-time │ │ │ │ │ └── index.html │ │ │ │ ├── background.png │ │ │ │ ├── basic-options │ │ │ │ │ └── index.html │ │ │ │ ├── basic-usage │ │ │ │ │ └── index.html │ │ │ │ ├── canvas │ │ │ │ │ └── index.html │ │ │ │ ├── categories │ │ │ │ │ └── index.html │ │ │ │ ├── examples.css │ │ │ │ ├── image │ │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── interacting │ │ │ │ │ └── index.html │ │ │ │ ├── navigate │ │ │ │ │ ├── arrow-down.gif │ │ │ │ │ ├── arrow-left.gif │ │ │ │ │ ├── arrow-right.gif │ │ │ │ │ ├── arrow-up.gif │ │ │ │ │ └── index.html │ │ │ │ ├── percentiles │ │ │ │ │ └── index.html │ │ │ │ ├── realtime │ │ │ │ │ └── index.html │ │ │ │ ├── resize │ │ │ │ │ └── index.html │ │ │ │ ├── selection │ │ │ │ │ └── index.html │ │ │ │ ├── series-errorbars │ │ │ │ │ └── index.html │ │ │ │ ├── series-pie │ │ │ │ │ └── index.html │ │ │ │ ├── series-toggle │ │ │ │ │ └── index.html │ │ │ │ ├── series-types │ │ │ │ │ └── index.html │ │ │ │ ├── shared │ │ │ │ │ └── jquery-ui │ │ │ │ │ │ └── jquery-ui.min.css │ │ │ │ ├── stacking │ │ │ │ │ └── index.html │ │ │ │ ├── symbols │ │ │ │ │ └── index.html │ │ │ │ ├── threshold │ │ │ │ │ └── index.html │ │ │ │ ├── tracking │ │ │ │ │ └── index.html │ │ │ │ ├── visitors │ │ │ │ │ └── index.html │ │ │ │ └── zooming │ │ │ │ │ └── index.html │ │ │ ├── excanvas.js │ │ │ ├── excanvas.min.js │ │ │ ├── flot.jquery.json │ │ │ ├── jquery.colorhelpers.js │ │ │ ├── jquery.flot.canvas.js │ │ │ ├── jquery.flot.categories.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.errorbars.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.image.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.symbol.js │ │ │ ├── jquery.flot.threshold.js │ │ │ ├── jquery.flot.time.js │ │ │ ├── jquery.js │ │ │ └── package.json │ │ │ ├── font-awesome │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── bower.json │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.css.map │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ │ ├── gaugejs │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── arrow.gif │ │ │ │ ├── bg.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── browsers.png │ │ │ │ ├── cross.gif │ │ │ │ ├── crosshair.gif │ │ │ │ ├── excanvas.compiled.js │ │ │ │ ├── fd-slider │ │ │ │ │ ├── fd-slider-tooltip.css │ │ │ │ │ ├── fd-slider.css │ │ │ │ │ └── fd-slider.js │ │ │ │ ├── github.gif │ │ │ │ ├── hs.png │ │ │ │ ├── hv.png │ │ │ │ ├── jscolor.js │ │ │ │ ├── main.css │ │ │ │ ├── prettify.css │ │ │ │ ├── prettify.js │ │ │ │ ├── preview.jpg │ │ │ │ ├── ribbon.png │ │ │ │ └── strike.png │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── gauge.coffee │ │ │ │ ├── gauge.js │ │ │ │ └── gauge.min.js │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ └── package.json │ │ │ ├── gmaps │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── docs │ │ │ │ ├── GMaps.html │ │ │ │ ├── gmaps.controls.js.html │ │ │ │ ├── gmaps.core.js.html │ │ │ │ ├── gmaps.static.js.html │ │ │ │ ├── index.html │ │ │ │ ├── scripts │ │ │ │ │ ├── linenumber.js │ │ │ │ │ └── prettify │ │ │ │ │ │ ├── Apache-License-2.0.txt │ │ │ │ │ │ ├── lang-css.js │ │ │ │ │ │ └── prettify.js │ │ │ │ └── styles │ │ │ │ │ ├── jsdoc.css │ │ │ │ │ └── prettify.css │ │ │ ├── examples │ │ │ │ ├── basic.html │ │ │ │ ├── context_menu.html │ │ │ │ ├── custom_controls.html │ │ │ │ ├── elevation_locations.html │ │ │ │ ├── elevation_routes.html │ │ │ │ ├── examples.css │ │ │ │ ├── fusion_tables.html │ │ │ │ ├── geocoding.html │ │ │ │ ├── geofences.html │ │ │ │ ├── geolocation.html │ │ │ │ ├── geometry.html │ │ │ │ ├── kml.html │ │ │ │ ├── layers.html │ │ │ │ ├── layers_places.html │ │ │ │ ├── map_events.html │ │ │ │ ├── map_types.html │ │ │ │ ├── marker_clusterer.html │ │ │ │ ├── markers.html │ │ │ │ ├── overlay_map_types.html │ │ │ │ ├── overlays.html │ │ │ │ ├── polygons.html │ │ │ │ ├── polylines.html │ │ │ │ ├── render_directions.html │ │ │ │ ├── routes.html │ │ │ │ ├── routes_advanced.html │ │ │ │ ├── static.html │ │ │ │ ├── static_markers.html │ │ │ │ ├── static_polylines.html │ │ │ │ ├── static_styles.html │ │ │ │ ├── styled_maps.html │ │ │ │ └── travel_route.html │ │ │ ├── gmaps.js │ │ │ ├── gmaps.min.js │ │ │ ├── gmaps.min.js.map │ │ │ ├── jsdoc.json │ │ │ ├── lib │ │ │ │ ├── gmaps.controls.js │ │ │ │ ├── gmaps.core.js │ │ │ │ ├── gmaps.events.js │ │ │ │ ├── gmaps.geofences.js │ │ │ │ ├── gmaps.geometry.js │ │ │ │ ├── gmaps.layers.js │ │ │ │ ├── gmaps.map_types.js │ │ │ │ ├── gmaps.markers.js │ │ │ │ ├── gmaps.native_extensions.js │ │ │ │ ├── gmaps.overlays.js │ │ │ │ ├── gmaps.routes.js │ │ │ │ ├── gmaps.static.js │ │ │ │ ├── gmaps.streetview.js │ │ │ │ ├── gmaps.styles.js │ │ │ │ └── gmaps.utils.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ ├── index.html │ │ │ │ ├── lib │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ ├── jasmine.css │ │ │ │ │ └── jasmine.js │ │ │ │ ├── spec │ │ │ │ │ ├── ControlSpec.js │ │ │ │ │ ├── EventSpec.js │ │ │ │ │ ├── GeometrySpec.js │ │ │ │ │ ├── LayerSpec.js │ │ │ │ │ ├── MapSpec.js │ │ │ │ │ ├── MarkerSpec.js │ │ │ │ │ ├── OverlaySpec.js │ │ │ │ │ ├── RouteSpec.js │ │ │ │ │ ├── StreetViewSpec.js │ │ │ │ │ └── StyleSpec.js │ │ │ │ ├── style.css │ │ │ │ └── template │ │ │ │ │ └── jasmine-gmaps.html │ │ │ └── umd.hbs │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── .appveyor.yml │ │ │ ├── .bower.json │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .vsts-pipelines │ │ │ │ └── builds │ │ │ │ │ └── ci-public.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── Microsoft.jQuery.Unobtrusive.Validation.nuspec │ │ │ ├── README.md │ │ │ ├── build.cmd │ │ │ ├── build.msbuild │ │ │ ├── gulpfile.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── run.ps1 │ │ │ ├── src │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── test │ │ │ │ └── webpacktest │ │ │ │ │ └── src │ │ │ │ │ └── index.js │ │ │ └── version.props │ │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── build │ │ │ │ └── release.js │ │ │ ├── changelog.md │ │ │ ├── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery-validation-sri.json │ │ │ │ ├── jquery.validate.js │ │ │ │ ├── jquery.validate.min.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_ar.min.js │ │ │ │ │ ├── messages_az.js │ │ │ │ │ ├── messages_az.min.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bg.min.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_ca.min.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_cs.min.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_da.min.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_de.min.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_el.min.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es.min.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_et.min.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_eu.min.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fa.min.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fi.min.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_fr.min.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_ge.min.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_gl.min.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_he.min.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hr.min.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hu.min.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_id.min.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_is.min.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_it.min.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ja.min.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_ka.min.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_kk.min.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_ko.min.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lt.min.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_lv.min.js │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ ├── messages_mk.min.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_my.min.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_nl.min.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_no.min.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pl.min.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ro.min.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_ru.min.js │ │ │ │ │ ├── messages_sd.js │ │ │ │ │ ├── messages_sd.min.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_si.min.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sk.min.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sl.min.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr.min.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_sv.min.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_th.min.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tj.min.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_tr.min.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_uk.min.js │ │ │ │ │ ├── messages_ur.js │ │ │ │ │ ├── messages_ur.min.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_vi.min.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh.min.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_de.min.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_fi.min.js │ │ │ │ │ ├── methods_it.js │ │ │ │ │ ├── methods_it.min.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ ├── methods_nl.min.js │ │ │ │ │ ├── methods_pt.js │ │ │ │ │ └── methods_pt.min.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── additional │ │ │ │ │ ├── accept.js │ │ │ │ │ ├── additional.js │ │ │ │ │ ├── alphanumeric.js │ │ │ │ │ ├── bankaccountNL.js │ │ │ │ │ ├── bankorgiroaccountNL.js │ │ │ │ │ ├── bic.js │ │ │ │ │ ├── cifES.js │ │ │ │ │ ├── cpfBR.js │ │ │ │ │ ├── creditcard.js │ │ │ │ │ ├── creditcardtypes.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── dateFA.js │ │ │ │ │ ├── dateITA.js │ │ │ │ │ ├── dateNL.js │ │ │ │ │ ├── extension.js │ │ │ │ │ ├── giroaccountNL.js │ │ │ │ │ ├── greaterThan.js │ │ │ │ │ ├── greaterThanEqual.js │ │ │ │ │ ├── iban.js │ │ │ │ │ ├── integer.js │ │ │ │ │ ├── ipv4.js │ │ │ │ │ ├── ipv6.js │ │ │ │ │ ├── lessThan.js │ │ │ │ │ ├── lessThanEqual.js │ │ │ │ │ ├── lettersonly.js │ │ │ │ │ ├── letterswithbasicpunc.js │ │ │ │ │ ├── maxfiles.js │ │ │ │ │ ├── maxsize.js │ │ │ │ │ ├── maxsizetotal.js │ │ │ │ │ ├── mobileNL.js │ │ │ │ │ ├── mobileUK.js │ │ │ │ │ ├── netmask.js │ │ │ │ │ ├── nieES.js │ │ │ │ │ ├── nifES.js │ │ │ │ │ ├── nipPL.js │ │ │ │ │ ├── nisBR.js │ │ │ │ │ ├── notEqualTo.js │ │ │ │ │ ├── nowhitespace.js │ │ │ │ │ ├── pattern.js │ │ │ │ │ ├── phoneNL.js │ │ │ │ │ ├── phonePL.js │ │ │ │ │ ├── phoneUK.js │ │ │ │ │ ├── phoneUS.js │ │ │ │ │ ├── phonesUK.js │ │ │ │ │ ├── postalCodeCA.js │ │ │ │ │ ├── postalcodeBR.js │ │ │ │ │ ├── postalcodeIT.js │ │ │ │ │ ├── postalcodeNL.js │ │ │ │ │ ├── postcodeUK.js │ │ │ │ │ ├── require_from_group.js │ │ │ │ │ ├── skip_or_fill_minimum.js │ │ │ │ │ ├── statesUS.js │ │ │ │ │ ├── strippedminlength.js │ │ │ │ │ ├── time.js │ │ │ │ │ ├── time12h.js │ │ │ │ │ ├── url2.js │ │ │ │ │ ├── vinUS.js │ │ │ │ │ ├── zipcodeUS.js │ │ │ │ │ └── ziprange.js │ │ │ │ ├── ajax.js │ │ │ │ ├── core.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_az.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_sd.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_ur.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_it.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ └── methods_pt.js │ │ │ └── validation.jquery.json │ │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ ├── external │ │ │ │ └── sizzle │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── dist │ │ │ │ │ ├── sizzle.js │ │ │ │ │ ├── sizzle.min.js │ │ │ │ │ └── sizzle.min.map │ │ │ └── src │ │ │ │ ├── .jshintrc │ │ │ │ ├── ajax.js │ │ │ │ ├── ajax │ │ │ │ ├── jsonp.js │ │ │ │ ├── load.js │ │ │ │ ├── parseJSON.js │ │ │ │ ├── parseXML.js │ │ │ │ ├── script.js │ │ │ │ ├── var │ │ │ │ │ ├── location.js │ │ │ │ │ ├── nonce.js │ │ │ │ │ └── rquery.js │ │ │ │ └── xhr.js │ │ │ │ ├── attributes.js │ │ │ │ ├── attributes │ │ │ │ ├── attr.js │ │ │ │ ├── classes.js │ │ │ │ ├── prop.js │ │ │ │ ├── support.js │ │ │ │ └── val.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── core │ │ │ │ ├── access.js │ │ │ │ ├── init.js │ │ │ │ ├── parseHTML.js │ │ │ │ ├── ready.js │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── css.js │ │ │ │ ├── css │ │ │ │ ├── addGetHookIf.js │ │ │ │ ├── adjustCSS.js │ │ │ │ ├── curCSS.js │ │ │ │ ├── defaultDisplay.js │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ ├── showHide.js │ │ │ │ ├── support.js │ │ │ │ └── var │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── getStyles.js │ │ │ │ │ ├── isHidden.js │ │ │ │ │ ├── rmargin.js │ │ │ │ │ ├── rnumnonpx.js │ │ │ │ │ └── swap.js │ │ │ │ ├── data.js │ │ │ │ ├── data │ │ │ │ ├── Data.js │ │ │ │ └── var │ │ │ │ │ ├── acceptData.js │ │ │ │ │ ├── dataPriv.js │ │ │ │ │ └── dataUser.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── effects │ │ │ │ ├── Tween.js │ │ │ │ └── animatedSelector.js │ │ │ │ ├── event.js │ │ │ │ ├── event │ │ │ │ ├── ajax.js │ │ │ │ ├── alias.js │ │ │ │ ├── focusin.js │ │ │ │ ├── support.js │ │ │ │ └── trigger.js │ │ │ │ ├── exports │ │ │ │ ├── amd.js │ │ │ │ └── global.js │ │ │ │ ├── intro.js │ │ │ │ ├── jquery.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── manipulation │ │ │ │ ├── _evalUrl.js │ │ │ │ ├── buildFragment.js │ │ │ │ ├── getAll.js │ │ │ │ ├── setGlobalEval.js │ │ │ │ ├── support.js │ │ │ │ ├── var │ │ │ │ │ ├── rcheckableType.js │ │ │ │ │ ├── rscriptType.js │ │ │ │ │ └── rtagName.js │ │ │ │ └── wrapMap.js │ │ │ │ ├── offset.js │ │ │ │ ├── outro.js │ │ │ │ ├── queue.js │ │ │ │ ├── queue │ │ │ │ └── delay.js │ │ │ │ ├── selector-native.js │ │ │ │ ├── selector-sizzle.js │ │ │ │ ├── selector.js │ │ │ │ ├── serialize.js │ │ │ │ ├── traversing.js │ │ │ │ ├── traversing │ │ │ │ ├── findFilter.js │ │ │ │ └── var │ │ │ │ │ ├── dir.js │ │ │ │ │ ├── rneedsContext.js │ │ │ │ │ └── siblings.js │ │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── document.js │ │ │ │ ├── documentElement.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── pnum.js │ │ │ │ ├── push.js │ │ │ │ ├── rcssNum.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── slice.js │ │ │ │ ├── support.js │ │ │ │ └── toString.js │ │ │ │ └── wrap.js │ │ │ ├── jqvmap │ │ │ ├── .bower.json │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── REGIONS.md │ │ │ ├── bower.json │ │ │ ├── create │ │ │ │ ├── README.md │ │ │ │ ├── config │ │ │ │ │ ├── continent.json │ │ │ │ │ ├── new-york.json │ │ │ │ │ └── syria.json │ │ │ │ └── jqvmap.py │ │ │ ├── dist │ │ │ │ ├── jquery.vmap.js │ │ │ │ ├── jquery.vmap.min.js │ │ │ │ ├── jqvmap.css │ │ │ │ ├── jqvmap.min.css │ │ │ │ └── maps │ │ │ │ │ ├── continents │ │ │ │ │ ├── jquery.vmap.africa.js │ │ │ │ │ ├── jquery.vmap.asia.js │ │ │ │ │ ├── jquery.vmap.australia.js │ │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ │ ├── jquery.vmap.north-america.js │ │ │ │ │ └── jquery.vmap.south-america.js │ │ │ │ │ ├── jquery.vmap.algeria.js │ │ │ │ │ ├── jquery.vmap.argentina.js │ │ │ │ │ ├── jquery.vmap.brazil.js │ │ │ │ │ ├── jquery.vmap.canada.js │ │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ │ ├── jquery.vmap.france.js │ │ │ │ │ ├── jquery.vmap.germany.js │ │ │ │ │ ├── jquery.vmap.greece.js │ │ │ │ │ ├── jquery.vmap.iran.js │ │ │ │ │ ├── jquery.vmap.iraq.js │ │ │ │ │ ├── jquery.vmap.russia.js │ │ │ │ │ ├── jquery.vmap.tunisia.js │ │ │ │ │ ├── jquery.vmap.turkey.js │ │ │ │ │ ├── jquery.vmap.usa.js │ │ │ │ │ └── jquery.vmap.world.js │ │ │ ├── examples │ │ │ │ ├── algeria.html │ │ │ │ ├── argentina.html │ │ │ │ ├── brazil.html │ │ │ │ ├── continents.html │ │ │ │ ├── europe.html │ │ │ │ ├── france.html │ │ │ │ ├── germany.html │ │ │ │ ├── greece.html │ │ │ │ ├── images │ │ │ │ │ ├── background.png │ │ │ │ │ ├── flag.png │ │ │ │ │ ├── globe.png │ │ │ │ │ ├── marker │ │ │ │ │ │ ├── black.png │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── white.png │ │ │ │ │ │ └── yellow.png │ │ │ │ │ ├── thumb.jpg │ │ │ │ │ └── tip.png │ │ │ │ ├── inactive_regions.html │ │ │ │ ├── iran.html │ │ │ │ ├── iraq.html │ │ │ │ ├── js │ │ │ │ │ └── jquery.vmap.sampledata.js │ │ │ │ ├── labels.html │ │ │ │ ├── mobile.html │ │ │ │ ├── multi.html │ │ │ │ ├── pins.html │ │ │ │ ├── pins_custom.html │ │ │ │ ├── responsive.html │ │ │ │ ├── russia.html │ │ │ │ ├── touch_detect.html │ │ │ │ ├── tunisia.html │ │ │ │ ├── turkey.html │ │ │ │ ├── usa.html │ │ │ │ └── world.html │ │ │ ├── grunt │ │ │ │ ├── bump.js │ │ │ │ ├── changelog.js │ │ │ │ ├── clean.js │ │ │ │ ├── concat.js │ │ │ │ ├── index.js │ │ │ │ ├── qunit.js │ │ │ │ ├── shell.js │ │ │ │ └── uglify.js │ │ │ ├── gruntfile.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── Base.js │ │ │ │ ├── ColorScale.js │ │ │ │ ├── ColorScale │ │ │ │ ├── arrayToRgb.js │ │ │ │ ├── getColor.js │ │ │ │ ├── rgbToArray.js │ │ │ │ ├── setColors.js │ │ │ │ ├── setMax.js │ │ │ │ ├── setMin.js │ │ │ │ ├── setNormalizeFunction.js │ │ │ │ ├── vectorAdd.js │ │ │ │ ├── vectorLength.js │ │ │ │ ├── vectorMult.js │ │ │ │ ├── vectorSubtract.js │ │ │ │ └── vectorToNum.js │ │ │ │ ├── JQVMap.js │ │ │ │ ├── JQVMap │ │ │ │ ├── applyTransform.js │ │ │ │ ├── bindZoomButtons.js │ │ │ │ ├── deselect.js │ │ │ │ ├── getCountryId.js │ │ │ │ ├── getPin.js │ │ │ │ ├── getPinId.js │ │ │ │ ├── getPins.js │ │ │ │ ├── highlight.js │ │ │ │ ├── isSelected.js │ │ │ │ ├── makeDraggable.js │ │ │ │ ├── placePins.js │ │ │ │ ├── positionPins.js │ │ │ │ ├── removePin.js │ │ │ │ ├── removePins.js │ │ │ │ ├── reset.js │ │ │ │ ├── resize.js │ │ │ │ ├── select.js │ │ │ │ ├── selectIndex.js │ │ │ │ ├── setBackgroundColor.js │ │ │ │ ├── setColors.js │ │ │ │ ├── setNormalizeFunction.js │ │ │ │ ├── setScale.js │ │ │ │ ├── setScaleColors.js │ │ │ │ ├── setValues.js │ │ │ │ ├── unhighlight.js │ │ │ │ ├── zoomIn.js │ │ │ │ └── zoomOut.js │ │ │ │ ├── VectorCanvas.js │ │ │ │ └── VectorCanvas │ │ │ │ ├── applyTransformParams.js │ │ │ │ ├── createGroup.js │ │ │ │ ├── createPath.js │ │ │ │ ├── pathSvgToVml.js │ │ │ │ └── setSize.js │ │ │ ├── jszip │ │ │ ├── .bower.json │ │ │ ├── CHANGES.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE.markdown │ │ │ ├── README.markdown │ │ │ ├── _config.yml │ │ │ ├── bower.json │ │ │ ├── component.json │ │ │ ├── dist │ │ │ │ ├── jszip.js │ │ │ │ └── jszip.min.js │ │ │ ├── docs │ │ │ │ ├── APPNOTE.TXT │ │ │ │ ├── ZIP spec.txt │ │ │ │ └── references.txt │ │ │ ├── documentation │ │ │ │ ├── _layouts │ │ │ │ │ └── default.html │ │ │ │ ├── api_jszip.md │ │ │ │ ├── api_jszip │ │ │ │ │ ├── constructor.md │ │ │ │ │ ├── external.md │ │ │ │ │ ├── file_data.md │ │ │ │ │ ├── file_name.md │ │ │ │ │ ├── file_regex.md │ │ │ │ │ ├── filter.md │ │ │ │ │ ├── folder_name.md │ │ │ │ │ ├── folder_regex.md │ │ │ │ │ ├── for_each.md │ │ │ │ │ ├── generate_async.md │ │ │ │ │ ├── generate_internal_stream.md │ │ │ │ │ ├── generate_node_stream.md │ │ │ │ │ ├── load_async.md │ │ │ │ │ ├── load_async_object.md │ │ │ │ │ ├── remove.md │ │ │ │ │ ├── support.md │ │ │ │ │ └── version.md │ │ │ │ ├── api_streamhelper.md │ │ │ │ ├── api_streamhelper │ │ │ │ │ ├── accumulate.md │ │ │ │ │ ├── on.md │ │ │ │ │ ├── pause.md │ │ │ │ │ └── resume.md │ │ │ │ ├── api_zipobject.md │ │ │ │ ├── api_zipobject │ │ │ │ │ ├── async.md │ │ │ │ │ ├── internal_stream.md │ │ │ │ │ └── node_stream.md │ │ │ │ ├── contributing.md │ │ │ │ ├── css │ │ │ │ │ ├── main.css │ │ │ │ │ └── pygments.css │ │ │ │ ├── examples.md │ │ │ │ ├── examples │ │ │ │ │ ├── download-zip-file.html │ │ │ │ │ ├── download-zip-file.inc │ │ │ │ │ │ ├── blob.html │ │ │ │ │ │ ├── blob.js │ │ │ │ │ │ ├── data_uri.html │ │ │ │ │ │ └── data_uri.js │ │ │ │ │ ├── downloader.html │ │ │ │ │ ├── downloader.inc │ │ │ │ │ │ ├── downloader.html │ │ │ │ │ │ ├── downloader.js │ │ │ │ │ │ └── helpers.js │ │ │ │ │ ├── get-binary-files-ajax.html │ │ │ │ │ ├── get-binary-files-ajax.inc │ │ │ │ │ │ ├── fetch_api.html │ │ │ │ │ │ ├── fetch_api.js │ │ │ │ │ │ ├── jszip_utils.html │ │ │ │ │ │ └── jszip_utils.js │ │ │ │ │ ├── read-local-file-api.html │ │ │ │ │ └── read-local-file-api.inc │ │ │ │ │ │ ├── read.html │ │ │ │ │ │ └── read.js │ │ │ │ ├── faq.md │ │ │ │ ├── howto │ │ │ │ │ ├── read_zip.md │ │ │ │ │ └── write_zip.md │ │ │ │ ├── limitations.md │ │ │ │ └── upgrade_guide.md │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ ├── base64.js │ │ │ │ ├── compressedObject.js │ │ │ │ ├── compressions.js │ │ │ │ ├── crc32.js │ │ │ │ ├── defaults.js │ │ │ │ ├── external.js │ │ │ │ ├── flate.js │ │ │ │ ├── generate │ │ │ │ │ ├── ZipFileWorker.js │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── license_header.js │ │ │ │ ├── load.js │ │ │ │ ├── nodejs │ │ │ │ │ ├── NodejsStreamInputAdapter.js │ │ │ │ │ └── NodejsStreamOutputAdapter.js │ │ │ │ ├── nodejsUtils.js │ │ │ │ ├── object.js │ │ │ │ ├── readable-stream-browser.js │ │ │ │ ├── reader │ │ │ │ │ ├── ArrayReader.js │ │ │ │ │ ├── DataReader.js │ │ │ │ │ ├── NodeBufferReader.js │ │ │ │ │ ├── StringReader.js │ │ │ │ │ ├── Uint8ArrayReader.js │ │ │ │ │ └── readerFor.js │ │ │ │ ├── signature.js │ │ │ │ ├── stream │ │ │ │ │ ├── ConvertWorker.js │ │ │ │ │ ├── Crc32Probe.js │ │ │ │ │ ├── DataLengthProbe.js │ │ │ │ │ ├── DataWorker.js │ │ │ │ │ ├── GenericWorker.js │ │ │ │ │ └── StreamHelper.js │ │ │ │ ├── support.js │ │ │ │ ├── utf8.js │ │ │ │ ├── utils.js │ │ │ │ ├── zipEntries.js │ │ │ │ ├── zipEntry.js │ │ │ │ └── zipObject.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── vendor │ │ │ │ └── FileSaver.js │ │ │ ├── pdfmake │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ ├── bower.json │ │ │ └── build │ │ │ │ ├── pdfmake.js │ │ │ │ ├── pdfmake.js.map │ │ │ │ ├── pdfmake.min.js │ │ │ │ ├── pdfmake.min.js.map │ │ │ │ └── vfs_fonts.js │ │ │ ├── peity │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENCE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── update_docs │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ │ └── style.css │ │ │ ├── index.html │ │ │ ├── jquery.peity.js │ │ │ ├── jquery.peity.min.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ ├── app.js │ │ │ │ ├── bin │ │ │ │ │ └── screenshot │ │ │ │ ├── chart.js │ │ │ │ ├── charts.json │ │ │ │ ├── fixtures.js │ │ │ │ ├── fixtures │ │ │ │ │ ├── bar1.png │ │ │ │ │ ├── bar10.png │ │ │ │ │ ├── bar11.png │ │ │ │ │ ├── bar12.png │ │ │ │ │ ├── bar13.png │ │ │ │ │ ├── bar14.png │ │ │ │ │ ├── bar2.png │ │ │ │ │ ├── bar3.png │ │ │ │ │ ├── bar4.png │ │ │ │ │ ├── bar5.png │ │ │ │ │ ├── bar6.png │ │ │ │ │ ├── bar7.png │ │ │ │ │ ├── bar8.png │ │ │ │ │ ├── bar9.png │ │ │ │ │ ├── donut1.png │ │ │ │ │ ├── donut10.png │ │ │ │ │ ├── donut11.png │ │ │ │ │ ├── donut12.png │ │ │ │ │ ├── donut13.png │ │ │ │ │ ├── donut2.png │ │ │ │ │ ├── donut3.png │ │ │ │ │ ├── donut4.png │ │ │ │ │ ├── donut5.png │ │ │ │ │ ├── donut6.png │ │ │ │ │ ├── donut7.png │ │ │ │ │ ├── donut8.png │ │ │ │ │ ├── donut9.png │ │ │ │ │ ├── line1.png │ │ │ │ │ ├── line10.png │ │ │ │ │ ├── line11.png │ │ │ │ │ ├── line12.png │ │ │ │ │ ├── line2.png │ │ │ │ │ ├── line3.png │ │ │ │ │ ├── line4.png │ │ │ │ │ ├── line5.png │ │ │ │ │ ├── line6.png │ │ │ │ │ ├── line7.png │ │ │ │ │ ├── line8.png │ │ │ │ │ ├── line9.png │ │ │ │ │ ├── pie1.png │ │ │ │ │ ├── pie10.png │ │ │ │ │ ├── pie11.png │ │ │ │ │ ├── pie12.png │ │ │ │ │ ├── pie2.png │ │ │ │ │ ├── pie3.png │ │ │ │ │ ├── pie4.png │ │ │ │ │ ├── pie5.png │ │ │ │ │ ├── pie6.png │ │ │ │ │ ├── pie7.png │ │ │ │ │ ├── pie8.png │ │ │ │ │ └── pie9.png │ │ │ │ ├── index.js │ │ │ │ ├── jquery-1.6.2.min.js │ │ │ │ ├── server.js │ │ │ │ ├── style.css │ │ │ │ └── views │ │ │ │ │ ├── chart.ejs │ │ │ │ │ ├── index.ejs │ │ │ │ │ └── show.ejs │ │ │ └── yarn.lock │ │ │ ├── popper.js │ │ │ ├── .bower.json │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── MENTIONS.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── esm │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ ├── popper.min.js.map │ │ │ │ │ └── poppper.js.flow │ │ │ │ ├── popper-utils.js │ │ │ │ ├── popper-utils.js.map │ │ │ │ ├── popper-utils.min.js │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ ├── popper.js │ │ │ │ ├── popper.js.map │ │ │ │ ├── popper.min.js │ │ │ │ ├── popper.min.js.map │ │ │ │ └── umd │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ └── popper.min.js.map │ │ │ ├── docs │ │ │ │ ├── CNAME │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.txt │ │ │ │ ├── _config.yml │ │ │ │ ├── _includes │ │ │ │ │ ├── example10-code.html │ │ │ │ │ ├── example10.html │ │ │ │ │ ├── example10t-code.html │ │ │ │ │ ├── example10t.html │ │ │ │ │ ├── example20-code.html │ │ │ │ │ ├── example20.html │ │ │ │ │ ├── example20t-code.html │ │ │ │ │ ├── example20t.html │ │ │ │ │ ├── example30-code.html │ │ │ │ │ ├── example30.html │ │ │ │ │ ├── example40-code.html │ │ │ │ │ ├── example40.html │ │ │ │ │ ├── example50-code.html │ │ │ │ │ ├── example50.html │ │ │ │ │ ├── footer.html │ │ │ │ │ ├── head.html │ │ │ │ │ ├── header.html │ │ │ │ │ ├── popper-documentation.md │ │ │ │ │ ├── scripts.html │ │ │ │ │ └── tooltip-documentation.md │ │ │ │ ├── _layouts │ │ │ │ │ ├── default.html │ │ │ │ │ ├── landing.html │ │ │ │ │ ├── page-hashtag.html │ │ │ │ │ ├── page-nowrap.html │ │ │ │ │ └── page.html │ │ │ │ ├── _sass │ │ │ │ │ └── libs │ │ │ │ │ │ ├── _functions.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _skel.scss │ │ │ │ │ │ └── _vars.scss │ │ │ │ ├── css │ │ │ │ │ ├── code.css │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ ├── ie8.scss │ │ │ │ │ ├── ie9.scss │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ ├── bars.svg │ │ │ │ │ │ └── close.svg │ │ │ │ │ ├── main.scss │ │ │ │ │ └── popper.css │ │ │ │ ├── documentation.html │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon-96x96.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── feed.xml │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── images │ │ │ │ │ ├── banner.jpg │ │ │ │ │ ├── banner.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── pic01.jpg │ │ │ │ │ ├── pic02.jpg │ │ │ │ │ ├── pic03.jpg │ │ │ │ │ ├── pic04.jpg │ │ │ │ │ └── pic05.jpg │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── ie │ │ │ │ │ │ ├── backgroundsize.min.htc │ │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ │ └── respond.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── jquery.nanoscroller.js │ │ │ │ │ ├── jquery.scrollex.min.js │ │ │ │ │ ├── jquery.scrolly.min.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── skel.min.js │ │ │ │ │ └── util.js │ │ │ │ ├── popper-documentation.html │ │ │ │ ├── tooltip-documentation.html │ │ │ │ └── tooltip-examples.html │ │ │ ├── lerna.json │ │ │ ├── package.json │ │ │ ├── packages │ │ │ │ ├── babel-config │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── yarn.lock │ │ │ │ ├── bundle │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── yarn.lock │ │ │ │ ├── eslint-config-popper │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── yarn.lock │ │ │ │ ├── popper │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bower-publish.sh │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── bundle.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js.flow │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── defaults.js │ │ │ │ │ │ ├── destroy.js │ │ │ │ │ │ ├── disableEventListeners.js │ │ │ │ │ │ ├── enableEventListeners.js │ │ │ │ │ │ ├── placements.js │ │ │ │ │ │ └── update.js │ │ │ │ │ │ ├── modifiers │ │ │ │ │ │ ├── applyStyle.js │ │ │ │ │ │ ├── arrow.js │ │ │ │ │ │ ├── computeStyle.js │ │ │ │ │ │ ├── flip.js │ │ │ │ │ │ ├── hide.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── inner.js │ │ │ │ │ │ ├── keepTogether.js │ │ │ │ │ │ ├── offset.js │ │ │ │ │ │ ├── preventOverflow.js │ │ │ │ │ │ └── shift.js │ │ │ │ │ │ └── utils │ │ │ │ │ │ ├── clockwise.js │ │ │ │ │ │ ├── computeAutoPlacement.js │ │ │ │ │ │ ├── debounce.js │ │ │ │ │ │ ├── find.js │ │ │ │ │ │ ├── findCommonOffsetParent.js │ │ │ │ │ │ ├── findIndex.js │ │ │ │ │ │ ├── getBordersSize.js │ │ │ │ │ │ ├── getBoundaries.js │ │ │ │ │ │ ├── getBoundingClientRect.js │ │ │ │ │ │ ├── getClientRect.js │ │ │ │ │ │ ├── getFixedPositionOffsetParent.js │ │ │ │ │ │ ├── getOffsetParent.js │ │ │ │ │ │ ├── getOffsetRect.js │ │ │ │ │ │ ├── getOffsetRectRelativeToArbitraryNode.js │ │ │ │ │ │ ├── getOppositePlacement.js │ │ │ │ │ │ ├── getOppositeVariation.js │ │ │ │ │ │ ├── getOuterSizes.js │ │ │ │ │ │ ├── getParentNode.js │ │ │ │ │ │ ├── getPopperOffsets.js │ │ │ │ │ │ ├── getReferenceOffsets.js │ │ │ │ │ │ ├── getRoot.js │ │ │ │ │ │ ├── getScroll.js │ │ │ │ │ │ ├── getScrollParent.js │ │ │ │ │ │ ├── getStyleComputedProperty.js │ │ │ │ │ │ ├── getSupportedPropertyName.js │ │ │ │ │ │ ├── getViewportOffsetRectRelativeToArtbitraryNode.js │ │ │ │ │ │ ├── getWindow.js │ │ │ │ │ │ ├── getWindowSizes.js │ │ │ │ │ │ ├── includeScroll.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isBrowser.js │ │ │ │ │ │ ├── isFixed.js │ │ │ │ │ │ ├── isFunction.js │ │ │ │ │ │ ├── isIE.js │ │ │ │ │ │ ├── isModifierEnabled.js │ │ │ │ │ │ ├── isModifierRequired.js │ │ │ │ │ │ ├── isNumeric.js │ │ │ │ │ │ ├── isOffsetContainer.js │ │ │ │ │ │ ├── removeEventListeners.js │ │ │ │ │ │ ├── runModifiers.js │ │ │ │ │ │ ├── setAttributes.js │ │ │ │ │ │ ├── setStyles.js │ │ │ │ │ │ └── setupEventListeners.js │ │ │ │ ├── test-utils │ │ │ │ │ ├── package.json │ │ │ │ │ ├── setup.js │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── appendNewPopper.js │ │ │ │ │ │ ├── appendNewRef.js │ │ │ │ │ │ ├── customEventPolyfill.js │ │ │ │ │ │ ├── getRect.js │ │ │ │ │ │ ├── isMSBrowser.js │ │ │ │ │ │ ├── makeConnectedElement.js │ │ │ │ │ │ ├── makeConnectedScrollElement.js │ │ │ │ │ │ ├── makeElement.js │ │ │ │ │ │ ├── prepend.js │ │ │ │ │ │ ├── simulateScroll.js │ │ │ │ │ │ └── then.js │ │ │ │ │ └── yarn.lock │ │ │ │ ├── test │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ │ └── karma.js │ │ │ │ │ ├── karma.conf.js │ │ │ │ │ └── package.json │ │ │ │ └── tooltip │ │ │ │ │ ├── bundle.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ └── index.js │ │ │ │ │ └── yarn.lock │ │ │ ├── popperjs.png │ │ │ └── yarn.lock │ │ │ ├── selectFX │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── css │ │ │ │ ├── cs-select.css │ │ │ │ ├── cs-skin-border.css │ │ │ │ ├── cs-skin-boxes.css │ │ │ │ ├── cs-skin-circular.css │ │ │ │ ├── cs-skin-elastic.css │ │ │ │ ├── cs-skin-overlay.css │ │ │ │ ├── cs-skin-rotate.css │ │ │ │ ├── cs-skin-slide.css │ │ │ │ ├── cs-skin-underline.css │ │ │ │ ├── demo.css │ │ │ │ └── normalize.css │ │ │ ├── fonts │ │ │ │ ├── codropsicons │ │ │ │ │ ├── codropsicons.eot │ │ │ │ │ ├── codropsicons.svg │ │ │ │ │ ├── codropsicons.ttf │ │ │ │ │ ├── codropsicons.woff │ │ │ │ │ └── license.txt │ │ │ │ └── icomoon │ │ │ │ │ ├── icomoon.eot │ │ │ │ │ ├── icomoon.svg │ │ │ │ │ ├── icomoon.ttf │ │ │ │ │ └── icomoon.woff │ │ │ ├── img │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ ├── argentina.svg │ │ │ │ ├── brazil.svg │ │ │ │ ├── france.svg │ │ │ │ └── south-africa.svg │ │ │ ├── index.html │ │ │ ├── index2.html │ │ │ ├── index3.html │ │ │ ├── index4.html │ │ │ ├── index5.html │ │ │ ├── index6.html │ │ │ ├── index7.html │ │ │ ├── index8.html │ │ │ ├── js │ │ │ │ ├── classie.js │ │ │ │ └── selectFx.js │ │ │ └── multiple.html │ │ │ └── themify-icons │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ └── themify-icons.css │ │ │ ├── fonts │ │ │ ├── themify.eot │ │ │ ├── themify.svg │ │ │ ├── themify.ttf │ │ │ └── themify.woff │ │ │ └── ie7 │ │ │ ├── ie7.css │ │ │ └── ie7.js │ ├── frontend │ │ ├── css │ │ │ ├── animate.css │ │ │ ├── bootstrap.min.css │ │ │ ├── default.css │ │ │ ├── font-awesome.min.css │ │ │ ├── jquery.nice-number.min.css │ │ │ ├── magnific-popup.css │ │ │ ├── nice-select.css │ │ │ ├── responsive.css │ │ │ ├── slick.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── fontawesome-webfont3e6e.eot │ │ │ ├── fontawesome-webfont3e6e.svg │ │ │ ├── fontawesome-webfont3e6e.ttf │ │ │ ├── fontawesome-webfont3e6e.woff │ │ │ ├── fontawesome-webfont3e6e.woff2 │ │ │ └── fontawesome-webfontd41d.eot │ │ ├── images │ │ │ ├── about │ │ │ │ ├── about-2.jpg │ │ │ │ └── bg-1.png │ │ │ ├── all-icon │ │ │ │ ├── book.png │ │ │ │ ├── call.png │ │ │ │ ├── ctg-1.png │ │ │ │ ├── ctg-2.png │ │ │ │ ├── ctg-3.png │ │ │ │ ├── email.png │ │ │ │ ├── expert.png │ │ │ │ ├── f-1.png │ │ │ │ ├── f-2.png │ │ │ │ ├── f-3.png │ │ │ │ ├── man.png │ │ │ │ ├── map.png │ │ │ │ └── support.png │ │ │ ├── bg-1.jpg │ │ │ ├── bg-2.jpg │ │ │ ├── bg-3.jpg │ │ │ ├── blog │ │ │ │ ├── b-1.jpg │ │ │ │ ├── b-2.jpg │ │ │ │ └── blog-post │ │ │ │ │ ├── bp-1.jpg │ │ │ │ │ └── bp-2.jpg │ │ │ ├── category │ │ │ │ ├── ctg-1.jpg │ │ │ │ ├── ctg-2.jpg │ │ │ │ ├── ctg-3.jpg │ │ │ │ ├── ctg-4.jpg │ │ │ │ ├── ctg-5.jpg │ │ │ │ └── ctg-6.jpg │ │ │ ├── course │ │ │ │ ├── cu-1.jpg │ │ │ │ ├── cu-2.jpg │ │ │ │ ├── cu-3.jpg │ │ │ │ ├── cu-4.jpg │ │ │ │ ├── cu-5.jpg │ │ │ │ └── teacher │ │ │ │ │ ├── t-1.jpg │ │ │ │ │ ├── t-2.jpg │ │ │ │ │ ├── t-3.jpg │ │ │ │ │ ├── t-4.jpg │ │ │ │ │ └── t-5.jpg │ │ │ ├── event │ │ │ │ ├── e-1.jpg │ │ │ │ ├── e-2.jpg │ │ │ │ ├── e-3.jpg │ │ │ │ ├── e-4.jpg │ │ │ │ └── singel-event │ │ │ │ │ ├── coundown.jpg │ │ │ │ │ └── se-1.jpg │ │ │ ├── favicon.png │ │ │ ├── instructor │ │ │ │ └── i-1.jpg │ │ │ ├── logo-2.png │ │ │ ├── logo.png │ │ │ ├── news │ │ │ │ ├── n-1.jpg │ │ │ │ ├── ns-1.jpg │ │ │ │ ├── ns-2.jpg │ │ │ │ └── ns-3.jpg │ │ │ ├── page-banner-1.jpg │ │ │ ├── page-banner-2.jpg │ │ │ ├── page-banner-3.jpg │ │ │ ├── page-banner-4.jpg │ │ │ ├── page-banner-5.jpg │ │ │ ├── page-banner-6.jpg │ │ │ ├── patnar-logo │ │ │ │ ├── p-1.png │ │ │ │ ├── p-2.png │ │ │ │ ├── p-3.png │ │ │ │ └── p-4.png │ │ │ ├── publication │ │ │ │ ├── p-1.jpg │ │ │ │ ├── p-2.jpg │ │ │ │ ├── p-3.jpg │ │ │ │ ├── p-4.jpg │ │ │ │ ├── p-5.jpg │ │ │ │ ├── p-6.jpg │ │ │ │ ├── p-7.jpg │ │ │ │ └── p-8.jpg │ │ │ ├── review │ │ │ │ ├── r-1.jpg │ │ │ │ ├── r-2.jpg │ │ │ │ └── r-3.jpg │ │ │ ├── shop-singel │ │ │ │ ├── ss-1.jpg │ │ │ │ ├── ss-2.jpg │ │ │ │ ├── ss-3.jpg │ │ │ │ ├── ss-s1.jpg │ │ │ │ ├── ss-s2.jpg │ │ │ │ └── ss-s3.jpg │ │ │ ├── slider │ │ │ │ ├── s-1.jpg │ │ │ │ ├── s-2.jpg │ │ │ │ └── s-3.jpg │ │ │ ├── teachers │ │ │ │ ├── t-1.jpg │ │ │ │ ├── t-2.jpg │ │ │ │ ├── t-3.jpg │ │ │ │ ├── t-4.jpg │ │ │ │ ├── t-5.jpg │ │ │ │ ├── t-6.jpg │ │ │ │ ├── t-7.jpg │ │ │ │ ├── t-8.jpg │ │ │ │ └── teacher-2 │ │ │ │ │ ├── happy.png │ │ │ │ │ ├── quote.png │ │ │ │ │ ├── tc-1.jpg │ │ │ │ │ └── tc-2.jpg │ │ │ ├── testimonial │ │ │ │ ├── t-1.jpg │ │ │ │ ├── t-2.jpg │ │ │ │ └── t-3.jpg │ │ │ └── your-make │ │ │ │ └── y-1.jpg │ │ └── js │ │ │ ├── ajax-contact.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery.countdown.min.js │ │ │ ├── jquery.counterup.min.js │ │ │ ├── jquery.magnific-popup.min.js │ │ │ ├── jquery.nice-number.min.js │ │ │ ├── jquery.nice-select.min.js │ │ │ ├── main.js │ │ │ ├── map-script.js │ │ │ ├── slick.min.js │ │ │ ├── validator.min.js │ │ │ ├── vendor │ │ │ ├── jquery-1.12.4.min.js │ │ │ └── modernizr-3.6.0.min.js │ │ │ └── waypoints.min.js │ └── placeholder.png ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt └── vendor │ ├── flash │ ├── css │ │ └── flash.min.css │ ├── icons │ │ ├── cancel.png │ │ ├── checked.png │ │ ├── complain.png │ │ └── information.png │ └── js │ │ ├── flash.min.js │ │ └── jquery.min.js │ ├── icons │ ├── cancel.png │ ├── checked.png │ ├── complain.png │ └── information.png │ └── laraberg │ ├── css │ ├── laraberg.css │ └── laraberg.css.map │ ├── img │ └── placeholder.jpg │ └── js │ ├── laraberg.js │ ├── laraberg.js.LICENSE.txt │ └── laraberg.js.map ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── admin_home.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── components │ └── modalDelete.blade.php │ ├── home.blade.php │ ├── jambasangsang │ ├── backend │ │ ├── categories │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── field.blade.php │ │ │ ├── index.blade.php │ │ │ ├── show.blade.php │ │ │ └── table.blade.php │ │ ├── courses │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── field.blade.php │ │ │ ├── index.blade.php │ │ │ ├── show.blade.php │ │ │ └── table.blade.php │ │ ├── events │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── fields.blade.php │ │ │ ├── index.blade.php │ │ │ ├── show.blade.php │ │ │ └── table.blade.php │ │ ├── instructors │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── show.blade.php │ │ │ └── table.blade.php │ │ ├── lessons │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── show.blade.php │ │ │ └── table.blade.php │ │ ├── news │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── fields.blade.php │ │ │ ├── index.blade.php │ │ │ ├── show.blade.php │ │ │ └── table.blade.php │ │ ├── roles │ │ │ ├── _permissions.blade.php │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── show.blade.php │ │ │ └── table.blade.php │ │ ├── settings │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── fields.blade.php │ │ │ ├── index.blade.php │ │ │ ├── show.blade.php │ │ │ └── table.blade.php │ │ ├── students │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── show.blade.php │ │ │ └── table.blade.php │ │ └── users │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── field.blade.php │ │ │ ├── index.blade.php │ │ │ ├── show.blade.php │ │ │ └── table.blade.php │ └── frontend │ │ ├── about │ │ └── aboutUs.blade.php │ │ ├── contact │ │ └── contactUs.blade.php │ │ ├── courses │ │ ├── curriculum.blade.php │ │ ├── description.blade.php │ │ ├── index.blade.php │ │ ├── instructor.blade.php │ │ ├── reviews.blade.php │ │ ├── single.blade.php │ │ └── teachers.blade.php │ │ ├── events │ │ ├── index.blade.php │ │ └── single.blade.php │ │ ├── home │ │ ├── about.blade.php │ │ ├── apply.blade.php │ │ ├── category.blade.php │ │ ├── course_part.blade.php │ │ ├── news.blade.php │ │ ├── partners.blade.php │ │ ├── publication.blade.php │ │ ├── search.blade.php │ │ ├── slider.blade.php │ │ ├── teachers.blade.php │ │ ├── testimonial.blade.php │ │ └── video_features.blade.php │ │ ├── news │ │ ├── index.blade.php │ │ └── single.blade.php │ │ └── teachers │ │ ├── index.blade.php │ │ └── single.blade.php │ ├── layouts │ ├── app.blade.php │ ├── backend │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── master.blade.php │ │ └── sidebar.blade.php │ └── frontend │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── master.blade.php │ │ ├── navbar.blade.php │ │ └── sidebar.blade.php │ ├── livewire │ ├── add-to-cart-counter.blade.php │ ├── cart.blade.php │ ├── global-login.blade.php │ ├── login.blade.php │ ├── payment.blade.php │ └── register.blade.php │ ├── student_home.blade.php │ ├── vendor │ └── flash │ │ └── flash.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/CommentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/CourseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/CourseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/EventController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/EventController.php -------------------------------------------------------------------------------- /app/Http/Controllers/FrontEnd/AboutUsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/FrontEnd/AboutUsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/FrontEnd/ContactUsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/FrontEnd/ContactUsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/FrontEnd/CourseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/FrontEnd/CourseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/FrontEnd/FrontEndController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/FrontEnd/FrontEndController.php -------------------------------------------------------------------------------- /app/Http/Controllers/FrontEnd/FrontEndEventController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/FrontEnd/FrontEndEventController.php -------------------------------------------------------------------------------- /app/Http/Controllers/FrontEnd/TeacherController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/FrontEnd/TeacherController.php -------------------------------------------------------------------------------- /app/Http/Controllers/FrontEnd/WebsiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/FrontEnd/WebsiteController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/InstructorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/InstructorController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LessonController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/LessonController.php -------------------------------------------------------------------------------- /app/Http/Controllers/NewsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/NewsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PaymentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/PaymentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/QuizController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/QuizController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ReviewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/ReviewController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/RoleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/SettingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SliderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/SliderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/StudentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/StudentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Livewire/AddToCartCounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Livewire/AddToCartCounter.php -------------------------------------------------------------------------------- /app/Http/Livewire/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Livewire/Cart.php -------------------------------------------------------------------------------- /app/Http/Livewire/GlobalLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Livewire/GlobalLogin.php -------------------------------------------------------------------------------- /app/Http/Livewire/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Livewire/Login.php -------------------------------------------------------------------------------- /app/Http/Livewire/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Livewire/Payment.php -------------------------------------------------------------------------------- /app/Http/Livewire/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Livewire/Register.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Role/StoreRoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/Role/StoreRoleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Role/UpdateRoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/Role/UpdateRoleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreCategoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/StoreCategoryRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreCommentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/StoreCommentRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreCourseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/StoreCourseRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreEventRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/StoreEventRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreInstructorRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/StoreInstructorRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreLessonRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/StoreLessonRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreNewsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/StoreNewsRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreQuizRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/StoreQuizRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreReviewRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/StoreReviewRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreSliderRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/StoreSliderRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreStudentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/StoreStudentRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/StoreUserRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateCategoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/UpdateCategoryRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateCommentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/UpdateCommentRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateCourseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/UpdateCourseRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateEventRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/UpdateEventRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateInstructorRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/UpdateInstructorRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateLessonRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/UpdateLessonRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateNewsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/UpdateNewsRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateQuizRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/UpdateQuizRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateReviewRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/UpdateReviewRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateSliderRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/UpdateSliderRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateStudentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/UpdateStudentRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Http/Requests/UpdateUserRequest.php -------------------------------------------------------------------------------- /app/Models/AddToCart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/AddToCart.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/Course.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Course.php -------------------------------------------------------------------------------- /app/Models/CourseOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/CourseOrder.php -------------------------------------------------------------------------------- /app/Models/CourseUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/CourseUser.php -------------------------------------------------------------------------------- /app/Models/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Event.php -------------------------------------------------------------------------------- /app/Models/Instructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Instructor.php -------------------------------------------------------------------------------- /app/Models/Lesson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Lesson.php -------------------------------------------------------------------------------- /app/Models/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Message.php -------------------------------------------------------------------------------- /app/Models/News.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/News.php -------------------------------------------------------------------------------- /app/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Order.php -------------------------------------------------------------------------------- /app/Models/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Permission.php -------------------------------------------------------------------------------- /app/Models/Quiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Quiz.php -------------------------------------------------------------------------------- /app/Models/Review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Review.php -------------------------------------------------------------------------------- /app/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Role.php -------------------------------------------------------------------------------- /app/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Setting.php -------------------------------------------------------------------------------- /app/Models/Slider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Slider.php -------------------------------------------------------------------------------- /app/Models/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/Student.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/User_old.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Models/User_old.php -------------------------------------------------------------------------------- /app/Policies/CategoryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Policies/CategoryPolicy.php -------------------------------------------------------------------------------- /app/Policies/CommentPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Policies/CommentPolicy.php -------------------------------------------------------------------------------- /app/Policies/EventPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Policies/EventPolicy.php -------------------------------------------------------------------------------- /app/Policies/InstructorPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Policies/InstructorPolicy.php -------------------------------------------------------------------------------- /app/Policies/NewsPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Policies/NewsPolicy.php -------------------------------------------------------------------------------- /app/Policies/QuizPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Policies/QuizPolicy.php -------------------------------------------------------------------------------- /app/Policies/ReviewPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Policies/ReviewPolicy.php -------------------------------------------------------------------------------- /app/Policies/SliderPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Policies/SliderPolicy.php -------------------------------------------------------------------------------- /app/Policies/StudentPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Policies/StudentPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/SettingsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Providers/SettingsServiceProvider.php -------------------------------------------------------------------------------- /app/Repositories/Contracts/PermissionRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Repositories/Contracts/PermissionRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Contracts/RoleRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Repositories/Contracts/RoleRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Contracts/UserRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Repositories/Contracts/UserRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/EloquentPermissionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Repositories/EloquentPermissionRepository.php -------------------------------------------------------------------------------- /app/Repositories/EloquentRoleRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Repositories/EloquentRoleRepository.php -------------------------------------------------------------------------------- /app/Repositories/EloquentUserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Repositories/EloquentUserRepository.php -------------------------------------------------------------------------------- /app/Traits/Authorizable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Traits/Authorizable.php -------------------------------------------------------------------------------- /app/Traits/Slugable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/Traits/Slugable.php -------------------------------------------------------------------------------- /app/jambasangsang/constant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/jambasangsang/constant.php -------------------------------------------------------------------------------- /app/jambasangsang/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/app/jambasangsang/helper.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/flash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/flash.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/laraberg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/laraberg.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/paypal.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/CommentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/factories/CommentFactory.php -------------------------------------------------------------------------------- /database/factories/CourseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/factories/CourseFactory.php -------------------------------------------------------------------------------- /database/factories/EventFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/factories/EventFactory.php -------------------------------------------------------------------------------- /database/factories/InstructorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/factories/InstructorFactory.php -------------------------------------------------------------------------------- /database/factories/NewsFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/factories/NewsFactory.php -------------------------------------------------------------------------------- /database/factories/QuizFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/factories/QuizFactory.php -------------------------------------------------------------------------------- /database/factories/ReviewFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/factories/ReviewFactory.php -------------------------------------------------------------------------------- /database/factories/SliderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/factories/SliderFactory.php -------------------------------------------------------------------------------- /database/factories/StudentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/factories/StudentFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2022_06_14_115957_create_events_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/migrations/2022_06_14_115957_create_events_table.php -------------------------------------------------------------------------------- /database/migrations/2022_06_16_121147_create_news_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/migrations/2022_06_16_121147_create_news_table.php -------------------------------------------------------------------------------- /database/migrations/2022_07_01_123030_create_orders_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/migrations/2022_07_01_123030_create_orders_table.php -------------------------------------------------------------------------------- /database/seeders/CategorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/CategorySeeder.php -------------------------------------------------------------------------------- /database/seeders/CommentSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/CommentSeeder.php -------------------------------------------------------------------------------- /database/seeders/CourseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/CourseSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder_old.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/DatabaseSeeder_old.php -------------------------------------------------------------------------------- /database/seeders/EventSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/EventSeeder.php -------------------------------------------------------------------------------- /database/seeders/InstructorSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/InstructorSeeder.php -------------------------------------------------------------------------------- /database/seeders/NewsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/NewsSeeder.php -------------------------------------------------------------------------------- /database/seeders/QuizSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/QuizSeeder.php -------------------------------------------------------------------------------- /database/seeders/ReviewSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/ReviewSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoleAndPermissionSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/RoleAndPermissionSeeder.php -------------------------------------------------------------------------------- /database/seeders/SettingsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/SettingsTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/SliderSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/SliderSeeder.php -------------------------------------------------------------------------------- /database/seeders/StudentSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/database/seeders/StudentSeeder.php -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/course/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/lang/en/course/actions.php -------------------------------------------------------------------------------- /lang/en/course/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/lang/en/course/fields.php -------------------------------------------------------------------------------- /lang/en/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/lang/en/general.php -------------------------------------------------------------------------------- /lang/en/lesson/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/lang/en/lesson/actions.php -------------------------------------------------------------------------------- /lang/en/lesson/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/lang/en/lesson/fields.php -------------------------------------------------------------------------------- /lang/en/lesson/lessons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/lang/en/lesson/lessons.php -------------------------------------------------------------------------------- /lang/en/menus.php: -------------------------------------------------------------------------------- 1 | "Admin"]; 3 | -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/lang/en/roles.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/index.php -------------------------------------------------------------------------------- /public/jambasangsang/assets/news/images/1655655482_ns-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/assets/news/images/1655655482_ns-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/assets/news/images/1655655496_n-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/assets/news/images/1655655496_n-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/assets/news/images/1655655531_ns-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/assets/news/images/1655655531_ns-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/assets/news/images/1655655545_ns-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/assets/news/images/1655655545_ns-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/assets/news/images/1655655571_n-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/assets/news/images/1655655571_n-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/assets/sliders/1655656697_s-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/assets/sliders/1655656697_s-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/assets/sliders/1655656753_s-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/assets/sliders/1655656753_s-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/assets/sliders/1655656780_s-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/assets/sliders/1655656780_s-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/backend/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/assets/css/style.css -------------------------------------------------------------------------------- /public/jambasangsang/backend/assets/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/assets/css/style.css.map -------------------------------------------------------------------------------- /public/jambasangsang/backend/assets/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/assets/js/dashboard.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/assets/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/assets/js/main.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/assets/js/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/assets/js/widgets.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/assets/scss/_gauge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/assets/scss/_gauge.scss -------------------------------------------------------------------------------- /public/jambasangsang/backend/assets/scss/_socials.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/assets/scss/_socials.scss -------------------------------------------------------------------------------- /public/jambasangsang/backend/assets/scss/_switches.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/assets/scss/_switches.scss -------------------------------------------------------------------------------- /public/jambasangsang/backend/assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/assets/scss/_variables.scss -------------------------------------------------------------------------------- /public/jambasangsang/backend/assets/scss/_widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/assets/scss/_widgets.scss -------------------------------------------------------------------------------- /public/jambasangsang/backend/assets/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/assets/scss/style.scss -------------------------------------------------------------------------------- /public/jambasangsang/backend/images/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/images/admin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/images/admin.jpg -------------------------------------------------------------------------------- /public/jambasangsang/backend/images/avatar/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/images/avatar/1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/backend/images/avatar/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/images/avatar/2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/backend/images/avatar/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/images/avatar/3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/backend/images/avatar/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/images/avatar/4.jpg -------------------------------------------------------------------------------- /public/jambasangsang/backend/images/avatar/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/images/avatar/5.jpg -------------------------------------------------------------------------------- /public/jambasangsang/backend/images/avatar/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/images/avatar/6.jpg -------------------------------------------------------------------------------- /public/jambasangsang/backend/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/images/logo.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/images/logo2.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/images/placeholder.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/images/twitter_corner_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/images/twitter_corner_black.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/images/twitter_corner_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/images/twitter_corner_blue.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/animate.css/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/animate.css/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/animate.css/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/animate.css/LICENSE -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/animate.css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/animate.css/animate.css -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/animate.css/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/animate.css/bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/animate.css/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/animate.css/gulpfile.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/animate.css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/animate.css/package.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/.babelrc.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/.editorconfig -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/.eslintignore -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/.eslintrc.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/.gitattributes -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/.gitignore -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/.stylelintrc -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/.travis.yml -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/Gemfile -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/Gemfile.lock -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/LICENSE -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/README.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/_config.yml -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/build/ship.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/build/ship.sh -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/composer.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/js/dist/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/js/dist/tab.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/js/src/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/js/src/tab.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/js/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/js/src/util.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/package.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/package.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/sache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/sache.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/site/docs/4.1/examples/checkout/form-validation.css: -------------------------------------------------------------------------------- 1 | .container { 2 | max-width: 960px; 3 | } 4 | 5 | .lh-condensed { line-height: 1.25; } 6 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/site/docs/4.1/examples/navbar-static/navbar-top.css: -------------------------------------------------------------------------------- 1 | /* Show it's not fixed to the top */ 2 | body { 3 | min-height: 75rem; 4 | } 5 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/site/docs/4.1/extend/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: docs 3 | title: Extend 4 | --- 5 | 6 | todo: this entire page 7 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/bootstrap/site/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/bootstrap/site/sw.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/.editorconfig -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/.eslintrc.yml -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/.htmllintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/.htmllintrc -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/LICENSE.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/MAINTAINING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/MAINTAINING.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/README.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/book.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/composer.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/dist/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/dist/Chart.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/docs/README.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/docs/SUMMARY.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/docs/notes/README.md: -------------------------------------------------------------------------------- 1 | # Additional Notes -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/docs/style.css -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/gulpfile.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/karma.conf.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/package.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chart.js/src/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chart.js/src/chart.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chosen/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chosen/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chosen/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chosen/.travis.yml -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chosen/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chosen/LICENSE.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chosen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chosen/README.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chosen/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chosen/bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chosen/chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chosen/chosen.css -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chosen/chosen.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chosen/chosen.jquery.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chosen/chosen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chosen/chosen.min.css -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chosen/chosen.proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chosen/chosen.proto.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chosen/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chosen/composer.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/chosen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/chosen/package.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/datatables.net/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/datatables.net/Readme.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flag-icon-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flag-icon-css/README.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flag-icon-css/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flag-icon-css/bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flag-icon-css/svgo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flag-icon-css/svgo.yaml -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flag-icon-css/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flag-icon-css/yarn.lock -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/.gitignore -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/.travis.yml -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/API.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/CONTRIBUTING.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/FAQ.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/LICENSE.txt -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/Makefile -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/NEWS.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/PLUGINS.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/README.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/component.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/examples/index.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/excanvas.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/excanvas.min.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/flot.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/flot.jquery.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/jquery.flot.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/jquery.flot.time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/jquery.flot.time.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/jquery.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/flot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/flot/package.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/font-awesome/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/font-awesome/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gaugejs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gaugejs/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gaugejs/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps1 2 | node_modules -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gaugejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gaugejs/README.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gaugejs/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gaugejs/assets/bg.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gaugejs/assets/hs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gaugejs/assets/hs.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gaugejs/assets/hv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gaugejs/assets/hv.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gaugejs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gaugejs/bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gaugejs/dist/gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gaugejs/dist/gauge.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gaugejs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gaugejs/favicon.ico -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gaugejs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gaugejs/index.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gaugejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gaugejs/package.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | .DS_Store -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/CONTRIBUTING.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/Gruntfile.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/README.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/docs/GMaps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/docs/GMaps.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/docs/index.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/gmaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/gmaps.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/gmaps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/gmaps.min.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/jsdoc.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/package.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/test/index.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/test/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/test/style.css -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/gmaps/umd.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/gmaps/umd.hbs -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery-validation-unobtrusive/test/webpacktest/src/index.js: -------------------------------------------------------------------------------- 1 | import _ from "jquery-validation-unobtrusive" -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery-validation-unobtrusive/version.props: -------------------------------------------------------------------------------- 1 | 3.2.11 2 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/LICENSE.txt -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/README.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/dist/jquery.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/src/.jshintrc -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/src/ajax.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/src/core.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/src/css.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/src/data.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/src/effects.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/src/event.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/src/intro.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/src/jquery.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/src/offset.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/src/queue.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jquery/src/wrap.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jqvmap/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jqvmap/LICENSE -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jqvmap/README.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/REGIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jqvmap/REGIONS.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jqvmap/bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/grunt/bump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jqvmap/grunt/bump.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/grunt/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jqvmap/grunt/clean.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/grunt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jqvmap/grunt/index.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/grunt/qunit.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dist: ['tests/*.html'] 3 | }; 4 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/grunt/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jqvmap/grunt/shell.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jqvmap/gruntfile.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jqvmap/package.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/src/Base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jqvmap/src/Base.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jqvmap/src/JQVMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jqvmap/src/JQVMap.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/CHANGES.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/Gruntfile.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/README.markdown -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/_config.yml -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/component.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/dist/jszip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/dist/jszip.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/documentation/examples/get-binary-files-ajax.inc/fetch_api.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/documentation/examples/get-binary-files-ajax.inc/jszip_utils.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/index.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/lib/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/lib/base64.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/lib/crc32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/lib/crc32.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/lib/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/lib/defaults.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/lib/external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/lib/external.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/lib/flate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/lib/flate.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/lib/index.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/lib/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/lib/load.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/lib/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/lib/object.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/lib/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/lib/support.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/lib/utf8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/lib/utf8.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/lib/utils.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/lib/zipEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/lib/zipEntry.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/jszip/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/jszip/package.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/pdfmake/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/pdfmake/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/pdfmake/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/pdfmake/LICENSE -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/pdfmake/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/pdfmake/bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/.gitignore -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/.travis.yml -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/Gemfile -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/Gemfile.lock -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/LICENCE -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/Makefile -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/README.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/bin/update_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/bin/update_docs -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/composer.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/docs/style.css -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/index.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/jquery.peity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/jquery.peity.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/package.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/test/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/test/app.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/test/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/test/chart.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/test/index.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/test/server.js -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/test/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/test/style.css -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/peity/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/peity/yarn.lock -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/popper.js/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/popper.js/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/popper.js/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/popper.js/LICENSE.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/popper.js/MENTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/popper.js/MENTIONS.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/popper.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/popper.js/README.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/popper.js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/popper.js/bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/popper.js/docs/CNAME: -------------------------------------------------------------------------------- 1 | popper.js.org 2 | -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/popper.js/lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/popper.js/lerna.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/popper.js/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/popper.js/yarn.lock -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/.bower.json -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/README.md -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/css/demo.css -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/img/1.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/img/2.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/img/3.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/img/4.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/img/5.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/img/6.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/img/7.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/img/8.png -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/index.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/index2.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/index3.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/index4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/index4.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/index5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/index5.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/index6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/index6.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/index7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/index7.html -------------------------------------------------------------------------------- /public/jambasangsang/backend/vendors/selectFX/index8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/backend/vendors/selectFX/index8.html -------------------------------------------------------------------------------- /public/jambasangsang/frontend/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/css/animate.css -------------------------------------------------------------------------------- /public/jambasangsang/frontend/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/jambasangsang/frontend/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/css/default.css -------------------------------------------------------------------------------- /public/jambasangsang/frontend/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/css/font-awesome.min.css -------------------------------------------------------------------------------- /public/jambasangsang/frontend/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/css/magnific-popup.css -------------------------------------------------------------------------------- /public/jambasangsang/frontend/css/nice-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/css/nice-select.css -------------------------------------------------------------------------------- /public/jambasangsang/frontend/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/css/responsive.css -------------------------------------------------------------------------------- /public/jambasangsang/frontend/css/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/css/slick.css -------------------------------------------------------------------------------- /public/jambasangsang/frontend/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/css/style.css -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/about/about-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/about/about-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/about/bg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/about/bg-1.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/all-icon/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/all-icon/book.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/all-icon/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/all-icon/call.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/all-icon/ctg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/all-icon/ctg-1.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/all-icon/ctg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/all-icon/ctg-2.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/all-icon/ctg-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/all-icon/ctg-3.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/all-icon/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/all-icon/email.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/all-icon/expert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/all-icon/expert.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/all-icon/f-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/all-icon/f-1.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/all-icon/f-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/all-icon/f-2.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/all-icon/f-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/all-icon/f-3.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/all-icon/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/all-icon/man.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/all-icon/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/all-icon/map.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/all-icon/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/all-icon/support.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/bg-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/bg-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/bg-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/bg-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/blog/b-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/blog/b-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/blog/b-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/blog/b-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/category/ctg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/category/ctg-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/category/ctg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/category/ctg-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/category/ctg-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/category/ctg-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/category/ctg-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/category/ctg-4.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/category/ctg-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/category/ctg-5.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/category/ctg-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/category/ctg-6.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/course/cu-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/course/cu-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/course/cu-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/course/cu-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/course/cu-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/course/cu-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/course/cu-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/course/cu-4.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/course/cu-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/course/cu-5.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/event/e-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/event/e-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/event/e-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/event/e-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/event/e-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/event/e-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/event/e-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/event/e-4.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/favicon.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/instructor/i-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/instructor/i-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/logo-2.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/logo.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/news/n-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/news/n-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/news/ns-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/news/ns-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/news/ns-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/news/ns-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/news/ns-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/news/ns-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/page-banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/page-banner-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/page-banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/page-banner-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/page-banner-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/page-banner-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/page-banner-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/page-banner-4.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/page-banner-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/page-banner-5.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/page-banner-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/page-banner-6.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/patnar-logo/p-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/patnar-logo/p-1.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/patnar-logo/p-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/patnar-logo/p-2.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/patnar-logo/p-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/patnar-logo/p-3.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/patnar-logo/p-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/patnar-logo/p-4.png -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/publication/p-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/publication/p-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/publication/p-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/publication/p-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/publication/p-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/publication/p-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/publication/p-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/publication/p-4.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/publication/p-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/publication/p-5.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/publication/p-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/publication/p-6.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/publication/p-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/publication/p-7.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/publication/p-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/publication/p-8.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/review/r-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/review/r-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/review/r-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/review/r-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/review/r-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/review/r-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/shop-singel/ss-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/shop-singel/ss-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/shop-singel/ss-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/shop-singel/ss-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/shop-singel/ss-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/shop-singel/ss-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/shop-singel/ss-s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/shop-singel/ss-s1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/shop-singel/ss-s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/shop-singel/ss-s2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/shop-singel/ss-s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/shop-singel/ss-s3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/slider/s-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/slider/s-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/slider/s-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/slider/s-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/slider/s-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/slider/s-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/teachers/t-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/teachers/t-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/teachers/t-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/teachers/t-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/teachers/t-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/teachers/t-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/teachers/t-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/teachers/t-4.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/teachers/t-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/teachers/t-5.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/teachers/t-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/teachers/t-6.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/teachers/t-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/teachers/t-7.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/teachers/t-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/teachers/t-8.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/testimonial/t-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/testimonial/t-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/testimonial/t-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/testimonial/t-2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/testimonial/t-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/testimonial/t-3.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/images/your-make/y-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/images/your-make/y-1.jpg -------------------------------------------------------------------------------- /public/jambasangsang/frontend/js/ajax-contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/js/ajax-contact.js -------------------------------------------------------------------------------- /public/jambasangsang/frontend/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/jambasangsang/frontend/js/jquery.countdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/js/jquery.countdown.min.js -------------------------------------------------------------------------------- /public/jambasangsang/frontend/js/jquery.counterup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/js/jquery.counterup.min.js -------------------------------------------------------------------------------- /public/jambasangsang/frontend/js/jquery.nice-number.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/js/jquery.nice-number.min.js -------------------------------------------------------------------------------- /public/jambasangsang/frontend/js/jquery.nice-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/js/jquery.nice-select.min.js -------------------------------------------------------------------------------- /public/jambasangsang/frontend/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/js/main.js -------------------------------------------------------------------------------- /public/jambasangsang/frontend/js/map-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/js/map-script.js -------------------------------------------------------------------------------- /public/jambasangsang/frontend/js/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/js/slick.min.js -------------------------------------------------------------------------------- /public/jambasangsang/frontend/js/validator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/js/validator.min.js -------------------------------------------------------------------------------- /public/jambasangsang/frontend/js/waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/frontend/js/waypoints.min.js -------------------------------------------------------------------------------- /public/jambasangsang/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/jambasangsang/placeholder.png -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/flash/css/flash.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/flash/css/flash.min.css -------------------------------------------------------------------------------- /public/vendor/flash/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/flash/icons/cancel.png -------------------------------------------------------------------------------- /public/vendor/flash/icons/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/flash/icons/checked.png -------------------------------------------------------------------------------- /public/vendor/flash/icons/complain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/flash/icons/complain.png -------------------------------------------------------------------------------- /public/vendor/flash/icons/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/flash/icons/information.png -------------------------------------------------------------------------------- /public/vendor/flash/js/flash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/flash/js/flash.min.js -------------------------------------------------------------------------------- /public/vendor/flash/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/flash/js/jquery.min.js -------------------------------------------------------------------------------- /public/vendor/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/icons/cancel.png -------------------------------------------------------------------------------- /public/vendor/icons/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/icons/checked.png -------------------------------------------------------------------------------- /public/vendor/icons/complain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/icons/complain.png -------------------------------------------------------------------------------- /public/vendor/icons/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/icons/information.png -------------------------------------------------------------------------------- /public/vendor/laraberg/css/laraberg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/laraberg/css/laraberg.css -------------------------------------------------------------------------------- /public/vendor/laraberg/css/laraberg.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/laraberg/css/laraberg.css.map -------------------------------------------------------------------------------- /public/vendor/laraberg/img/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/laraberg/img/placeholder.jpg -------------------------------------------------------------------------------- /public/vendor/laraberg/js/laraberg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/laraberg/js/laraberg.js -------------------------------------------------------------------------------- /public/vendor/laraberg/js/laraberg.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/laraberg/js/laraberg.js.LICENSE.txt -------------------------------------------------------------------------------- /public/vendor/laraberg/js/laraberg.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/public/vendor/laraberg/js/laraberg.js.map -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/admin_home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/admin_home.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/auth/passwords/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/components/modalDelete.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/components/modalDelete.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/jambasangsang/backend/lessons/table.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/jambasangsang/backend/news/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/jambasangsang/backend/news/edit.blade.php -------------------------------------------------------------------------------- /resources/views/jambasangsang/backend/news/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/jambasangsang/backend/news/index.blade.php -------------------------------------------------------------------------------- /resources/views/jambasangsang/backend/news/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/jambasangsang/backend/news/show.blade.php -------------------------------------------------------------------------------- /resources/views/jambasangsang/backend/news/table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/jambasangsang/backend/news/table.blade.php -------------------------------------------------------------------------------- /resources/views/jambasangsang/backend/roles/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/jambasangsang/backend/roles/edit.blade.php -------------------------------------------------------------------------------- /resources/views/jambasangsang/backend/roles/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/jambasangsang/backend/roles/show.blade.php -------------------------------------------------------------------------------- /resources/views/jambasangsang/backend/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/jambasangsang/backend/users/edit.blade.php -------------------------------------------------------------------------------- /resources/views/jambasangsang/backend/users/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/jambasangsang/backend/users/show.blade.php -------------------------------------------------------------------------------- /resources/views/jambasangsang/frontend/home/news.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/jambasangsang/frontend/home/news.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/backend/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/layouts/backend/footer.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/backend/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/layouts/backend/header.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/backend/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/layouts/backend/master.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/backend/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/layouts/backend/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/frontend/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/layouts/frontend/footer.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/frontend/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/layouts/frontend/header.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/frontend/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/layouts/frontend/master.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/frontend/navbar.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/layouts/frontend/sidebar.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/livewire/add-to-cart-counter.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/livewire/add-to-cart-counter.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/cart.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/livewire/cart.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/global-login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/livewire/global-login.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/livewire/login.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/payment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/livewire/payment.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/livewire/register.blade.php -------------------------------------------------------------------------------- /resources/views/student_home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/student_home.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/flash/flash.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/vendor/flash/flash.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-lms-laravel-learn-management-system-step-by-step-2022-free-source-code/HEAD/webpack.mix.js --------------------------------------------------------------------------------