gitextract_2jut_fdk/ ├── .circleci/ │ └── config.yml ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .styleci.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── app/ │ ├── Console/ │ │ ├── Commands/ │ │ │ └── CreateAdminCommand.php │ │ └── Kernel.php │ ├── Exceptions/ │ │ └── Handler.php │ ├── Exports/ │ │ └── LaporanExport.php │ ├── Helpers/ │ │ └── Model.php │ ├── Http/ │ │ ├── Controllers/ │ │ │ ├── Admin/ │ │ │ │ ├── AdminController.php │ │ │ │ ├── CustomerController.php │ │ │ │ ├── DokumentasiController.php │ │ │ │ ├── FinanceController.php │ │ │ │ ├── KaryawanController.php │ │ │ │ ├── SettingsController.php │ │ │ │ └── TransaksiController.php │ │ │ ├── Auth/ │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ └── VerificationController.php │ │ │ ├── Controller.php │ │ │ ├── Customer/ │ │ │ │ ├── ProfileController.php │ │ │ │ └── SettingController.php │ │ │ ├── FrontController.php │ │ │ ├── HomeController.php │ │ │ └── Karyawan/ │ │ │ ├── CustomerController.php │ │ │ ├── InvoiceController.php │ │ │ ├── LaporanController.php │ │ │ ├── PelayananController.php │ │ │ ├── ProfileController.php │ │ │ └── SettingsController.php │ │ ├── Kernel.php │ │ ├── Middleware/ │ │ │ ├── Authenticate.php │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ │ └── Requests/ │ │ ├── AddCustomerRequest.php │ │ ├── AddKaryawanRequest.php │ │ ├── AddOrderRequest.php │ │ ├── HargaRequest.php │ │ ├── LoginRequest.php │ │ └── UpdateProfilRequest.php │ ├── Jobs/ │ │ ├── DoneCustomerJob.php │ │ ├── OrderCustomerJob.php │ │ └── RegisterCustomerJob.php │ ├── Mail/ │ │ ├── DoneCustomer.php │ │ ├── OrderCustomer.php │ │ └── RegisterCustomer.php │ ├── Models/ │ │ ├── Bank.php │ │ ├── DataBank.php │ │ ├── LaundrySetting.php │ │ ├── Notification.php │ │ ├── PageSettings.php │ │ ├── User.php │ │ ├── harga.php │ │ ├── notifications_setting.php │ │ └── transaksi.php │ ├── Notifications/ │ │ ├── OrderMasuk.php │ │ └── OrderSelesai.php │ └── Providers/ │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap/ │ ├── app.php │ └── cache/ │ └── .gitignore ├── composer.json ├── config/ │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── excel.php │ ├── filesystems.php │ ├── hashing.php │ ├── logging.php │ ├── mail.php │ ├── permission.php │ ├── queue.php │ ├── services.php │ ├── session.php │ ├── sweet-alert.php │ ├── sweetalert.php │ └── view.php ├── database/ │ ├── .gitignore │ ├── factories/ │ │ └── UserFactory.php │ ├── migrations/ │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2019_05_24_091904_create_transaksis_table.php │ │ ├── 2019_05_24_094505_create_hargas_table.php │ │ ├── 2021_03_19_231220_create_page_settings_table.php │ │ ├── 2021_03_21_124956_add_theme_to_users_table.php │ │ ├── 2021_03_22_001021_create_laundry_settings_table.php │ │ ├── 2021_05_07_100208_create_permission_tables.php │ │ ├── 2021_05_07_135323_create_data_banks_table.php │ │ ├── 2021_05_07_155403_add_field_in_transaksi.php │ │ ├── 2021_05_11_130732_create_notifications_settings_table.php │ │ ├── 2021_08_08_100000_create_banks_tables.php │ │ ├── 2021_12_30_231550_add_field_username_telegram_channel_to_notifications_settings_table.php │ │ ├── 2022_01_28_171610_add_field_foto_to_users_table.php │ │ ├── 2022_01_29_185408_add_field_token_wa_to_notifications_settings_table.php │ │ ├── 2022_01_31_105111_update_field_auth_in_users_table.php │ │ ├── 2022_01_31_112034_add_field_karyawan_id_wa_in_users_table.php │ │ ├── 2022_02_02_220553_create_jobs_table.php │ │ ├── 2022_02_02_231121_create_failed_jobs_table.php │ │ ├── 2022_02_03_144826_add_field_point_in_users_table.php │ │ └── 2022_09_27_125933_create_notifications_table.php │ └── seeders/ │ ├── DatabaseSeeder.php │ ├── IndoBankSeeder.php │ ├── RoleSeeder.php │ ├── SettingPageSeeder.php │ └── addRoleSeeder.php ├── package.json ├── phpunit.xml ├── public/ │ ├── .htaccess │ ├── backend/ │ │ ├── css/ │ │ │ ├── bootstrap-extended.css │ │ │ ├── bootstrap.css │ │ │ ├── colors.css │ │ │ ├── components.css │ │ │ ├── core/ │ │ │ │ ├── colors/ │ │ │ │ │ ├── palette-gradient.css │ │ │ │ │ ├── palette-noui.css │ │ │ │ │ └── palette-variables.css │ │ │ │ ├── menu/ │ │ │ │ │ └── menu-types/ │ │ │ │ │ ├── horizontal-menu.css │ │ │ │ │ ├── vertical-menu.css │ │ │ │ │ └── vertical-overlay-menu.css │ │ │ │ └── mixins/ │ │ │ │ ├── alert.css │ │ │ │ ├── hex2rgb.css │ │ │ │ ├── main-menu-mixin.css │ │ │ │ └── transitions.css │ │ │ ├── pages/ │ │ │ │ ├── aggrid.css │ │ │ │ ├── app-chat.css │ │ │ │ ├── app-ecommerce-details.css │ │ │ │ ├── app-ecommerce-shop.css │ │ │ │ ├── app-email.css │ │ │ │ ├── app-todo.css │ │ │ │ ├── app-user.css │ │ │ │ ├── app-users.css │ │ │ │ ├── authentication.css │ │ │ │ ├── card-analytics.css │ │ │ │ ├── colors.css │ │ │ │ ├── coming-soon.css │ │ │ │ ├── dashboard-analytics.css │ │ │ │ ├── dashboard-ecommerce.css │ │ │ │ ├── data-list-view.css │ │ │ │ ├── error.css │ │ │ │ ├── faq.css │ │ │ │ ├── invoice.css │ │ │ │ ├── knowledge-base.css │ │ │ │ ├── page-auth.css │ │ │ │ ├── register.css │ │ │ │ ├── search.css │ │ │ │ ├── timeline.css │ │ │ │ ├── user-settings.css │ │ │ │ └── users.css │ │ │ ├── plugins/ │ │ │ │ ├── animate/ │ │ │ │ │ └── animate.css │ │ │ │ ├── extensions/ │ │ │ │ │ ├── context-menu.css │ │ │ │ │ ├── drag-and-drop.css │ │ │ │ │ ├── media-plyr.css │ │ │ │ │ ├── noui-slider.css │ │ │ │ │ ├── swiper.css │ │ │ │ │ └── toastr.css │ │ │ │ ├── forms/ │ │ │ │ │ ├── extended/ │ │ │ │ │ │ └── typeahed.css │ │ │ │ │ ├── form-inputs-groups.css │ │ │ │ │ ├── validation/ │ │ │ │ │ │ └── form-validation.css │ │ │ │ │ └── wizard.css │ │ │ │ ├── loaders/ │ │ │ │ │ ├── animations/ │ │ │ │ │ │ ├── ball-beat.css │ │ │ │ │ │ ├── ball-clip-rotate-multiple.css │ │ │ │ │ │ ├── ball-clip-rotate-pulse.css │ │ │ │ │ │ ├── ball-clip-rotate.css │ │ │ │ │ │ ├── ball-grid-beat.css │ │ │ │ │ │ ├── ball-grid-pulse.css │ │ │ │ │ │ ├── ball-pulse-rise.css │ │ │ │ │ │ ├── ball-pulse-round.css │ │ │ │ │ │ ├── ball-pulse-sync.css │ │ │ │ │ │ ├── ball-pulse.css │ │ │ │ │ │ ├── ball-rotate.css │ │ │ │ │ │ ├── ball-scale-multiple.css │ │ │ │ │ │ ├── ball-scale-random.css │ │ │ │ │ │ ├── ball-scale-ripple-multiple.css │ │ │ │ │ │ ├── ball-scale-ripple.css │ │ │ │ │ │ ├── ball-scale.css │ │ │ │ │ │ ├── ball-spin-fade-loader.css │ │ │ │ │ │ ├── ball-spin-loader.css │ │ │ │ │ │ ├── ball-triangle-trace.css │ │ │ │ │ │ ├── ball-zig-zag-deflect.css │ │ │ │ │ │ ├── ball-zig-zag.css │ │ │ │ │ │ ├── cube-transition.css │ │ │ │ │ │ ├── line-scale-pulse-out-rapid.css │ │ │ │ │ │ ├── line-scale-pulse-out.css │ │ │ │ │ │ ├── line-scale-random.css │ │ │ │ │ │ ├── line-scale.css │ │ │ │ │ │ ├── line-spin-fade-loader.css │ │ │ │ │ │ ├── pacman.css │ │ │ │ │ │ ├── semi-circle-spin.css │ │ │ │ │ │ ├── square-spin.css │ │ │ │ │ │ └── triangle-skew-spin.css │ │ │ │ │ └── loaders.css │ │ │ │ ├── pickers/ │ │ │ │ │ └── bootstrap-datetimepicker-build.css │ │ │ │ └── ui/ │ │ │ │ └── coming-soon.css │ │ │ └── themes/ │ │ │ ├── dark-layout.css │ │ │ └── semi-dark-layout.css │ │ ├── fonts/ │ │ │ ├── feather/ │ │ │ │ └── iconfont.css │ │ │ ├── flag-icon-css/ │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── css/ │ │ │ │ │ └── flag-icon.css │ │ │ │ └── sass/ │ │ │ │ ├── flag-icon-base.scss │ │ │ │ ├── flag-icon-list.scss │ │ │ │ ├── flag-icon-more.scss │ │ │ │ ├── flag-icon.scss │ │ │ │ └── variables.scss │ │ │ └── font-awesome/ │ │ │ ├── css/ │ │ │ │ └── font-awesome.css │ │ │ └── fonts/ │ │ │ └── FontAwesome.otf │ │ ├── js/ │ │ │ ├── core/ │ │ │ │ ├── app-menu.js │ │ │ │ └── app.js │ │ │ └── scripts/ │ │ │ ├── ag-grid/ │ │ │ │ └── ag-grid.js │ │ │ ├── cards/ │ │ │ │ ├── card-analytics.js │ │ │ │ └── card-statistics.js │ │ │ ├── charts/ │ │ │ │ ├── chart-apex.js │ │ │ │ ├── chart-chartjs.js │ │ │ │ ├── chart-echart.js │ │ │ │ └── gmaps/ │ │ │ │ └── maps.js │ │ │ ├── components.js │ │ │ ├── customizer.js │ │ │ ├── datatables/ │ │ │ │ └── datatable.js │ │ │ ├── documentation.js │ │ │ ├── editors/ │ │ │ │ └── editor-quill.js │ │ │ ├── extensions/ │ │ │ │ ├── context-menu.js │ │ │ │ ├── copy-to-clipboard.js │ │ │ │ ├── drag-drop.js │ │ │ │ ├── dropzone.js │ │ │ │ ├── fullcalendar.js │ │ │ │ ├── i18n.js │ │ │ │ ├── media-plyr.js │ │ │ │ ├── noui-slider.js │ │ │ │ ├── sweet-alerts.js │ │ │ │ ├── swiper.js │ │ │ │ ├── toastr.js │ │ │ │ ├── tour.js │ │ │ │ └── unslider.js │ │ │ ├── footer.js │ │ │ ├── forms/ │ │ │ │ ├── basic-inputs.js │ │ │ │ ├── form-maxlength.js │ │ │ │ ├── form-tooltip-valid.js │ │ │ │ ├── number-input.js │ │ │ │ ├── select/ │ │ │ │ │ └── form-select2.js │ │ │ │ ├── validation/ │ │ │ │ │ └── form-validation.js │ │ │ │ └── wizard-steps.js │ │ │ ├── modal/ │ │ │ │ └── components-modal.js │ │ │ ├── navs/ │ │ │ │ └── navs.js │ │ │ ├── pages/ │ │ │ │ ├── 3-columns-left-sidebar.js │ │ │ │ ├── account-setting.js │ │ │ │ ├── app-chat.js │ │ │ │ ├── app-ecommerce-details.js │ │ │ │ ├── app-ecommerce-shop.js │ │ │ │ ├── app-email.js │ │ │ │ ├── app-todo.js │ │ │ │ ├── app-user.js │ │ │ │ ├── bootstrap-toast.js │ │ │ │ ├── coming-soon.js │ │ │ │ ├── content-sidebar.js │ │ │ │ ├── dashboard-analytics.js │ │ │ │ ├── dashboard-ecommerce.js │ │ │ │ ├── faq-kb.js │ │ │ │ ├── invoice.js │ │ │ │ ├── page-auth-reset-password.js │ │ │ │ ├── sk-content-sidebar.js │ │ │ │ ├── user-profile.js │ │ │ │ └── user-settings.js │ │ │ ├── pagination/ │ │ │ │ └── pagination.js │ │ │ ├── pickers/ │ │ │ │ └── dateTime/ │ │ │ │ └── pick-a-datetime.js │ │ │ ├── popover/ │ │ │ │ └── popover.js │ │ │ ├── tooltip/ │ │ │ │ └── tooltip.js │ │ │ └── ui/ │ │ │ └── data-list-view.js │ │ └── vendors/ │ │ ├── css/ │ │ │ ├── animate/ │ │ │ │ └── animate.css │ │ │ ├── charts/ │ │ │ │ └── apexcharts.css │ │ │ ├── documentation.css │ │ │ ├── extensions/ │ │ │ │ ├── dataTables.checkboxes.css │ │ │ │ ├── pace.css │ │ │ │ ├── plyr.css │ │ │ │ ├── shepherd-theme-default.css │ │ │ │ ├── tether-theme-arrows.css │ │ │ │ ├── toastr.css │ │ │ │ └── unslider.css │ │ │ ├── forms/ │ │ │ │ ├── select/ │ │ │ │ │ └── select2.css │ │ │ │ ├── spinner/ │ │ │ │ │ └── jquery.bootstrap-touchspin.css │ │ │ │ └── toggle/ │ │ │ │ └── switchery.css │ │ │ ├── modal/ │ │ │ │ ├── facebook.css │ │ │ │ ├── google.css │ │ │ │ └── twitter.css │ │ │ ├── pickers/ │ │ │ │ └── pickadate/ │ │ │ │ ├── classic.css │ │ │ │ ├── classic.date.css │ │ │ │ ├── classic.time.css │ │ │ │ ├── default.css │ │ │ │ ├── default.time.css │ │ │ │ └── pickadate.css │ │ │ ├── tables/ │ │ │ │ ├── ag-grid/ │ │ │ │ │ ├── ag-grid.css │ │ │ │ │ └── ag-theme-material.css │ │ │ │ └── datatable/ │ │ │ │ └── extensions/ │ │ │ │ └── dataTables.checkboxes.css │ │ │ └── ui/ │ │ │ └── prism-treeview.css │ │ └── js/ │ │ ├── charts/ │ │ │ ├── apexcharts.js │ │ │ └── echarts/ │ │ │ └── echarts.js │ │ ├── extensions/ │ │ │ ├── lang-all.js │ │ │ ├── locale-all.js │ │ │ ├── transition.js │ │ │ └── wNumb.js │ │ ├── forms/ │ │ │ ├── extended/ │ │ │ │ ├── maxlength/ │ │ │ │ │ └── bootstrap-maxlength.js │ │ │ │ └── typeahead/ │ │ │ │ └── handlebars.js │ │ │ ├── select/ │ │ │ │ ├── select2.full.js │ │ │ │ └── select2.js │ │ │ ├── spinner/ │ │ │ │ └── jquery.bootstrap-touchspin.js │ │ │ ├── toggle/ │ │ │ │ └── switchery.js │ │ │ └── validation/ │ │ │ └── jqBootstrapValidation.js │ │ ├── media/ │ │ │ ├── plyr.js │ │ │ └── plyr.polyfilled.js │ │ ├── pickers/ │ │ │ └── pickadate/ │ │ │ ├── legacy.js │ │ │ ├── picker.date.js │ │ │ ├── picker.js │ │ │ └── picker.time.js │ │ ├── tables/ │ │ │ ├── ag-grid/ │ │ │ │ └── ag-grid-community.min.noStyle.js │ │ │ └── datatable/ │ │ │ └── vfs_fonts.js │ │ ├── ui/ │ │ │ ├── affix.js │ │ │ ├── jquery-sliding-menu.js │ │ │ ├── jquery.matchHeight-min.js │ │ │ ├── jquery.sticky.js │ │ │ └── prism-treeview.js │ │ └── vendors.js │ ├── frontend/ │ │ ├── crossbrowserjs/ │ │ │ └── html5shiv.js │ │ ├── css/ │ │ │ └── forum/ │ │ │ ├── style-responsive.css │ │ │ ├── style.css │ │ │ └── theme/ │ │ │ ├── blue.css │ │ │ ├── default.css │ │ │ ├── orange.css │ │ │ ├── purple.css │ │ │ └── red.css │ │ ├── js/ │ │ │ ├── forum/ │ │ │ │ ├── apps.js │ │ │ │ └── forum-details-page.js │ │ │ └── swal/ │ │ │ └── sweetalert2.js │ │ └── plugins/ │ │ ├── animate/ │ │ │ └── animate.css │ │ ├── bootstrap3/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ └── bootstrap.css │ │ │ └── js/ │ │ │ ├── bootstrap.js │ │ │ └── npm.js │ │ ├── bootstrap4/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ └── bootstrap.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ └── bootstrap.js │ │ ├── font-awesome/ │ │ │ ├── css/ │ │ │ │ └── font-awesome.css │ │ │ ├── fonts/ │ │ │ │ └── FontAwesome.otf │ │ │ ├── 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 │ │ ├── jquery/ │ │ │ ├── jquery-1.9.1.js │ │ │ └── jquery-migrate-1.1.0.js │ │ ├── jquery-cookie/ │ │ │ └── jquery.cookie.js │ │ ├── js-cookie/ │ │ │ └── js.cookie.js │ │ ├── pace/ │ │ │ ├── .hsdoc │ │ │ ├── Gruntfile.coffee │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── docs/ │ │ │ │ ├── intro.md │ │ │ │ ├── lib/ │ │ │ │ │ ├── color.js │ │ │ │ │ ├── themes.coffee │ │ │ │ │ └── themes.js │ │ │ │ ├── resources/ │ │ │ │ │ ├── barber-pole-orange.css │ │ │ │ │ ├── flash-white.css │ │ │ │ │ └── templates/ │ │ │ │ │ ├── index.jade │ │ │ │ │ └── page.jade │ │ │ │ └── welcome/ │ │ │ │ └── index.html │ │ │ ├── install.json │ │ │ ├── pace.coffee │ │ │ ├── pace.js │ │ │ ├── package.json │ │ │ ├── templates/ │ │ │ │ ├── pace-theme-barber-shop.tmpl.css │ │ │ │ ├── pace-theme-big-counter.tmpl.css │ │ │ │ ├── pace-theme-bounce.tmpl.css │ │ │ │ ├── pace-theme-center-atom.tmpl.css │ │ │ │ ├── pace-theme-center-circle.tmpl.css │ │ │ │ ├── pace-theme-center-radar.tmpl.css │ │ │ │ ├── pace-theme-center-simple.tmpl.css │ │ │ │ ├── pace-theme-corner-indicator.tmpl.css │ │ │ │ ├── pace-theme-fill-left.tmpl.css │ │ │ │ ├── pace-theme-flash.tmpl.css │ │ │ │ ├── pace-theme-flat-top.tmpl.css │ │ │ │ ├── pace-theme-loading-bar.tmpl.css │ │ │ │ ├── pace-theme-mac-osx.tmpl.css │ │ │ │ └── pace-theme-minimal.tmpl.css │ │ │ ├── tests/ │ │ │ │ └── demo.html │ │ │ └── themes/ │ │ │ ├── black/ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ └── pace-theme-minimal.css │ │ │ ├── blue/ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ └── pace-theme-minimal.css │ │ │ ├── green/ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ └── pace-theme-minimal.css │ │ │ ├── orange/ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ └── pace-theme-minimal.css │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ ├── pace-theme-minimal.css │ │ │ ├── pink/ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ └── pace-theme-minimal.css │ │ │ ├── purple/ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ └── pace-theme-minimal.css │ │ │ ├── red/ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ └── pace-theme-minimal.css │ │ │ ├── silver/ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ └── pace-theme-minimal.css │ │ │ ├── white/ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ └── pace-theme-minimal.css │ │ │ └── yellow/ │ │ │ ├── pace-theme-barber-shop.css │ │ │ ├── pace-theme-big-counter.css │ │ │ ├── pace-theme-bounce.css │ │ │ ├── pace-theme-center-atom.css │ │ │ ├── pace-theme-center-circle.css │ │ │ ├── pace-theme-center-radar.css │ │ │ ├── pace-theme-center-simple.css │ │ │ ├── pace-theme-corner-indicator.css │ │ │ ├── pace-theme-fill-left.css │ │ │ ├── pace-theme-flash.css │ │ │ ├── pace-theme-flat-top.css │ │ │ ├── pace-theme-loading-bar.css │ │ │ ├── pace-theme-mac-osx.css │ │ │ └── pace-theme-minimal.css │ │ └── scrollMonitor/ │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── demos/ │ │ │ ├── fixed.html │ │ │ ├── list.html │ │ │ ├── listdata.json │ │ │ ├── scoreboard.html │ │ │ └── stress.html │ │ ├── package.json │ │ └── scrollMonitor.js │ ├── index.php │ ├── js/ │ │ └── app.js │ ├── mix-manifest.json │ ├── robots.txt │ └── web.config ├── readme.md ├── resources/ │ ├── js/ │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components/ │ │ ├── Contentone.vue │ │ └── contentwo.vue │ ├── lang/ │ │ └── en/ │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── sass/ │ │ ├── _variables.scss │ │ └── app.scss │ └── views/ │ ├── auth/ │ │ ├── login.blade.php │ │ ├── passwords/ │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ └── verify.blade.php │ ├── customer/ │ │ ├── index.blade.php │ │ ├── profile/ │ │ │ └── index.blade.php │ │ └── setting/ │ │ └── index.blade.php │ ├── emails/ │ │ ├── done.blade.php │ │ ├── orders.blade.php │ │ └── register.blade.php │ ├── errors/ │ │ ├── 404.blade.php │ │ └── 500.blade.php │ ├── frontend/ │ │ ├── banner.blade.php │ │ ├── content.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── index.blade.php │ │ └── modal.blade.php │ ├── karyawan/ │ │ ├── customer/ │ │ │ ├── create.blade.php │ │ │ ├── detail.blade.php │ │ │ └── index.blade.php │ │ ├── index.blade.php │ │ ├── laporan/ │ │ │ ├── cetak.blade.php │ │ │ ├── excelExport.blade.php │ │ │ ├── index.blade.php │ │ │ └── invoice.blade.php │ │ ├── profile/ │ │ │ └── index.blade.php │ │ ├── settings/ │ │ │ └── index.blade.php │ │ └── transaksi/ │ │ ├── addorder.blade.php │ │ └── order.blade.php │ ├── layouts/ │ │ ├── auth.blade.php │ │ ├── backend.blade.php │ │ ├── error.blade.php │ │ └── frontend.blade.php │ └── modul_admin/ │ ├── customer/ │ │ ├── index.blade.php │ │ ├── infoCustomer.blade.php │ │ └── jmltransaksi.blade.php │ ├── doc/ │ │ ├── index.blade.php │ │ ├── notifikasi.blade.php │ │ ├── penggunaan.blade.php │ │ ├── tentang.blade.php │ │ └── version.blade.php │ ├── finance/ │ │ └── index.blade.php │ ├── index.blade.php │ ├── laundri/ │ │ ├── editharga.blade.php │ │ └── harga.blade.php │ ├── pengguna/ │ │ ├── addkry.blade.php │ │ └── kry.blade.php │ ├── setting/ │ │ ├── index.blade.php │ │ ├── modal.blade.php │ │ └── profile.blade.php │ └── transaksi/ │ ├── index.blade.php │ └── invoice.blade.php ├── routes/ │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── server.php ├── storage/ │ ├── app/ │ │ └── .gitignore │ ├── framework/ │ │ ├── .gitignore │ │ ├── cache/ │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ ├── testing/ │ │ │ └── .gitignore │ │ └── views/ │ │ └── .gitignore │ └── logs/ │ └── .gitignore ├── stubs/ │ ├── export.model.stub │ ├── export.plain.stub │ ├── export.query-model.stub │ ├── export.query.stub │ ├── import.collection.stub │ └── import.model.stub ├── tests/ │ ├── CreatesApplication.php │ ├── Feature/ │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit/ │ └── ExampleTest.php └── webpack.mix.js