├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── Modules ├── Backup │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Database │ │ ├── Migrations │ │ │ └── .gitkeep │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── BackupDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ └── .gitkeep │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ └── BackupController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ └── .gitkeep │ ├── Providers │ │ ├── .gitkeep │ │ ├── BackupServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── backend │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ │ ├── index.blade.php │ │ │ └── layouts │ │ │ └── master.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Services │ │ └── BackupService.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Murid │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Database │ │ ├── Migrations │ │ │ └── .gitkeep │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── MuridDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ └── .gitkeep │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── MuridController.php │ │ │ ├── PembayaranController.php │ │ │ └── PerpustakaanController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── .gitkeep │ │ │ └── ConfirmPaymentRequest.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── MuridServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── index.blade.php │ │ │ ├── layouts │ │ │ └── master.blade.php │ │ │ ├── pembayaran │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ │ └── perpustakaan │ │ │ └── index.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── PPDB │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ ├── 2022_03_30_084531_create_data_orang_tuas_table.php │ │ │ └── 2022_04_01_191038_create_berkas_murids_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── PPDBDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ ├── BerkasMurid.php │ │ └── DataOrangTua.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── AuthController.php │ │ │ ├── DataMuridController.php │ │ │ ├── PPDBController.php │ │ │ └── PendaftaranController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── .gitkeep │ │ │ ├── BerkasMuridRequest.php │ │ │ ├── DataMuridRequest.php │ │ │ ├── DataOrtuRequest.php │ │ │ └── RegisterRequest.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── PPDBServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── auth │ │ │ └── register.blade.php │ │ │ ├── backend │ │ │ ├── dataMurid │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ │ ├── index.blade.php │ │ │ └── pendaftaran │ │ │ │ ├── berkas.blade.php │ │ │ │ ├── dataOrtu.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── frontend │ │ │ └── content │ │ │ │ ├── count.blade.php │ │ │ │ ├── slider.blade.php │ │ │ │ ├── studi.blade.php │ │ │ │ ├── video.blade.php │ │ │ │ └── why.blade.php │ │ │ ├── index.blade.php │ │ │ └── layouts │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ └── master.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Perpustakaan │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ ├── 2022_05_20_062053_create_authors_table.php │ │ │ ├── 2022_05_20_062103_create_publishers_table.php │ │ │ ├── 2022_05_20_062130_create_categories_table.php │ │ │ ├── 2022_05_20_062140_create_books_table.php │ │ │ ├── 2022_05_20_062219_create_members_table.php │ │ │ └── 2022_05_20_062236_create_borrowings_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── PerpustakaanDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ ├── Author.php │ │ ├── Book.php │ │ ├── Borrowing.php │ │ ├── Category.php │ │ ├── Member.php │ │ └── Publisher.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── AuthorController.php │ │ │ ├── BooksController.php │ │ │ ├── CategoryController.php │ │ │ ├── MemberController.php │ │ │ ├── PeminjamController.php │ │ │ ├── PerpustakaanController.php │ │ │ └── PublisherController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── .gitkeep │ │ │ ├── AuthorRequest.php │ │ │ ├── BookRequest.php │ │ │ ├── CategoryRequest.php │ │ │ ├── MemberRequest.php │ │ │ ├── PeminjamRequest.php │ │ │ ├── PublisherRequest.php │ │ │ └── UpdatePeminjamRequest.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── PerpustakaanServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── backend │ │ │ ├── author │ │ │ │ └── index.blade.php │ │ │ ├── books │ │ │ │ ├── create.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── category │ │ │ │ └── index.blade.php │ │ │ ├── member │ │ │ │ └── index.blade.php │ │ │ ├── peminjam │ │ │ │ ├── create.blade.php │ │ │ │ ├── history.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── update.blade.php │ │ │ └── publisher │ │ │ │ ├── create.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── index.blade.php │ │ │ └── layouts │ │ │ └── master.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js └── SPP │ ├── Config │ ├── .gitkeep │ └── config.php │ ├── Console │ └── .gitkeep │ ├── Database │ ├── Migrations │ │ ├── .gitkeep │ │ ├── 2022_07_16_094123_create_bank_accounts_table.php │ │ ├── 2022_07_16_094821_create_payment_spps_table.php │ │ ├── 2022_07_16_100447_create_detail_payment_spps_table.php │ │ └── 2022_07_29_081354_add_column_in_detail_payment_spps_table.php │ ├── Seeders │ │ ├── .gitkeep │ │ ├── AddRoleBendaharaSeederTableSeeder.php │ │ └── SPPDatabaseSeeder.php │ └── factories │ │ └── .gitkeep │ ├── Entities │ ├── .gitkeep │ ├── BankAccount.php │ ├── DetailPaymentSpp.php │ ├── PaymentSpp.php │ └── SppSetting.php │ ├── Http │ ├── Controllers │ │ ├── .gitkeep │ │ └── SPPController.php │ ├── Middleware │ │ └── .gitkeep │ └── Requests │ │ └── .gitkeep │ ├── Providers │ ├── .gitkeep │ ├── RouteServiceProvider.php │ └── SPPServiceProvider.php │ ├── Resources │ ├── assets │ │ ├── .gitkeep │ │ ├── js │ │ │ └── app.js │ │ └── sass │ │ │ └── app.scss │ ├── lang │ │ └── .gitkeep │ └── views │ │ ├── .gitkeep │ │ ├── index.blade.php │ │ ├── layouts │ │ └── master.blade.php │ │ ├── murid │ │ ├── index.blade.php │ │ ├── show.blade.php │ │ └── update.blade.php │ │ └── setting.blade.php │ ├── Routes │ ├── .gitkeep │ ├── api.php │ └── web.php │ ├── Tests │ ├── Feature │ │ └── .gitkeep │ └── Unit │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Helpers │ └── GlobalHelpers.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Backend │ │ │ ├── Pengguna │ │ │ │ ├── BendaharaController.php │ │ │ │ ├── MuridController.php │ │ │ │ ├── PPDBController.php │ │ │ │ ├── PengajarController.php │ │ │ │ ├── PerpusController.php │ │ │ │ └── StafController.php │ │ │ ├── ProfileController.php │ │ │ ├── SettingController.php │ │ │ └── Website │ │ │ │ ├── AboutController.php │ │ │ │ ├── BeritaController.php │ │ │ │ ├── EventsController.php │ │ │ │ ├── FooterController.php │ │ │ │ ├── ImageSliderController.php │ │ │ │ ├── KategoriBeritaController.php │ │ │ │ ├── KegiatanController.php │ │ │ │ ├── ProfilSekolahController.php │ │ │ │ ├── ProgramController.php │ │ │ │ ├── VideoController.php │ │ │ │ └── VisidanMisiController.php │ │ ├── Controller.php │ │ ├── Frontend │ │ │ ├── IndexController.php │ │ │ └── MenuController.php │ │ └── HomeController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── AboutRequest.php │ │ ├── BendaharaRequest.php │ │ ├── BeritaRequest.php │ │ ├── ChangePasswordRequest.php │ │ ├── EventRequest.php │ │ ├── FooterRequest.php │ │ ├── ImageSliderRequest.php │ │ ├── KategoriBeritaRequest.php │ │ ├── KegiatanRequest.php │ │ ├── LoginRequest.php │ │ ├── PengajarRequest.php │ │ ├── ProfileSekolahRequest.php │ │ ├── ProfileSettingsRequest.php │ │ ├── ProgramRequest.php │ │ ├── StafRequest.php │ │ ├── VideoRequest.php │ │ ├── VisidanMisiRequest.php │ │ └── ppdbRequest.php ├── Models │ ├── About.php │ ├── Bank.php │ ├── Berita.php │ ├── DataJurusan.php │ ├── Events.php │ ├── Footer.php │ ├── ImageSlider.php │ ├── Jurusan.php │ ├── KategoriBerita.php │ ├── Kegiatan.php │ ├── ProfileSekolah.php │ ├── Setting.php │ ├── User.php │ ├── UsersDetail.php │ ├── Video.php │ ├── Visimisi.php │ └── dataMurid.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── Rules │ └── maxCharacters.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── backup.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── modules.php ├── permission.php ├── queue.php ├── sanctum.php ├── services.php ├── session.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_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2021_08_08_100000_create_banks_tables.php │ ├── 2022_03_20_132856_create_jurusans_table.php │ ├── 2022_03_20_133244_create_data_jurusans_table.php │ ├── 2022_03_22_182953_create_kegiatans_table.php │ ├── 2022_03_23_040838_create_image_sliders_table.php │ ├── 2022_03_23_052723_add_field_to_image_sliders_table.php │ ├── 2022_03_23_065335_create_abouts_table.php │ ├── 2022_03_23_074809_create_videos_table.php │ ├── 2022_03_24_075737_create_kategori_beritas_table.php │ ├── 2022_03_24_075900_create_beritas_table.php │ ├── 2022_03_24_105758_create_events_table.php │ ├── 2022_03_24_201826_add_field_to_events_table.php │ ├── 2022_03_24_204322_create_footers_table.php │ ├── 2022_03_25_102915_create_permission_tables.php │ ├── 2022_03_27_074151_create_users_details_table.php │ ├── 2022_03_27_094236_create_data_murids_table.php │ ├── 2022_03_28_154339_create_profile_sekolahs_table.php │ ├── 2022_03_28_161701_create_visimisis_table.php │ ├── 2022_03_30_172737_add_value_role_in_users_table.php │ ├── 2022_03_30_194727_add_value_role_in_users_details_table.php │ ├── 2022_04_01_190600_add_field_to_data_murids.php │ ├── 2022_07_16_145332_add_value_role_bendahara_in_users_table.php │ ├── 2022_07_16_145418_add_value_role_bendahara_in_users_details_table.php │ ├── 2022_07_29_072220_add_column_account_name_in_bank_accounts_table.php │ ├── 2022_08_01_080614_create_settings_table.php │ └── 2024_02_13_122740_create_table_spp_setting.php └── seeders │ ├── AddRoleSeeder.php │ ├── DatabaseSeeder.php │ ├── IndoBankSeeder.php │ ├── JurusanSeeder.php │ ├── RoleSeeder.php │ ├── SettingSeeder.php │ └── UserSeeder.php ├── docs ├── _config.yml └── index.md ├── modules_statuses.json ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── Assets │ ├── Backend │ │ ├── css │ │ │ ├── bootstrap-extended.css │ │ │ ├── bootstrap-extended.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── colors.css │ │ │ ├── colors.min.css │ │ │ ├── components.css │ │ │ ├── components.min.css │ │ │ ├── core │ │ │ │ ├── colors │ │ │ │ │ ├── palette-gradient.css │ │ │ │ │ ├── palette-gradient.min.css │ │ │ │ │ ├── palette-noui.css │ │ │ │ │ ├── palette-noui.min.css │ │ │ │ │ ├── palette-variables.css │ │ │ │ │ └── palette-variables.min.css │ │ │ │ ├── menu │ │ │ │ │ └── menu-types │ │ │ │ │ │ ├── horizontal-menu.css │ │ │ │ │ │ ├── horizontal-menu.min.css │ │ │ │ │ │ ├── vertical-menu.css │ │ │ │ │ │ ├── vertical-menu.min.css │ │ │ │ │ │ ├── vertical-overlay-menu.css │ │ │ │ │ │ └── vertical-overlay-menu.min.css │ │ │ │ └── mixins │ │ │ │ │ ├── alert.css │ │ │ │ │ ├── alert.min.css │ │ │ │ │ ├── hex2rgb.css │ │ │ │ │ ├── hex2rgb.min.css │ │ │ │ │ ├── main-menu-mixin.css │ │ │ │ │ ├── main-menu-mixin.min.css │ │ │ │ │ ├── transitions.css │ │ │ │ │ └── transitions.min.css │ │ │ ├── pages │ │ │ │ ├── app-calendar.css │ │ │ │ ├── app-calendar.min.css │ │ │ │ ├── app-chat-list.css │ │ │ │ ├── app-chat-list.min.css │ │ │ │ ├── app-chat.css │ │ │ │ ├── app-chat.min.css │ │ │ │ ├── app-ecommerce-details.css │ │ │ │ ├── app-ecommerce-details.min.css │ │ │ │ ├── app-ecommerce.css │ │ │ │ ├── app-ecommerce.min.css │ │ │ │ ├── app-email.css │ │ │ │ ├── app-email.min.css │ │ │ │ ├── app-file-manager.css │ │ │ │ ├── app-file-manager.min.css │ │ │ │ ├── app-invoice-list.css │ │ │ │ ├── app-invoice-list.min.css │ │ │ │ ├── app-invoice-print.css │ │ │ │ ├── app-invoice-print.min.css │ │ │ │ ├── app-invoice.css │ │ │ │ ├── app-invoice.min.css │ │ │ │ ├── app-kanban.css │ │ │ │ ├── app-kanban.min.css │ │ │ │ ├── app-todo.css │ │ │ │ ├── app-todo.min.css │ │ │ │ ├── app-user.css │ │ │ │ ├── app-user.min.css │ │ │ │ ├── dashboard-ecommerce.css │ │ │ │ ├── dashboard-ecommerce.min.css │ │ │ │ ├── page-auth.css │ │ │ │ ├── page-auth.min.css │ │ │ │ ├── page-blog.css │ │ │ │ ├── page-blog.min.css │ │ │ │ ├── page-coming-soon.css │ │ │ │ ├── page-coming-soon.min.css │ │ │ │ ├── page-faq.css │ │ │ │ ├── page-faq.min.css │ │ │ │ ├── page-knowledge-base.css │ │ │ │ ├── page-knowledge-base.min.css │ │ │ │ ├── page-misc.css │ │ │ │ ├── page-misc.min.css │ │ │ │ ├── page-pricing.css │ │ │ │ ├── page-pricing.min.css │ │ │ │ ├── page-profile.css │ │ │ │ ├── page-profile.min.css │ │ │ │ ├── ui-colors.css │ │ │ │ ├── ui-colors.min.css │ │ │ │ ├── ui-feather.css │ │ │ │ └── ui-feather.min.css │ │ │ ├── plugins │ │ │ │ ├── charts │ │ │ │ │ ├── chart-apex.css │ │ │ │ │ └── chart-apex.min.css │ │ │ │ ├── extensions │ │ │ │ │ ├── ext-component-context-menu.css │ │ │ │ │ ├── ext-component-context-menu.min.css │ │ │ │ │ ├── ext-component-drag-drop.css │ │ │ │ │ ├── ext-component-drag-drop.min.css │ │ │ │ │ ├── ext-component-media-player.css │ │ │ │ │ ├── ext-component-media-player.min.css │ │ │ │ │ ├── ext-component-ratings.css │ │ │ │ │ ├── ext-component-ratings.min.css │ │ │ │ │ ├── ext-component-sliders.css │ │ │ │ │ ├── ext-component-sliders.min.css │ │ │ │ │ ├── ext-component-sweet-alerts.css │ │ │ │ │ ├── ext-component-sweet-alerts.min.css │ │ │ │ │ ├── ext-component-swiper.css │ │ │ │ │ ├── ext-component-swiper.min.css │ │ │ │ │ ├── ext-component-toastr.css │ │ │ │ │ ├── ext-component-toastr.min.css │ │ │ │ │ ├── ext-component-tour.css │ │ │ │ │ ├── ext-component-tour.min.css │ │ │ │ │ ├── ext-component-tree.css │ │ │ │ │ └── ext-component-tree.min.css │ │ │ │ ├── forms │ │ │ │ │ ├── form-file-uploader.css │ │ │ │ │ ├── form-file-uploader.min.css │ │ │ │ │ ├── form-number-input.css │ │ │ │ │ ├── form-number-input.min.css │ │ │ │ │ ├── form-quill-editor.css │ │ │ │ │ ├── form-quill-editor.min.css │ │ │ │ │ ├── form-validation.css │ │ │ │ │ ├── form-validation.min.css │ │ │ │ │ ├── form-wizard.css │ │ │ │ │ ├── form-wizard.min.css │ │ │ │ │ └── pickers │ │ │ │ │ │ ├── form-flat-pickr.css │ │ │ │ │ │ ├── form-flat-pickr.min.css │ │ │ │ │ │ ├── form-pickadate.css │ │ │ │ │ │ └── form-pickadate.min.css │ │ │ │ ├── maps │ │ │ │ │ ├── map-leaflet.css │ │ │ │ │ └── map-leaflet.min.css │ │ │ │ ├── tables │ │ │ │ │ ├── table-ag-grid.css │ │ │ │ │ └── table-ag-grid.min.css │ │ │ │ └── ui │ │ │ │ │ ├── coming-soon.css │ │ │ │ │ └── coming-soon.min.css │ │ │ └── themes │ │ │ │ ├── bordered-layout.css │ │ │ │ ├── bordered-layout.min.css │ │ │ │ ├── dark-layout.css │ │ │ │ ├── dark-layout.min.css │ │ │ │ ├── semi-dark-layout.css │ │ │ │ └── semi-dark-layout.min.css │ │ ├── fonts │ │ │ ├── feather │ │ │ │ ├── fonts │ │ │ │ │ ├── feather.eot │ │ │ │ │ ├── feather.svg │ │ │ │ │ ├── feather.ttf │ │ │ │ │ └── feather.woff │ │ │ │ └── iconfont.css │ │ │ └── font-awesome │ │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── images │ │ │ ├── ico │ │ │ │ └── favicon.ico │ │ │ ├── illustration │ │ │ │ ├── Pot1.svg │ │ │ │ ├── Pot2.svg │ │ │ │ ├── Pot3.svg │ │ │ │ ├── api.svg │ │ │ │ ├── badge.svg │ │ │ │ ├── demand.svg │ │ │ │ ├── email.svg │ │ │ │ ├── faq-illustrations.svg │ │ │ │ ├── login-v2.svg │ │ │ │ ├── marketing.svg │ │ │ │ ├── personalization.svg │ │ │ │ ├── pricing-Illustration.svg │ │ │ │ └── sales.svg │ │ │ ├── logo │ │ │ │ ├── favicon.ico │ │ │ │ ├── logo.png │ │ │ │ └── logo.svg │ │ │ ├── pages │ │ │ │ ├── arrow-down.png │ │ │ │ ├── auth-v1-bottom-bg.png │ │ │ │ ├── auth-v1-top-bg.png │ │ │ │ ├── calendar-illustration.png │ │ │ │ ├── coming-soon-dark.svg │ │ │ │ ├── coming-soon.svg │ │ │ │ ├── content-img-1.jpg │ │ │ │ ├── content-img-2.jpg │ │ │ │ ├── content-img-3.jpg │ │ │ │ ├── content-img-4.jpg │ │ │ │ ├── decore-left.png │ │ │ │ ├── decore-right.png │ │ │ │ ├── error-dark.svg │ │ │ │ ├── error.svg │ │ │ │ ├── forgot-password-v2-dark.svg │ │ │ │ ├── forgot-password-v2.svg │ │ │ │ ├── forgot-password.png │ │ │ │ ├── kb-image.jpg │ │ │ │ ├── login-v2-dark.svg │ │ │ │ ├── login-v2.svg │ │ │ │ ├── login │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ └── twitter.svg │ │ │ │ ├── not-authorized-dark.svg │ │ │ │ ├── not-authorized.svg │ │ │ │ ├── pixinvent-logo.png │ │ │ │ ├── register-v2-dark.svg │ │ │ │ ├── register-v2.svg │ │ │ │ ├── reset-password-v2-dark.svg │ │ │ │ ├── reset-password-v2.svg │ │ │ │ ├── under-maintenance-dark.svg │ │ │ │ └── under-maintenance.svg │ │ │ └── user.png │ │ ├── js │ │ │ ├── core │ │ │ │ ├── app-menu.js │ │ │ │ ├── app-menu.min.js │ │ │ │ ├── app.js │ │ │ │ └── app.min.js │ │ │ └── scripts │ │ │ │ ├── cards │ │ │ │ ├── card-advance.js │ │ │ │ ├── card-advance.min.js │ │ │ │ ├── card-analytics.js │ │ │ │ ├── card-analytics.min.js │ │ │ │ ├── card-statistics.js │ │ │ │ └── card-statistics.min.js │ │ │ │ ├── charts │ │ │ │ ├── chart-apex.js │ │ │ │ ├── chart-apex.min.js │ │ │ │ ├── chart-chartjs.js │ │ │ │ └── chart-chartjs.min.js │ │ │ │ ├── components │ │ │ │ ├── components-alerts.js │ │ │ │ ├── components-alerts.min.js │ │ │ │ ├── components-bs-toast.js │ │ │ │ ├── components-bs-toast.min.js │ │ │ │ ├── components-collapse.js │ │ │ │ ├── components-collapse.min.js │ │ │ │ ├── components-dropdowns.js │ │ │ │ ├── components-dropdowns.min.js │ │ │ │ ├── components-modals.js │ │ │ │ ├── components-modals.min.js │ │ │ │ ├── components-navs.js │ │ │ │ ├── components-navs.min.js │ │ │ │ ├── components-popovers.js │ │ │ │ ├── components-popovers.min.js │ │ │ │ ├── components-tooltips.js │ │ │ │ └── components-tooltips.min.js │ │ │ │ ├── customizer.js │ │ │ │ ├── customizer.min.js │ │ │ │ ├── documentation.js │ │ │ │ ├── documentation.min.js │ │ │ │ ├── extensions │ │ │ │ ├── ext-component-blockui.js │ │ │ │ ├── ext-component-blockui.min.js │ │ │ │ ├── ext-component-clipboard.js │ │ │ │ ├── ext-component-clipboard.min.js │ │ │ │ ├── ext-component-context-menu.js │ │ │ │ ├── ext-component-context-menu.min.js │ │ │ │ ├── ext-component-drag-drop.js │ │ │ │ ├── ext-component-drag-drop.min.js │ │ │ │ ├── ext-component-i18n.js │ │ │ │ ├── ext-component-i18n.min.js │ │ │ │ ├── ext-component-media-player.js │ │ │ │ ├── ext-component-media-player.min.js │ │ │ │ ├── ext-component-ratings.js │ │ │ │ ├── ext-component-ratings.min.js │ │ │ │ ├── ext-component-sliders.js │ │ │ │ ├── ext-component-sliders.min.js │ │ │ │ ├── ext-component-sweet-alerts.js │ │ │ │ ├── ext-component-sweet-alerts.min.js │ │ │ │ ├── ext-component-swiper.js │ │ │ │ ├── ext-component-swiper.min.js │ │ │ │ ├── ext-component-toastr.js │ │ │ │ ├── ext-component-toastr.min.js │ │ │ │ ├── ext-component-tour.js │ │ │ │ ├── ext-component-tour.min.js │ │ │ │ ├── ext-component-tree.js │ │ │ │ └── ext-component-tree.min.js │ │ │ │ ├── forms │ │ │ │ ├── form-file-uploader.js │ │ │ │ ├── form-file-uploader.min.js │ │ │ │ ├── form-input-mask.js │ │ │ │ ├── form-input-mask.min.js │ │ │ │ ├── form-number-input.js │ │ │ │ ├── form-number-input.min.js │ │ │ │ ├── form-quill-editor.js │ │ │ │ ├── form-quill-editor.min.js │ │ │ │ ├── form-repeater.js │ │ │ │ ├── form-repeater.min.js │ │ │ │ ├── form-select2.js │ │ │ │ ├── form-select2.min.js │ │ │ │ ├── form-tooltip-valid.js │ │ │ │ ├── form-tooltip-valid.min.js │ │ │ │ ├── form-validation.js │ │ │ │ ├── form-validation.min.js │ │ │ │ ├── form-wizard.js │ │ │ │ ├── form-wizard.min.js │ │ │ │ └── pickers │ │ │ │ │ ├── form-pickers.js │ │ │ │ │ └── form-pickers.min.js │ │ │ │ ├── maps │ │ │ │ ├── map-leaflet.js │ │ │ │ └── map-leaflet.min.js │ │ │ │ ├── pages │ │ │ │ ├── app-calendar-events.js │ │ │ │ ├── app-calendar-events.min.js │ │ │ │ ├── app-calendar.js │ │ │ │ ├── app-calendar.min.js │ │ │ │ ├── app-chat.js │ │ │ │ ├── app-chat.min.js │ │ │ │ ├── app-ecommerce-checkout.js │ │ │ │ ├── app-ecommerce-checkout.min.js │ │ │ │ ├── app-ecommerce-details.js │ │ │ │ ├── app-ecommerce-details.min.js │ │ │ │ ├── app-ecommerce-wishlist.js │ │ │ │ ├── app-ecommerce-wishlist.min.js │ │ │ │ ├── app-ecommerce.js │ │ │ │ ├── app-ecommerce.min.js │ │ │ │ ├── app-email.js │ │ │ │ ├── app-email.min.js │ │ │ │ ├── app-file-manager.js │ │ │ │ ├── app-file-manager.min.js │ │ │ │ ├── app-invoice-list.js │ │ │ │ ├── app-invoice-list.min.js │ │ │ │ ├── app-invoice-print.js │ │ │ │ ├── app-invoice-print.min.js │ │ │ │ ├── app-invoice.js │ │ │ │ ├── app-invoice.min.js │ │ │ │ ├── app-kanban.js │ │ │ │ ├── app-kanban.min.js │ │ │ │ ├── app-todo.js │ │ │ │ ├── app-todo.min.js │ │ │ │ ├── app-user-edit.js │ │ │ │ ├── app-user-edit.min.js │ │ │ │ ├── app-user-list.js │ │ │ │ ├── app-user-list.min.js │ │ │ │ ├── app-user-view.js │ │ │ │ ├── app-user-view.min.js │ │ │ │ ├── dashboard-analytics.js │ │ │ │ ├── dashboard-analytics.min.js │ │ │ │ ├── dashboard-ecommerce.js │ │ │ │ ├── dashboard-ecommerce.min.js │ │ │ │ ├── page-account-settings.js │ │ │ │ ├── page-account-settings.min.js │ │ │ │ ├── page-auth-forgot-password.js │ │ │ │ ├── page-auth-forgot-password.min.js │ │ │ │ ├── page-auth-login.js │ │ │ │ ├── page-auth-login.min.js │ │ │ │ ├── page-auth-register.js │ │ │ │ ├── page-auth-register.min.js │ │ │ │ ├── page-auth-reset-password.js │ │ │ │ ├── page-auth-reset-password.min.js │ │ │ │ ├── page-blog-edit.js │ │ │ │ ├── page-blog-edit.min.js │ │ │ │ ├── page-knowledge-base.js │ │ │ │ ├── page-knowledge-base.min.js │ │ │ │ ├── page-pricing.js │ │ │ │ ├── page-pricing.min.js │ │ │ │ ├── page-profile.js │ │ │ │ └── page-profile.min.js │ │ │ │ ├── pagination │ │ │ │ ├── components-pagination.js │ │ │ │ └── components-pagination.min.js │ │ │ │ ├── tables │ │ │ │ ├── table-ag-grid.js │ │ │ │ ├── table-ag-grid.min.js │ │ │ │ ├── table-datatables-advanced.js │ │ │ │ ├── table-datatables-advanced.min.js │ │ │ │ ├── table-datatables-basic.js │ │ │ │ └── table-datatables-basic.min.js │ │ │ │ └── ui │ │ │ │ ├── ui-feather.js │ │ │ │ └── ui-feather.min.js │ │ └── vendors │ │ │ ├── css │ │ │ ├── animate │ │ │ │ ├── animate.css │ │ │ │ └── animate.min.css │ │ │ ├── calendars │ │ │ │ ├── extensions │ │ │ │ │ ├── daygrid.min.css │ │ │ │ │ └── timegrid.min.css │ │ │ │ ├── fullcalendar.min.css │ │ │ │ └── fullcalendar.print.css │ │ │ ├── charts │ │ │ │ └── apexcharts.css │ │ │ ├── documentation.css │ │ │ ├── editors │ │ │ │ └── quill │ │ │ │ │ ├── fonts │ │ │ │ │ ├── KaTeX_Main-Regular.woff2 │ │ │ │ │ └── KaTeX_Math-Italic.woff2 │ │ │ │ │ ├── katex.min.css │ │ │ │ │ ├── monokai-sublime.min.css │ │ │ │ │ ├── quill.bubble.css │ │ │ │ │ └── quill.snow.css │ │ │ ├── extensions │ │ │ │ ├── 32px.png │ │ │ │ ├── 40px.png │ │ │ │ ├── dataTables.checkboxes.css │ │ │ │ ├── dd-icon │ │ │ │ │ ├── dd-icon.eot │ │ │ │ │ ├── dd-icon.svg │ │ │ │ │ ├── dd-icon.ttf │ │ │ │ │ └── dd-icon.woff │ │ │ │ ├── dragula.min.css │ │ │ │ ├── jquery.contextMenu.min.css │ │ │ │ ├── jquery.rateyo.min.css │ │ │ │ ├── jstree.min.css │ │ │ │ ├── nouislider.min.css │ │ │ │ ├── plyr.min.css │ │ │ │ ├── shepherd.min.css │ │ │ │ ├── sweetalert2.min.css │ │ │ │ ├── swiper.min.css │ │ │ │ ├── tether-theme-arrows.css │ │ │ │ ├── tether.min.css │ │ │ │ └── toastr.min.css │ │ │ ├── feather-icons │ │ │ │ └── feather-icons.min.css │ │ │ ├── file-uploaders │ │ │ │ └── dropzone.min.css │ │ │ ├── flag-icons │ │ │ │ └── flag-icons.min.css │ │ │ ├── forms │ │ │ │ ├── select │ │ │ │ │ └── select2.min.css │ │ │ │ ├── spinner │ │ │ │ │ └── jquery.bootstrap-touchspin.css │ │ │ │ ├── toggle │ │ │ │ │ ├── switchery.css │ │ │ │ │ └── switchery.min.css │ │ │ │ └── wizard │ │ │ │ │ └── bs-stepper.min.css │ │ │ ├── jkanban │ │ │ │ └── jkanban.min.css │ │ │ ├── maps │ │ │ │ ├── images │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ ├── layers.png │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ └── marker-shadow.png │ │ │ │ └── leaflet.min.css │ │ │ ├── modal │ │ │ │ ├── facebook.css │ │ │ │ ├── google.css │ │ │ │ └── twitter.css │ │ │ ├── pace │ │ │ │ └── pace.min.css │ │ │ ├── perfect-scrollbar │ │ │ │ └── perfect-scrollbar.min.css │ │ │ ├── pickers │ │ │ │ ├── flatpickr │ │ │ │ │ └── flatpickr.min.css │ │ │ │ └── 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 │ │ │ │ │ ├── buttons.bootstrap4.min.css │ │ │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ │ │ ├── datatables.min.css │ │ │ │ │ ├── extensions │ │ │ │ │ └── dataTables.checkboxes.css │ │ │ │ │ ├── responsive.bootstrap.min.css │ │ │ │ │ ├── responsive.bootstrap4.min.css │ │ │ │ │ ├── rowGroup.bootstrap4.min.css │ │ │ │ │ └── select.dataTables.min.css │ │ │ ├── ui │ │ │ │ ├── prism-treeview.css │ │ │ │ └── prism.min.css │ │ │ ├── vendors-rtl.min.css │ │ │ ├── vendors.min.css │ │ │ ├── waves │ │ │ │ └── waves.min.css │ │ │ └── weather-icons │ │ │ │ └── climacons.min.css │ │ │ └── js │ │ │ ├── blockui │ │ │ └── blockui.min.js │ │ │ ├── bootstrap │ │ │ └── bootstrap.min.js │ │ │ ├── calendar │ │ │ └── fullcalendar.min.js │ │ │ ├── charts │ │ │ ├── apexcharts.js │ │ │ ├── apexcharts.min.js │ │ │ └── chart.min.js │ │ │ ├── editors │ │ │ └── quill │ │ │ │ ├── assets │ │ │ │ ├── base.styl │ │ │ │ ├── bubble.styl │ │ │ │ ├── bubble │ │ │ │ │ ├── toolbar.styl │ │ │ │ │ └── tooltip.styl │ │ │ │ ├── core.styl │ │ │ │ ├── favicon.png │ │ │ │ ├── icons │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── attachment.svg │ │ │ │ │ ├── audio.svg │ │ │ │ │ ├── authorship.svg │ │ │ │ │ ├── background.svg │ │ │ │ │ ├── blockquote.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── clean.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── color.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── direction-ltr.svg │ │ │ │ │ ├── direction-rtl.svg │ │ │ │ │ ├── dropdown.svg │ │ │ │ │ ├── emoji.svg │ │ │ │ │ ├── float-center.svg │ │ │ │ │ ├── float-full.svg │ │ │ │ │ ├── float-left.svg │ │ │ │ │ ├── float-right.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── formula.svg │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ ├── header-2.svg │ │ │ │ │ ├── header.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── indent.svg │ │ │ │ │ ├── italic.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── list-bullet.svg │ │ │ │ │ ├── list-check.svg │ │ │ │ │ ├── list-ordered.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── mention.svg │ │ │ │ │ ├── outdent.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── size-decrease.svg │ │ │ │ │ ├── size-increase.svg │ │ │ │ │ ├── size.svg │ │ │ │ │ ├── spacing.svg │ │ │ │ │ ├── speech.svg │ │ │ │ │ ├── strike.svg │ │ │ │ │ ├── subscript.svg │ │ │ │ │ ├── superscript.svg │ │ │ │ │ ├── table-border-all.svg │ │ │ │ │ ├── table-border-bottom.svg │ │ │ │ │ ├── table-border-left.svg │ │ │ │ │ ├── table-border-none.svg │ │ │ │ │ ├── table-border-outside.svg │ │ │ │ │ ├── table-border-right.svg │ │ │ │ │ ├── table-border-top.svg │ │ │ │ │ ├── table-delete-cells.svg │ │ │ │ │ ├── table-delete-columns.svg │ │ │ │ │ ├── table-delete-rows.svg │ │ │ │ │ ├── table-insert-cells.svg │ │ │ │ │ ├── table-insert-columns.svg │ │ │ │ │ ├── table-insert-rows.svg │ │ │ │ │ ├── table-merge-cells.svg │ │ │ │ │ ├── table-unmerge-cells.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── underline.svg │ │ │ │ │ ├── undo.svg │ │ │ │ │ └── video.svg │ │ │ │ ├── snow.styl │ │ │ │ └── snow │ │ │ │ │ ├── toolbar.styl │ │ │ │ │ └── tooltip.styl │ │ │ │ ├── highlight.min.js │ │ │ │ ├── katex.min.js │ │ │ │ ├── quill.js │ │ │ │ ├── quill.min.js │ │ │ │ ├── themes │ │ │ │ ├── base.js │ │ │ │ ├── bubble.js │ │ │ │ └── snow.js │ │ │ │ └── ui │ │ │ │ ├── color-picker.js │ │ │ │ ├── icon-picker.js │ │ │ │ ├── icons.js │ │ │ │ ├── picker.js │ │ │ │ └── tooltip.js │ │ │ ├── extensions │ │ │ ├── dataTables.checkboxes.min.js │ │ │ ├── dragula.min.js │ │ │ ├── i18next.min.js │ │ │ ├── i18nextBrowserLanguageDetector.min.js │ │ │ ├── i18nextXHRBackend.min.js │ │ │ ├── jquery-i18next.min.js │ │ │ ├── jquery.contextMenu.min.js │ │ │ ├── jquery.mousewheel.min.js │ │ │ ├── jquery.rateyo.min.js │ │ │ ├── jquery.ui.position.min.js │ │ │ ├── jstree.min.js │ │ │ ├── lang-all.js │ │ │ ├── locale-all.js │ │ │ ├── moment.min.js │ │ │ ├── nouislider.min.js │ │ │ ├── plyr.min.js │ │ │ ├── plyr.polyfilled.min.js │ │ │ ├── polyfill.min.js │ │ │ ├── shepherd.min.js │ │ │ ├── sweetalert2.all.min.js │ │ │ ├── swiper.min.js │ │ │ ├── tether.min.js │ │ │ ├── toastr.min.js │ │ │ ├── transition.js │ │ │ └── wNumb.min.js │ │ │ ├── feather-icons │ │ │ └── feather-icons.min.js │ │ │ ├── file-uploaders │ │ │ └── dropzone.min.js │ │ │ ├── forms │ │ │ ├── cleave │ │ │ │ ├── addons │ │ │ │ │ ├── cleave-phone.ac.js │ │ │ │ │ ├── cleave-phone.ad.js │ │ │ │ │ ├── cleave-phone.ae.js │ │ │ │ │ ├── cleave-phone.af.js │ │ │ │ │ ├── cleave-phone.ag.js │ │ │ │ │ ├── cleave-phone.ai.js │ │ │ │ │ ├── cleave-phone.al.js │ │ │ │ │ ├── cleave-phone.am.js │ │ │ │ │ ├── cleave-phone.ao.js │ │ │ │ │ ├── cleave-phone.ar.js │ │ │ │ │ ├── cleave-phone.as.js │ │ │ │ │ ├── cleave-phone.at.js │ │ │ │ │ ├── cleave-phone.au-cn.js │ │ │ │ │ ├── cleave-phone.au.js │ │ │ │ │ ├── cleave-phone.aw.js │ │ │ │ │ ├── cleave-phone.ax.js │ │ │ │ │ ├── cleave-phone.az.js │ │ │ │ │ ├── cleave-phone.ba.js │ │ │ │ │ ├── cleave-phone.bb.js │ │ │ │ │ ├── cleave-phone.bd.js │ │ │ │ │ ├── cleave-phone.be.js │ │ │ │ │ ├── cleave-phone.bf.js │ │ │ │ │ ├── cleave-phone.bg.js │ │ │ │ │ ├── cleave-phone.bh.js │ │ │ │ │ ├── cleave-phone.bi.js │ │ │ │ │ ├── cleave-phone.bj.js │ │ │ │ │ ├── cleave-phone.bl.js │ │ │ │ │ ├── cleave-phone.bm.js │ │ │ │ │ ├── cleave-phone.bn.js │ │ │ │ │ ├── cleave-phone.bo.js │ │ │ │ │ ├── cleave-phone.bq.js │ │ │ │ │ ├── cleave-phone.br.js │ │ │ │ │ ├── cleave-phone.bs.js │ │ │ │ │ ├── cleave-phone.bt.js │ │ │ │ │ ├── cleave-phone.bw.js │ │ │ │ │ ├── cleave-phone.by.js │ │ │ │ │ ├── cleave-phone.bz.js │ │ │ │ │ ├── cleave-phone.ca.js │ │ │ │ │ ├── cleave-phone.cc.js │ │ │ │ │ ├── cleave-phone.cd.js │ │ │ │ │ ├── cleave-phone.cf.js │ │ │ │ │ ├── cleave-phone.cg.js │ │ │ │ │ ├── cleave-phone.ch.js │ │ │ │ │ ├── cleave-phone.ci.js │ │ │ │ │ ├── cleave-phone.ck.js │ │ │ │ │ ├── cleave-phone.cl.js │ │ │ │ │ ├── cleave-phone.cm.js │ │ │ │ │ ├── cleave-phone.cn.js │ │ │ │ │ ├── cleave-phone.co.js │ │ │ │ │ ├── cleave-phone.cr.js │ │ │ │ │ ├── cleave-phone.cu.js │ │ │ │ │ ├── cleave-phone.cv.js │ │ │ │ │ ├── cleave-phone.cw.js │ │ │ │ │ ├── cleave-phone.cx.js │ │ │ │ │ ├── cleave-phone.cy.js │ │ │ │ │ ├── cleave-phone.cz.js │ │ │ │ │ ├── cleave-phone.de.js │ │ │ │ │ ├── cleave-phone.dj.js │ │ │ │ │ ├── cleave-phone.dk.js │ │ │ │ │ ├── cleave-phone.dm.js │ │ │ │ │ ├── cleave-phone.do.js │ │ │ │ │ ├── cleave-phone.dz.js │ │ │ │ │ ├── cleave-phone.ec.js │ │ │ │ │ ├── cleave-phone.ee.js │ │ │ │ │ ├── cleave-phone.eg.js │ │ │ │ │ ├── cleave-phone.eh.js │ │ │ │ │ ├── cleave-phone.er.js │ │ │ │ │ ├── cleave-phone.es.js │ │ │ │ │ ├── cleave-phone.et.js │ │ │ │ │ ├── cleave-phone.fi.js │ │ │ │ │ ├── cleave-phone.fj.js │ │ │ │ │ ├── cleave-phone.fk.js │ │ │ │ │ ├── cleave-phone.fm.js │ │ │ │ │ ├── cleave-phone.fo.js │ │ │ │ │ ├── cleave-phone.fr.js │ │ │ │ │ ├── cleave-phone.ga.js │ │ │ │ │ ├── cleave-phone.gb.js │ │ │ │ │ ├── cleave-phone.gd.js │ │ │ │ │ ├── cleave-phone.ge.js │ │ │ │ │ ├── cleave-phone.gf.js │ │ │ │ │ ├── cleave-phone.gg.js │ │ │ │ │ ├── cleave-phone.gh.js │ │ │ │ │ ├── cleave-phone.gi.js │ │ │ │ │ ├── cleave-phone.gl.js │ │ │ │ │ ├── cleave-phone.gm.js │ │ │ │ │ ├── cleave-phone.gn.js │ │ │ │ │ ├── cleave-phone.gp.js │ │ │ │ │ ├── cleave-phone.gq.js │ │ │ │ │ ├── cleave-phone.gr.js │ │ │ │ │ ├── cleave-phone.gt.js │ │ │ │ │ ├── cleave-phone.gu.js │ │ │ │ │ ├── cleave-phone.gw.js │ │ │ │ │ ├── cleave-phone.gy.js │ │ │ │ │ ├── cleave-phone.hk.js │ │ │ │ │ ├── cleave-phone.hn.js │ │ │ │ │ ├── cleave-phone.hr.js │ │ │ │ │ ├── cleave-phone.ht.js │ │ │ │ │ ├── cleave-phone.hu.js │ │ │ │ │ ├── cleave-phone.i18n.js │ │ │ │ │ ├── cleave-phone.id.js │ │ │ │ │ ├── cleave-phone.ie.js │ │ │ │ │ ├── cleave-phone.il.js │ │ │ │ │ ├── cleave-phone.im.js │ │ │ │ │ ├── cleave-phone.in.js │ │ │ │ │ ├── cleave-phone.io.js │ │ │ │ │ ├── cleave-phone.iq.js │ │ │ │ │ ├── cleave-phone.ir.js │ │ │ │ │ ├── cleave-phone.is.js │ │ │ │ │ ├── cleave-phone.it.js │ │ │ │ │ ├── cleave-phone.je.js │ │ │ │ │ ├── cleave-phone.jm.js │ │ │ │ │ ├── cleave-phone.jo.js │ │ │ │ │ ├── cleave-phone.jp.js │ │ │ │ │ ├── cleave-phone.ke.js │ │ │ │ │ ├── cleave-phone.kg.js │ │ │ │ │ ├── cleave-phone.kh.js │ │ │ │ │ ├── cleave-phone.ki.js │ │ │ │ │ ├── cleave-phone.km.js │ │ │ │ │ ├── cleave-phone.kn.js │ │ │ │ │ ├── cleave-phone.kp.js │ │ │ │ │ ├── cleave-phone.kr.js │ │ │ │ │ ├── cleave-phone.kw.js │ │ │ │ │ ├── cleave-phone.ky.js │ │ │ │ │ ├── cleave-phone.kz.js │ │ │ │ │ ├── cleave-phone.la.js │ │ │ │ │ ├── cleave-phone.lb.js │ │ │ │ │ ├── cleave-phone.lc.js │ │ │ │ │ ├── cleave-phone.li.js │ │ │ │ │ ├── cleave-phone.lk.js │ │ │ │ │ ├── cleave-phone.lr.js │ │ │ │ │ ├── cleave-phone.ls.js │ │ │ │ │ ├── cleave-phone.lt.js │ │ │ │ │ ├── cleave-phone.lu.js │ │ │ │ │ ├── cleave-phone.lv.js │ │ │ │ │ ├── cleave-phone.ly.js │ │ │ │ │ ├── cleave-phone.ma.js │ │ │ │ │ ├── cleave-phone.mc.js │ │ │ │ │ ├── cleave-phone.md.js │ │ │ │ │ ├── cleave-phone.me.js │ │ │ │ │ ├── cleave-phone.mf.js │ │ │ │ │ ├── cleave-phone.mg.js │ │ │ │ │ ├── cleave-phone.mh.js │ │ │ │ │ ├── cleave-phone.mk.js │ │ │ │ │ ├── cleave-phone.ml.js │ │ │ │ │ ├── cleave-phone.mm.js │ │ │ │ │ ├── cleave-phone.mn.js │ │ │ │ │ ├── cleave-phone.mo.js │ │ │ │ │ ├── cleave-phone.mp.js │ │ │ │ │ ├── cleave-phone.mq.js │ │ │ │ │ ├── cleave-phone.mr.js │ │ │ │ │ ├── cleave-phone.ms.js │ │ │ │ │ ├── cleave-phone.mt.js │ │ │ │ │ ├── cleave-phone.mu.js │ │ │ │ │ ├── cleave-phone.mv.js │ │ │ │ │ ├── cleave-phone.mw.js │ │ │ │ │ ├── cleave-phone.mx.js │ │ │ │ │ ├── cleave-phone.my.js │ │ │ │ │ ├── cleave-phone.mz.js │ │ │ │ │ ├── cleave-phone.na.js │ │ │ │ │ ├── cleave-phone.nc.js │ │ │ │ │ ├── cleave-phone.ne.js │ │ │ │ │ ├── cleave-phone.nf.js │ │ │ │ │ ├── cleave-phone.ng.js │ │ │ │ │ ├── cleave-phone.ni.js │ │ │ │ │ ├── cleave-phone.nl.js │ │ │ │ │ ├── cleave-phone.no.js │ │ │ │ │ ├── cleave-phone.np.js │ │ │ │ │ ├── cleave-phone.nr.js │ │ │ │ │ ├── cleave-phone.nu.js │ │ │ │ │ ├── cleave-phone.nz.js │ │ │ │ │ ├── cleave-phone.om.js │ │ │ │ │ ├── cleave-phone.pa.js │ │ │ │ │ ├── cleave-phone.pe.js │ │ │ │ │ ├── cleave-phone.pf.js │ │ │ │ │ ├── cleave-phone.pg.js │ │ │ │ │ ├── cleave-phone.ph.js │ │ │ │ │ ├── cleave-phone.pk.js │ │ │ │ │ ├── cleave-phone.pl.js │ │ │ │ │ ├── cleave-phone.pm.js │ │ │ │ │ ├── cleave-phone.pr.js │ │ │ │ │ ├── cleave-phone.ps.js │ │ │ │ │ ├── cleave-phone.pt.js │ │ │ │ │ ├── cleave-phone.pw.js │ │ │ │ │ ├── cleave-phone.py.js │ │ │ │ │ ├── cleave-phone.qa.js │ │ │ │ │ ├── cleave-phone.re.js │ │ │ │ │ ├── cleave-phone.ro.js │ │ │ │ │ ├── cleave-phone.rs.js │ │ │ │ │ ├── cleave-phone.ru.js │ │ │ │ │ ├── cleave-phone.rw.js │ │ │ │ │ ├── cleave-phone.sa.js │ │ │ │ │ ├── cleave-phone.sb.js │ │ │ │ │ ├── cleave-phone.sc.js │ │ │ │ │ ├── cleave-phone.sd.js │ │ │ │ │ ├── cleave-phone.se.js │ │ │ │ │ ├── cleave-phone.sg.js │ │ │ │ │ ├── cleave-phone.sh.js │ │ │ │ │ ├── cleave-phone.si.js │ │ │ │ │ ├── cleave-phone.sj.js │ │ │ │ │ ├── cleave-phone.sk.js │ │ │ │ │ ├── cleave-phone.sl.js │ │ │ │ │ ├── cleave-phone.sm.js │ │ │ │ │ ├── cleave-phone.sn.js │ │ │ │ │ ├── cleave-phone.so.js │ │ │ │ │ ├── cleave-phone.sr.js │ │ │ │ │ ├── cleave-phone.ss.js │ │ │ │ │ ├── cleave-phone.st.js │ │ │ │ │ ├── cleave-phone.sv.js │ │ │ │ │ ├── cleave-phone.sx.js │ │ │ │ │ ├── cleave-phone.sy.js │ │ │ │ │ ├── cleave-phone.sz.js │ │ │ │ │ ├── cleave-phone.ta.js │ │ │ │ │ ├── cleave-phone.tc.js │ │ │ │ │ ├── cleave-phone.td.js │ │ │ │ │ ├── cleave-phone.tg.js │ │ │ │ │ ├── cleave-phone.th.js │ │ │ │ │ ├── cleave-phone.tj.js │ │ │ │ │ ├── cleave-phone.tk.js │ │ │ │ │ ├── cleave-phone.tl.js │ │ │ │ │ ├── cleave-phone.tm.js │ │ │ │ │ ├── cleave-phone.tn.js │ │ │ │ │ ├── cleave-phone.to.js │ │ │ │ │ ├── cleave-phone.tr.js │ │ │ │ │ ├── cleave-phone.tt.js │ │ │ │ │ ├── cleave-phone.tv.js │ │ │ │ │ ├── cleave-phone.tw.js │ │ │ │ │ ├── cleave-phone.tz.js │ │ │ │ │ ├── cleave-phone.ua.js │ │ │ │ │ ├── cleave-phone.ug.js │ │ │ │ │ ├── cleave-phone.us.js │ │ │ │ │ ├── cleave-phone.uy.js │ │ │ │ │ ├── cleave-phone.uz.js │ │ │ │ │ ├── cleave-phone.va.js │ │ │ │ │ ├── cleave-phone.vc.js │ │ │ │ │ ├── cleave-phone.ve.js │ │ │ │ │ ├── cleave-phone.vg.js │ │ │ │ │ ├── cleave-phone.vi.js │ │ │ │ │ ├── cleave-phone.vn.js │ │ │ │ │ ├── cleave-phone.vu.js │ │ │ │ │ ├── cleave-phone.wf.js │ │ │ │ │ ├── cleave-phone.ws.js │ │ │ │ │ ├── cleave-phone.xk.js │ │ │ │ │ ├── cleave-phone.ye.js │ │ │ │ │ ├── cleave-phone.yt.js │ │ │ │ │ ├── cleave-phone.za.js │ │ │ │ │ ├── cleave-phone.zm.js │ │ │ │ │ └── cleave-phone.zw.js │ │ │ │ └── cleave.min.js │ │ │ ├── extended │ │ │ │ └── typeahead │ │ │ │ │ ├── bloodhound.min.js │ │ │ │ │ ├── handlebars.js │ │ │ │ │ └── typeahead.bundle.min.js │ │ │ ├── repeater │ │ │ │ └── jquery.repeater.min.js │ │ │ ├── select │ │ │ │ └── select2.full.min.js │ │ │ ├── spinner │ │ │ │ └── jquery.bootstrap-touchspin.js │ │ │ ├── toggle │ │ │ │ ├── switchery.js │ │ │ │ └── switchery.min.js │ │ │ ├── validation │ │ │ │ └── jquery.validate.min.js │ │ │ └── wizard │ │ │ │ └── bs-stepper.min.js │ │ │ ├── hammer │ │ │ └── hammer.min.js │ │ │ ├── internationalization │ │ │ ├── i18n-jquery.min.js │ │ │ ├── i18n-xhr.min.js │ │ │ ├── i18n.min.js │ │ │ └── lang-detector.min.js │ │ │ ├── jkanban │ │ │ └── jkanban.min.js │ │ │ ├── jquery │ │ │ └── jquery.min.js │ │ │ ├── maps │ │ │ └── leaflet.min.js │ │ │ ├── pace │ │ │ └── pace.min.js │ │ │ ├── pagination │ │ │ ├── jquery.bootpag.min.js │ │ │ └── jquery.twbsPagination.min.js │ │ │ ├── perfectscrollbar │ │ │ └── perfect-scrollbar.min.js │ │ │ ├── pickers │ │ │ ├── flatpickr │ │ │ │ └── flatpickr.min.js │ │ │ └── pickadate │ │ │ │ ├── legacy.js │ │ │ │ ├── picker.date.js │ │ │ │ ├── picker.js │ │ │ │ └── picker.time.js │ │ │ ├── popper │ │ │ └── popper.min.js │ │ │ ├── promises │ │ │ └── promises.min.js │ │ │ ├── tables │ │ │ └── datatable │ │ │ │ ├── buttons.bootstrap.min.js │ │ │ │ ├── buttons.bootstrap4.min.js │ │ │ │ ├── buttons.html5.min.js │ │ │ │ ├── buttons.print.min.js │ │ │ │ ├── dataTables.responsive.min.js │ │ │ │ ├── dataTables.rowGroup.min.js │ │ │ │ ├── dataTables.select.min.js │ │ │ │ ├── datatables.bootstrap4.min.js │ │ │ │ ├── datatables.buttons.min.js │ │ │ │ ├── datatables.checkboxes.min.js │ │ │ │ ├── datatables.min.js │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ ├── jszip.min.js │ │ │ │ ├── pdfmake.min.js │ │ │ │ ├── responsive.bootstrap.min.js │ │ │ │ ├── responsive.bootstrap4.js │ │ │ │ ├── responsive.bootstrap4.min.js │ │ │ │ └── vfs_fonts.js │ │ │ ├── ui │ │ │ ├── affix.js │ │ │ ├── jquery.sticky-kit.min.js │ │ │ ├── jquery.sticky.js │ │ │ ├── prism-treeview.js │ │ │ └── prism.min.js │ │ │ ├── unison-js │ │ │ └── unison-js.min.js │ │ │ ├── vendors.min.js │ │ │ └── waves │ │ │ └── waves.min.js │ └── Frontend │ │ ├── css │ │ ├── animate.min.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.min.css │ │ ├── hover-min.css │ │ ├── jquery.datetimepicker.css │ │ ├── magnific-popup.css │ │ ├── main.css │ │ ├── meanmenu.min.css │ │ ├── normalize.css │ │ ├── reImageGrid.css │ │ └── select2.min.css │ │ ├── fonts │ │ ├── fontawesome-webfont3295.eot │ │ ├── fontawesome-webfont3295.html │ │ ├── fontawesome-webfont3295.svg │ │ ├── fontawesome-webfont3295.ttf │ │ ├── fontawesome-webfont3295.woff │ │ ├── fontawesome-webfontd41d.eot │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.html │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regulard41d.eot │ │ ├── img │ │ ├── 404.png │ │ ├── about │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ │ ├── banner │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ └── 7.jpg │ │ ├── countdown.png │ │ ├── empty.svg │ │ ├── favicon.png │ │ ├── footer │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ │ ├── logo-footer.png │ │ ├── logo-primary.png │ │ ├── logo-textprimary.png │ │ ├── logo.png │ │ ├── payment-method1.jpg │ │ ├── payment-method2.jpg │ │ ├── payment-method3.jpg │ │ ├── payment-method4.jpg │ │ ├── preloader.gif │ │ └── slider │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ │ ├── js │ │ ├── bootstrap.min.js │ │ ├── isotope.pkgd.min.js │ │ ├── jquery-2.2.4.min.js │ │ ├── jquery.countdown.min.js │ │ ├── jquery.counterup.min.js │ │ ├── jquery.gridrotator.js │ │ ├── jquery.magnific-popup.min.js │ │ ├── jquery.meanmenu.min.js │ │ ├── jquery.scrollUp.min.js │ │ ├── main.js │ │ ├── modernizr-2.8.3.min.js │ │ ├── plugins.js │ │ ├── select2.min.js │ │ ├── validator.min.js │ │ ├── wNumb.js │ │ ├── waypoints.min.js │ │ └── wow.min.js │ │ ├── style.css │ │ └── vendor │ │ ├── OwlCarousel │ │ ├── owl.carousel.min.css │ │ ├── owl.carousel.min.js │ │ ├── owl.theme.default.min.css │ │ └── owl.video.play.png │ │ ├── noUiSlider │ │ ├── nouislider.min.css │ │ └── nouislider.min.js │ │ └── slider │ │ ├── css │ │ ├── nivo-slider.css │ │ └── preview.css │ │ ├── home.js │ │ └── js │ │ └── jquery.nivo.slider.js ├── favicon.ico ├── index.php ├── mix-manifest.json └── robots.txt ├── resources ├── css │ └── app.css ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── vendor │ │ └── backup │ │ ├── ar │ │ └── notifications.php │ │ ├── bn │ │ └── notifications.php │ │ ├── cs │ │ └── notifications.php │ │ ├── da │ │ └── notifications.php │ │ ├── de │ │ └── notifications.php │ │ ├── en │ │ └── notifications.php │ │ ├── es │ │ └── notifications.php │ │ ├── fa │ │ └── notifications.php │ │ ├── fi │ │ └── notifications.php │ │ ├── fr │ │ └── notifications.php │ │ ├── hi │ │ └── notifications.php │ │ ├── id │ │ └── notifications.php │ │ ├── it │ │ └── notifications.php │ │ ├── ja │ │ └── notifications.php │ │ ├── nl │ │ └── notifications.php │ │ ├── no │ │ └── notifications.php │ │ ├── pl │ │ └── notifications.php │ │ ├── pt-BR │ │ └── notifications.php │ │ ├── pt │ │ └── notifications.php │ │ ├── ro │ │ └── notifications.php │ │ ├── ru │ │ └── notifications.php │ │ ├── tr │ │ └── notifications.php │ │ ├── uk │ │ └── notifications.php │ │ ├── zh-CN │ │ └── notifications.php │ │ └── zh-TW │ │ └── notifications.php └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── verify.blade.php │ ├── backend │ ├── pengguna │ │ ├── bendahara │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── murid │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── pengajar │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── perpus │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── ppdb │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ └── staf │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ ├── profile │ │ └── index.blade.php │ ├── settings │ │ ├── addBank.blade.php │ │ └── index.blade.php │ └── website │ │ ├── content │ │ ├── about │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── berita │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── event │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── footer │ │ │ └── index.blade.php │ │ ├── imageSlider │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── kategoriBerita │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── pengajar │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ └── video │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── home.blade.php │ │ ├── kegiatan │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ │ ├── program │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ │ └── tentang │ │ ├── index.blade.php │ │ └── visiMisi.blade.php │ ├── frontend │ ├── content │ │ ├── about.blade.php │ │ ├── beritaAll.blade.php │ │ ├── beritaEvent.blade.php │ │ ├── event │ │ │ ├── detailEvent.blade.php │ │ │ └── eventAll.blade.php │ │ ├── footer.blade.php │ │ ├── guru.blade.php │ │ ├── header.blade.php │ │ ├── paginate.blade.php │ │ ├── profileSekolah.blade.php │ │ ├── showBerita.blade.php │ │ ├── slider.blade.php │ │ ├── video.blade.php │ │ └── visimisi.blade.php │ ├── program │ │ ├── jurusan │ │ │ └── show.blade.php │ │ └── kegiatan │ │ │ └── show.blade.php │ └── welcome.blade.php │ └── layouts │ ├── Frontend │ ├── app.blade.php │ ├── scripts.blade.php │ └── style.blade.php │ └── backend │ ├── app.blade.php │ ├── header.blade.php │ ├── menu.blade.php │ ├── scripts.blade.php │ └── style.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.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/andes2912/sekolahku/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/.styleci.yml -------------------------------------------------------------------------------- /Modules/Backup/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Backup' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Backup/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Database/Seeders/BackupDatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/Database/Seeders/BackupDatabaseSeeder.php -------------------------------------------------------------------------------- /Modules/Backup/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Http/Controllers/BackupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/Http/Controllers/BackupController.php -------------------------------------------------------------------------------- /Modules/Backup/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Providers/BackupServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/Providers/BackupServiceProvider.php -------------------------------------------------------------------------------- /Modules/Backup/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Backup/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Resources/views/backend/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/Resources/views/backend/form.blade.php -------------------------------------------------------------------------------- /Modules/Backup/Resources/views/backend/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/Resources/views/backend/index.blade.php -------------------------------------------------------------------------------- /Modules/Backup/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/Backup/Resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/Resources/views/layouts/master.blade.php -------------------------------------------------------------------------------- /Modules/Backup/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/Routes/api.php -------------------------------------------------------------------------------- /Modules/Backup/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/Routes/web.php -------------------------------------------------------------------------------- /Modules/Backup/Services/BackupService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/Services/BackupService.php -------------------------------------------------------------------------------- /Modules/Backup/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Backup/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/composer.json -------------------------------------------------------------------------------- /Modules/Backup/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/module.json -------------------------------------------------------------------------------- /Modules/Backup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/package.json -------------------------------------------------------------------------------- /Modules/Backup/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Backup/webpack.mix.js -------------------------------------------------------------------------------- /Modules/Murid/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Murid' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Murid/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Database/Seeders/MuridDatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Database/Seeders/MuridDatabaseSeeder.php -------------------------------------------------------------------------------- /Modules/Murid/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Http/Controllers/MuridController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Http/Controllers/MuridController.php -------------------------------------------------------------------------------- /Modules/Murid/Http/Controllers/PembayaranController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Http/Controllers/PembayaranController.php -------------------------------------------------------------------------------- /Modules/Murid/Http/Controllers/PerpustakaanController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Http/Controllers/PerpustakaanController.php -------------------------------------------------------------------------------- /Modules/Murid/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Http/Requests/ConfirmPaymentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Http/Requests/ConfirmPaymentRequest.php -------------------------------------------------------------------------------- /Modules/Murid/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Providers/MuridServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Providers/MuridServiceProvider.php -------------------------------------------------------------------------------- /Modules/Murid/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Murid/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/Murid/Resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Resources/views/layouts/master.blade.php -------------------------------------------------------------------------------- /Modules/Murid/Resources/views/pembayaran/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Resources/views/pembayaran/edit.blade.php -------------------------------------------------------------------------------- /Modules/Murid/Resources/views/pembayaran/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Resources/views/pembayaran/index.blade.php -------------------------------------------------------------------------------- /Modules/Murid/Resources/views/perpustakaan/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Resources/views/perpustakaan/index.blade.php -------------------------------------------------------------------------------- /Modules/Murid/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Routes/api.php -------------------------------------------------------------------------------- /Modules/Murid/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/Routes/web.php -------------------------------------------------------------------------------- /Modules/Murid/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Murid/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/composer.json -------------------------------------------------------------------------------- /Modules/Murid/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/module.json -------------------------------------------------------------------------------- /Modules/Murid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/package.json -------------------------------------------------------------------------------- /Modules/Murid/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Murid/webpack.mix.js -------------------------------------------------------------------------------- /Modules/PPDB/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Config/config.php: -------------------------------------------------------------------------------- 1 | 'PPDB' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/PPDB/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Database/Seeders/PPDBDatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Database/Seeders/PPDBDatabaseSeeder.php -------------------------------------------------------------------------------- /Modules/PPDB/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Entities/BerkasMurid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Entities/BerkasMurid.php -------------------------------------------------------------------------------- /Modules/PPDB/Entities/DataOrangTua.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Entities/DataOrangTua.php -------------------------------------------------------------------------------- /Modules/PPDB/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Http/Controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Http/Controllers/AuthController.php -------------------------------------------------------------------------------- /Modules/PPDB/Http/Controllers/DataMuridController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Http/Controllers/DataMuridController.php -------------------------------------------------------------------------------- /Modules/PPDB/Http/Controllers/PPDBController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Http/Controllers/PPDBController.php -------------------------------------------------------------------------------- /Modules/PPDB/Http/Controllers/PendaftaranController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Http/Controllers/PendaftaranController.php -------------------------------------------------------------------------------- /Modules/PPDB/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Http/Requests/BerkasMuridRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Http/Requests/BerkasMuridRequest.php -------------------------------------------------------------------------------- /Modules/PPDB/Http/Requests/DataMuridRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Http/Requests/DataMuridRequest.php -------------------------------------------------------------------------------- /Modules/PPDB/Http/Requests/DataOrtuRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Http/Requests/DataOrtuRequest.php -------------------------------------------------------------------------------- /Modules/PPDB/Http/Requests/RegisterRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Http/Requests/RegisterRequest.php -------------------------------------------------------------------------------- /Modules/PPDB/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Providers/PPDBServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Providers/PPDBServiceProvider.php -------------------------------------------------------------------------------- /Modules/PPDB/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/PPDB/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /Modules/PPDB/Resources/views/backend/dataMurid/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Resources/views/backend/dataMurid/show.blade.php -------------------------------------------------------------------------------- /Modules/PPDB/Resources/views/backend/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Resources/views/backend/index.blade.php -------------------------------------------------------------------------------- /Modules/PPDB/Resources/views/frontend/content/count.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Resources/views/frontend/content/count.blade.php -------------------------------------------------------------------------------- /Modules/PPDB/Resources/views/frontend/content/studi.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Resources/views/frontend/content/studi.blade.php -------------------------------------------------------------------------------- /Modules/PPDB/Resources/views/frontend/content/video.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Resources/views/frontend/content/video.blade.php -------------------------------------------------------------------------------- /Modules/PPDB/Resources/views/frontend/content/why.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Resources/views/frontend/content/why.blade.php -------------------------------------------------------------------------------- /Modules/PPDB/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/PPDB/Resources/views/layouts/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Resources/views/layouts/footer.blade.php -------------------------------------------------------------------------------- /Modules/PPDB/Resources/views/layouts/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Resources/views/layouts/header.blade.php -------------------------------------------------------------------------------- /Modules/PPDB/Resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Resources/views/layouts/master.blade.php -------------------------------------------------------------------------------- /Modules/PPDB/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Routes/api.php -------------------------------------------------------------------------------- /Modules/PPDB/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/Routes/web.php -------------------------------------------------------------------------------- /Modules/PPDB/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PPDB/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/composer.json -------------------------------------------------------------------------------- /Modules/PPDB/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/module.json -------------------------------------------------------------------------------- /Modules/PPDB/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/package.json -------------------------------------------------------------------------------- /Modules/PPDB/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/PPDB/webpack.mix.js -------------------------------------------------------------------------------- /Modules/Perpustakaan/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Perpustakaan' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Entities/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Entities/Author.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Entities/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Entities/Book.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Entities/Borrowing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Entities/Borrowing.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Entities/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Entities/Category.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Entities/Member.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Entities/Member.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Entities/Publisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Entities/Publisher.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Controllers/AuthorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Http/Controllers/AuthorController.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Controllers/BooksController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Http/Controllers/BooksController.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Controllers/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Http/Controllers/CategoryController.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Controllers/MemberController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Http/Controllers/MemberController.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Controllers/PeminjamController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Http/Controllers/PeminjamController.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Controllers/PublisherController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Http/Controllers/PublisherController.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Requests/AuthorRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Http/Requests/AuthorRequest.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Requests/BookRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Http/Requests/BookRequest.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Requests/CategoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Http/Requests/CategoryRequest.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Requests/MemberRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Http/Requests/MemberRequest.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Requests/PeminjamRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Http/Requests/PeminjamRequest.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Requests/PublisherRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Http/Requests/PublisherRequest.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Http/Requests/UpdatePeminjamRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Http/Requests/UpdatePeminjamRequest.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Resources/views/layouts/master.blade.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Routes/api.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/Routes/web.php -------------------------------------------------------------------------------- /Modules/Perpustakaan/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Perpustakaan/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/composer.json -------------------------------------------------------------------------------- /Modules/Perpustakaan/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/module.json -------------------------------------------------------------------------------- /Modules/Perpustakaan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/package.json -------------------------------------------------------------------------------- /Modules/Perpustakaan/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/Perpustakaan/webpack.mix.js -------------------------------------------------------------------------------- /Modules/SPP/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Config/config.php: -------------------------------------------------------------------------------- 1 | 'SPP' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/SPP/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Database/Seeders/SPPDatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Database/Seeders/SPPDatabaseSeeder.php -------------------------------------------------------------------------------- /Modules/SPP/Database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Entities/BankAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Entities/BankAccount.php -------------------------------------------------------------------------------- /Modules/SPP/Entities/DetailPaymentSpp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Entities/DetailPaymentSpp.php -------------------------------------------------------------------------------- /Modules/SPP/Entities/PaymentSpp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Entities/PaymentSpp.php -------------------------------------------------------------------------------- /Modules/SPP/Entities/SppSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Entities/SppSetting.php -------------------------------------------------------------------------------- /Modules/SPP/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Http/Controllers/SPPController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Http/Controllers/SPPController.php -------------------------------------------------------------------------------- /Modules/SPP/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/SPP/Providers/SPPServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Providers/SPPServiceProvider.php -------------------------------------------------------------------------------- /Modules/SPP/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/SPP/Resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Resources/views/layouts/master.blade.php -------------------------------------------------------------------------------- /Modules/SPP/Resources/views/murid/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Resources/views/murid/index.blade.php -------------------------------------------------------------------------------- /Modules/SPP/Resources/views/murid/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Resources/views/murid/show.blade.php -------------------------------------------------------------------------------- /Modules/SPP/Resources/views/murid/update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Resources/views/murid/update.blade.php -------------------------------------------------------------------------------- /Modules/SPP/Resources/views/setting.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Resources/views/setting.blade.php -------------------------------------------------------------------------------- /Modules/SPP/Routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Routes/api.php -------------------------------------------------------------------------------- /Modules/SPP/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/Routes/web.php -------------------------------------------------------------------------------- /Modules/SPP/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/SPP/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/composer.json -------------------------------------------------------------------------------- /Modules/SPP/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/module.json -------------------------------------------------------------------------------- /Modules/SPP/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/package.json -------------------------------------------------------------------------------- /Modules/SPP/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/Modules/SPP/webpack.mix.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helpers/GlobalHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Helpers/GlobalHelpers.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Pengguna/BendaharaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/Pengguna/BendaharaController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Pengguna/MuridController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/Pengguna/MuridController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Pengguna/PPDBController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/Pengguna/PPDBController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Pengguna/PengajarController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/Pengguna/PengajarController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Pengguna/PerpusController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/Pengguna/PerpusController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Pengguna/StafController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/Pengguna/StafController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/SettingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Website/AboutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/Website/AboutController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Website/BeritaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/Website/BeritaController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Website/EventsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/Website/EventsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Website/FooterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/Website/FooterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Website/KegiatanController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/Website/KegiatanController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Website/ProgramController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/Website/ProgramController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Website/VideoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Backend/Website/VideoController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Frontend/IndexController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/MenuController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/Frontend/MenuController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/AboutRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/AboutRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/BendaharaRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/BendaharaRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/BeritaRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/BeritaRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ChangePasswordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/ChangePasswordRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/EventRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/EventRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/FooterRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/FooterRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ImageSliderRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/ImageSliderRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/KategoriBeritaRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/KategoriBeritaRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/KegiatanRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/KegiatanRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/PengajarRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/PengajarRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfileSekolahRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/ProfileSekolahRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfileSettingsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/ProfileSettingsRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProgramRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/ProgramRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StafRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/StafRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/VideoRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/VideoRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/VisidanMisiRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/VisidanMisiRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ppdbRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Http/Requests/ppdbRequest.php -------------------------------------------------------------------------------- /app/Models/About.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/About.php -------------------------------------------------------------------------------- /app/Models/Bank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/Bank.php -------------------------------------------------------------------------------- /app/Models/Berita.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/Berita.php -------------------------------------------------------------------------------- /app/Models/DataJurusan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/DataJurusan.php -------------------------------------------------------------------------------- /app/Models/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/Events.php -------------------------------------------------------------------------------- /app/Models/Footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/Footer.php -------------------------------------------------------------------------------- /app/Models/ImageSlider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/ImageSlider.php -------------------------------------------------------------------------------- /app/Models/Jurusan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/Jurusan.php -------------------------------------------------------------------------------- /app/Models/KategoriBerita.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/KategoriBerita.php -------------------------------------------------------------------------------- /app/Models/Kegiatan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/Kegiatan.php -------------------------------------------------------------------------------- /app/Models/ProfileSekolah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/ProfileSekolah.php -------------------------------------------------------------------------------- /app/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/Setting.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UsersDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/UsersDetail.php -------------------------------------------------------------------------------- /app/Models/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/Video.php -------------------------------------------------------------------------------- /app/Models/Visimisi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/Visimisi.php -------------------------------------------------------------------------------- /app/Models/dataMurid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Models/dataMurid.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/maxCharacters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/app/Rules/maxCharacters.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/backup.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/modules.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2021_08_08_100000_create_banks_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/database/migrations/2021_08_08_100000_create_banks_tables.php -------------------------------------------------------------------------------- /database/migrations/2022_03_23_065335_create_abouts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/database/migrations/2022_03_23_065335_create_abouts_table.php -------------------------------------------------------------------------------- /database/migrations/2022_03_23_074809_create_videos_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/database/migrations/2022_03_23_074809_create_videos_table.php -------------------------------------------------------------------------------- /database/migrations/2022_03_24_105758_create_events_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/database/migrations/2022_03_24_105758_create_events_table.php -------------------------------------------------------------------------------- /database/seeders/AddRoleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/database/seeders/AddRoleSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/IndoBankSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/database/seeders/IndoBankSeeder.php -------------------------------------------------------------------------------- /database/seeders/JurusanSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/database/seeders/JurusanSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/database/seeders/RoleSeeder.php -------------------------------------------------------------------------------- /database/seeders/SettingSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/database/seeders/SettingSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/docs/index.md -------------------------------------------------------------------------------- /modules_statuses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/modules_statuses.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/Assets/Backend/css/bootstrap-extended.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/bootstrap-extended.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/bootstrap-extended.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/bootstrap-extended.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/bootstrap.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/colors.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/colors.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/colors.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/components.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/components.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/components.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/core/colors/palette-gradient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/core/colors/palette-gradient.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/core/colors/palette-noui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/core/colors/palette-noui.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/core/colors/palette-noui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/core/colors/palette-noui.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/core/colors/palette-variables.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/Assets/Backend/css/core/colors/palette-variables.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/Assets/Backend/css/core/mixins/alert.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/Assets/Backend/css/core/mixins/alert.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/Assets/Backend/css/core/mixins/hex2rgb.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/Assets/Backend/css/core/mixins/hex2rgb.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/Assets/Backend/css/core/mixins/main-menu-mixin.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/Assets/Backend/css/core/mixins/main-menu-mixin.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/Assets/Backend/css/core/mixins/transitions.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/Assets/Backend/css/core/mixins/transitions.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-calendar.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-calendar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-calendar.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-chat-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-chat-list.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-chat-list.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-chat-list.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-chat.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-chat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-chat.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-ecommerce-details.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-ecommerce-details.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-ecommerce-details.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-ecommerce-details.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-ecommerce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-ecommerce.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-ecommerce.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-ecommerce.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-email.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-email.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-email.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-email.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-file-manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-file-manager.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-file-manager.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-file-manager.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-invoice-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-invoice-list.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-invoice-list.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-invoice-list.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-invoice-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-invoice-print.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-invoice-print.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-invoice-print.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-invoice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-invoice.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-invoice.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-invoice.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-kanban.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-kanban.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-kanban.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-kanban.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-todo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-todo.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-todo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-todo.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-user.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/app-user.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/app-user.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/dashboard-ecommerce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/dashboard-ecommerce.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/dashboard-ecommerce.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/dashboard-ecommerce.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-auth.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-auth.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-auth.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-blog.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-blog.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-blog.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-coming-soon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-coming-soon.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-coming-soon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-coming-soon.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-faq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-faq.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-faq.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-faq.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-knowledge-base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-knowledge-base.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-knowledge-base.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-knowledge-base.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-misc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-misc.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-misc.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-misc.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-pricing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-pricing.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-pricing.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-pricing.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-profile.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/page-profile.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/page-profile.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/ui-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/ui-colors.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/ui-colors.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/ui-colors.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/ui-feather.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/ui-feather.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/pages/ui-feather.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/pages/ui-feather.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/plugins/charts/chart-apex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/plugins/charts/chart-apex.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/plugins/charts/chart-apex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/plugins/charts/chart-apex.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/plugins/forms/form-number-input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/plugins/forms/form-number-input.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/plugins/forms/form-quill-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/plugins/forms/form-quill-editor.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/plugins/forms/form-validation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/plugins/forms/form-validation.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/plugins/forms/form-wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/plugins/forms/form-wizard.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/plugins/forms/form-wizard.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/plugins/forms/form-wizard.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/plugins/maps/map-leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/plugins/maps/map-leaflet.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/plugins/maps/map-leaflet.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/plugins/maps/map-leaflet.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/plugins/tables/table-ag-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/plugins/tables/table-ag-grid.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/plugins/ui/coming-soon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/plugins/ui/coming-soon.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/plugins/ui/coming-soon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/plugins/ui/coming-soon.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/themes/bordered-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/themes/bordered-layout.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/themes/bordered-layout.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/themes/bordered-layout.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/themes/dark-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/themes/dark-layout.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/themes/dark-layout.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/themes/dark-layout.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/themes/semi-dark-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/themes/semi-dark-layout.css -------------------------------------------------------------------------------- /public/Assets/Backend/css/themes/semi-dark-layout.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/css/themes/semi-dark-layout.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/fonts/feather/fonts/feather.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/fonts/feather/fonts/feather.eot -------------------------------------------------------------------------------- /public/Assets/Backend/fonts/feather/fonts/feather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/fonts/feather/fonts/feather.svg -------------------------------------------------------------------------------- /public/Assets/Backend/fonts/feather/fonts/feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/fonts/feather/fonts/feather.ttf -------------------------------------------------------------------------------- /public/Assets/Backend/fonts/feather/fonts/feather.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/fonts/feather/fonts/feather.woff -------------------------------------------------------------------------------- /public/Assets/Backend/fonts/feather/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/fonts/feather/iconfont.css -------------------------------------------------------------------------------- /public/Assets/Backend/fonts/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/fonts/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /public/Assets/Backend/images/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/ico/favicon.ico -------------------------------------------------------------------------------- /public/Assets/Backend/images/illustration/Pot1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/illustration/Pot1.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/illustration/Pot2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/illustration/Pot2.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/illustration/Pot3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/illustration/Pot3.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/illustration/api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/illustration/api.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/illustration/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/illustration/badge.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/illustration/demand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/illustration/demand.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/illustration/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/illustration/email.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/illustration/login-v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/illustration/login-v2.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/illustration/marketing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/illustration/marketing.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/illustration/personalization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/illustration/personalization.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/illustration/sales.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/illustration/sales.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/logo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/logo/favicon.ico -------------------------------------------------------------------------------- /public/Assets/Backend/images/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/logo/logo.png -------------------------------------------------------------------------------- /public/Assets/Backend/images/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/logo/logo.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/arrow-down.png -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/auth-v1-bottom-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/auth-v1-bottom-bg.png -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/auth-v1-top-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/auth-v1-top-bg.png -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/calendar-illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/calendar-illustration.png -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/coming-soon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/coming-soon-dark.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/coming-soon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/coming-soon.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/content-img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/content-img-1.jpg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/content-img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/content-img-2.jpg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/content-img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/content-img-3.jpg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/content-img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/content-img-4.jpg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/decore-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/decore-left.png -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/decore-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/decore-right.png -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/error-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/error-dark.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/error.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/forgot-password-v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/forgot-password-v2.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/forgot-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/forgot-password.png -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/kb-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/kb-image.jpg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/login-v2-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/login-v2-dark.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/login-v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/login-v2.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/login/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/login/facebook.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/login/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/login/github.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/login/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/login/google.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/login/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/login/twitter.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/not-authorized-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/not-authorized-dark.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/not-authorized.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/not-authorized.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/pixinvent-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/pixinvent-logo.png -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/register-v2-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/register-v2-dark.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/register-v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/register-v2.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/reset-password-v2-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/reset-password-v2-dark.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/reset-password-v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/reset-password-v2.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/under-maintenance-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/under-maintenance-dark.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/pages/under-maintenance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/pages/under-maintenance.svg -------------------------------------------------------------------------------- /public/Assets/Backend/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/images/user.png -------------------------------------------------------------------------------- /public/Assets/Backend/js/core/app-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/core/app-menu.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/core/app-menu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/core/app-menu.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/core/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/core/app.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/core/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/core/app.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/cards/card-advance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/cards/card-advance.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/cards/card-advance.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/cards/card-advance.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/cards/card-analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/cards/card-analytics.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/cards/card-analytics.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/cards/card-analytics.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/cards/card-statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/cards/card-statistics.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/cards/card-statistics.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/cards/card-statistics.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/charts/chart-apex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/charts/chart-apex.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/charts/chart-apex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/charts/chart-apex.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/charts/chart-chartjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/charts/chart-chartjs.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/charts/chart-chartjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/charts/chart-chartjs.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/customizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/customizer.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/customizer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/customizer.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/documentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/documentation.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/documentation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/documentation.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-file-uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-file-uploader.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-input-mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-input-mask.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-input-mask.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-input-mask.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-number-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-number-input.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-quill-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-quill-editor.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-repeater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-repeater.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-repeater.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-repeater.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-select2.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-select2.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-tooltip-valid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-tooltip-valid.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-validation.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-validation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-validation.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-wizard.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/forms/form-wizard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/forms/form-wizard.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/maps/map-leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/maps/map-leaflet.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/maps/map-leaflet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/maps/map-leaflet.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-calendar-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-calendar-events.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-calendar.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-calendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-calendar.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-chat.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-chat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-chat.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-ecommerce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-ecommerce.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-ecommerce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-ecommerce.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-email.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-email.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-email.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-file-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-file-manager.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-invoice-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-invoice-list.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-invoice-print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-invoice-print.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-invoice-print.min.js: -------------------------------------------------------------------------------- 1 | $((function(){"use strict";window.print()})); -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-invoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-invoice.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-invoice.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-invoice.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-kanban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-kanban.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-kanban.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-kanban.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-todo.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-todo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-todo.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-user-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-user-edit.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-user-edit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-user-edit.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-user-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-user-list.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-user-list.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-user-list.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-user-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-user-view.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/app-user-view.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/app-user-view.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/dashboard-analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/dashboard-analytics.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/dashboard-ecommerce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/dashboard-ecommerce.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/page-auth-login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/page-auth-login.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/page-auth-login.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/page-auth-login.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/page-auth-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/page-auth-register.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/page-blog-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/page-blog-edit.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/page-blog-edit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/page-blog-edit.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/page-knowledge-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/page-knowledge-base.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/page-pricing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/page-pricing.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/page-pricing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/page-pricing.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/page-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/page-profile.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/pages/page-profile.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/pages/page-profile.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/tables/table-ag-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/tables/table-ag-grid.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/tables/table-ag-grid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/tables/table-ag-grid.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/ui/ui-feather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/ui/ui-feather.js -------------------------------------------------------------------------------- /public/Assets/Backend/js/scripts/ui/ui-feather.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/js/scripts/ui/ui-feather.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/animate/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/animate/animate.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/animate/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/animate/animate.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/charts/apexcharts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/charts/apexcharts.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/documentation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/documentation.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/editors/quill/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/editors/quill/katex.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/extensions/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/extensions/32px.png -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/extensions/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/extensions/40px.png -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/extensions/dragula.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/extensions/dragula.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/extensions/jstree.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/extensions/jstree.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/extensions/plyr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/extensions/plyr.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/extensions/shepherd.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/extensions/shepherd.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/extensions/swiper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/extensions/swiper.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/extensions/tether.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/extensions/tether.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/extensions/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/extensions/toastr.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/forms/toggle/switchery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/forms/toggle/switchery.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/jkanban/jkanban.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/jkanban/jkanban.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/maps/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/maps/images/layers-2x.png -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/maps/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/maps/images/layers.png -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/maps/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/maps/images/marker-icon.png -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/maps/leaflet.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/maps/leaflet.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/modal/facebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/modal/facebook.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/modal/google.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/modal/google.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/modal/twitter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/modal/twitter.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/pace/pace.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/pace/pace.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/tables/ag-grid/ag-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/tables/ag-grid/ag-grid.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/ui/prism-treeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/ui/prism-treeview.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/ui/prism.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/ui/prism.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/vendors-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/vendors-rtl.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/vendors.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/vendors.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/css/waves/waves.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/css/waves/waves.min.css -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/blockui/blockui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/blockui/blockui.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/calendar/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/calendar/fullcalendar.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/charts/apexcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/charts/apexcharts.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/charts/apexcharts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/charts/apexcharts.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/charts/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/charts/chart.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/editors/quill/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/editors/quill/katex.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/editors/quill/quill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/editors/quill/quill.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/editors/quill/quill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/editors/quill/quill.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/editors/quill/themes/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/editors/quill/themes/base.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/editors/quill/themes/snow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/editors/quill/themes/snow.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/editors/quill/ui/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/editors/quill/ui/icons.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/editors/quill/ui/picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/editors/quill/ui/picker.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/editors/quill/ui/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/editors/quill/ui/tooltip.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/dragula.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/dragula.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/i18next.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/i18next.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/jstree.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/lang-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/lang-all.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/locale-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/locale-all.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/moment.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/nouislider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/nouislider.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/plyr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/plyr.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/polyfill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/polyfill.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/shepherd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/shepherd.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/swiper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/swiper.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/tether.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/tether.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/toastr.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/transition.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/extensions/wNumb.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/extensions/wNumb.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/forms/cleave/cleave.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/forms/cleave/cleave.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/forms/toggle/switchery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/forms/toggle/switchery.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/hammer/hammer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/hammer/hammer.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/jkanban/jkanban.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/jkanban/jkanban.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/jquery/jquery.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/maps/leaflet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/maps/leaflet.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/pace/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/pace/pace.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/pickers/pickadate/legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/pickers/pickadate/legacy.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/pickers/pickadate/picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/pickers/pickadate/picker.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/popper/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/popper/popper.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/promises/promises.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/promises/promises.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/ui/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/ui/affix.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/ui/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/ui/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/ui/jquery.sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/ui/jquery.sticky.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/ui/prism-treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/ui/prism-treeview.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/ui/prism.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/ui/prism.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/unison-js/unison-js.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/unison-js/unison-js.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/vendors.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/vendors.min.js -------------------------------------------------------------------------------- /public/Assets/Backend/vendors/js/waves/waves.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Backend/vendors/js/waves/waves.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/css/animate.min.css -------------------------------------------------------------------------------- /public/Assets/Frontend/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/Assets/Frontend/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/css/font-awesome.min.css -------------------------------------------------------------------------------- /public/Assets/Frontend/css/hover-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/css/hover-min.css -------------------------------------------------------------------------------- /public/Assets/Frontend/css/jquery.datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/css/jquery.datetimepicker.css -------------------------------------------------------------------------------- /public/Assets/Frontend/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/css/magnific-popup.css -------------------------------------------------------------------------------- /public/Assets/Frontend/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/css/main.css -------------------------------------------------------------------------------- /public/Assets/Frontend/css/meanmenu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/css/meanmenu.min.css -------------------------------------------------------------------------------- /public/Assets/Frontend/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/css/normalize.css -------------------------------------------------------------------------------- /public/Assets/Frontend/css/reImageGrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/css/reImageGrid.css -------------------------------------------------------------------------------- /public/Assets/Frontend/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/css/select2.min.css -------------------------------------------------------------------------------- /public/Assets/Frontend/fonts/fontawesome-webfont3295.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/fonts/fontawesome-webfont3295.eot -------------------------------------------------------------------------------- /public/Assets/Frontend/fonts/fontawesome-webfont3295.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/fonts/fontawesome-webfont3295.html -------------------------------------------------------------------------------- /public/Assets/Frontend/fonts/fontawesome-webfont3295.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/fonts/fontawesome-webfont3295.svg -------------------------------------------------------------------------------- /public/Assets/Frontend/fonts/fontawesome-webfont3295.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/fonts/fontawesome-webfont3295.ttf -------------------------------------------------------------------------------- /public/Assets/Frontend/fonts/fontawesome-webfont3295.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/fonts/fontawesome-webfont3295.woff -------------------------------------------------------------------------------- /public/Assets/Frontend/fonts/fontawesome-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/fonts/fontawesome-webfontd41d.eot -------------------------------------------------------------------------------- /public/Assets/Frontend/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/Assets/Frontend/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/Assets/Frontend/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/Assets/Frontend/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/404.png -------------------------------------------------------------------------------- /public/Assets/Frontend/img/about/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/about/1.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/about/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/about/2.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/banner/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/banner/1.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/banner/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/banner/2.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/banner/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/banner/3.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/banner/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/banner/4.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/banner/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/banner/5.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/banner/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/banner/6.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/banner/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/banner/7.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/countdown.png -------------------------------------------------------------------------------- /public/Assets/Frontend/img/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/empty.svg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/favicon.png -------------------------------------------------------------------------------- /public/Assets/Frontend/img/footer/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/footer/1.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/footer/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/footer/2.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/footer/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/footer/3.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/footer/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/footer/4.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/footer/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/footer/5.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/footer/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/footer/6.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/logo-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/logo-footer.png -------------------------------------------------------------------------------- /public/Assets/Frontend/img/logo-primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/logo-primary.png -------------------------------------------------------------------------------- /public/Assets/Frontend/img/logo-textprimary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/logo-textprimary.png -------------------------------------------------------------------------------- /public/Assets/Frontend/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/logo.png -------------------------------------------------------------------------------- /public/Assets/Frontend/img/payment-method1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/payment-method1.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/payment-method2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/payment-method2.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/payment-method3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/payment-method3.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/payment-method4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/payment-method4.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/preloader.gif -------------------------------------------------------------------------------- /public/Assets/Frontend/img/slider/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/slider/1.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/img/slider/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/img/slider/2.jpg -------------------------------------------------------------------------------- /public/Assets/Frontend/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/isotope.pkgd.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/jquery-2.2.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/jquery-2.2.4.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/jquery.countdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/jquery.countdown.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/jquery.counterup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/jquery.counterup.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/jquery.gridrotator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/jquery.gridrotator.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/jquery.meanmenu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/jquery.meanmenu.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/jquery.scrollUp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/jquery.scrollUp.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/main.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/modernizr-2.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/modernizr-2.8.3.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/plugins.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/select2.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/validator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/validator.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/wNumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/wNumb.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/waypoints.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/js/wow.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/style.css -------------------------------------------------------------------------------- /public/Assets/Frontend/vendor/OwlCarousel/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/vendor/OwlCarousel/owl.carousel.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/vendor/OwlCarousel/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/vendor/OwlCarousel/owl.video.play.png -------------------------------------------------------------------------------- /public/Assets/Frontend/vendor/noUiSlider/nouislider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/vendor/noUiSlider/nouislider.min.css -------------------------------------------------------------------------------- /public/Assets/Frontend/vendor/noUiSlider/nouislider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/vendor/noUiSlider/nouislider.min.js -------------------------------------------------------------------------------- /public/Assets/Frontend/vendor/slider/css/nivo-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/vendor/slider/css/nivo-slider.css -------------------------------------------------------------------------------- /public/Assets/Frontend/vendor/slider/css/preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/vendor/slider/css/preview.css -------------------------------------------------------------------------------- /public/Assets/Frontend/vendor/slider/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/vendor/slider/home.js -------------------------------------------------------------------------------- /public/Assets/Frontend/vendor/slider/js/jquery.nivo.slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/Assets/Frontend/vendor/slider/js/jquery.nivo.slider.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/index.php -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/ar/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/ar/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/bn/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/bn/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/cs/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/cs/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/da/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/da/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/de/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/de/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/en/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/en/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/es/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/es/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/fa/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/fa/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/fi/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/fi/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/fr/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/fr/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/hi/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/hi/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/id/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/id/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/it/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/it/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/ja/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/ja/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/nl/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/nl/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/no/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/no/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/pl/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/pl/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/pt-BR/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/pt-BR/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/pt/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/pt/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/ro/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/ro/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/ru/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/ru/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/tr/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/tr/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/uk/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/uk/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/zh-CN/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/zh-CN/notifications.php -------------------------------------------------------------------------------- /resources/lang/vendor/backup/zh-TW/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/lang/vendor/backup/zh-TW/notifications.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/auth/passwords/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/bendahara/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/bendahara/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/bendahara/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/bendahara/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/bendahara/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/bendahara/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/murid/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/murid/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/murid/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/murid/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/murid/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/murid/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/pengajar/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/pengajar/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/pengajar/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/pengajar/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/pengajar/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/pengajar/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/perpus/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/perpus/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/perpus/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/perpus/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/perpus/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/perpus/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/ppdb/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/ppdb/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/ppdb/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/ppdb/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/ppdb/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/ppdb/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/staf/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/staf/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/staf/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/staf/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pengguna/staf/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/pengguna/staf/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/profile/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/profile/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/settings/addBank.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/settings/addBank.blade.php -------------------------------------------------------------------------------- /resources/views/backend/settings/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/settings/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/website/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/website/home.blade.php -------------------------------------------------------------------------------- /resources/views/backend/website/kegiatan/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/website/kegiatan/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/website/kegiatan/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/website/kegiatan/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/website/kegiatan/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/website/kegiatan/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/website/program/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/website/program/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/website/program/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/website/program/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/website/program/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/website/program/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/website/tentang/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/website/tentang/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/website/tentang/visiMisi.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/backend/website/tentang/visiMisi.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/content/about.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/content/about.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/content/beritaAll.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/content/beritaAll.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/content/beritaEvent.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/content/beritaEvent.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/content/event/eventAll.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/content/event/eventAll.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/content/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/content/footer.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/content/guru.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/content/guru.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/content/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/content/header.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/content/paginate.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/content/paginate.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/content/profileSekolah.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/content/profileSekolah.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/content/showBerita.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/content/showBerita.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/content/slider.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/content/slider.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/content/video.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/content/video.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/content/visimisi.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/content/visimisi.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/program/jurusan/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/program/jurusan/show.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/program/kegiatan/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/program/kegiatan/show.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/frontend/welcome.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/Frontend/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/layouts/Frontend/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/Frontend/scripts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/layouts/Frontend/scripts.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/Frontend/style.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/layouts/Frontend/style.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/backend/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/layouts/backend/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/backend/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/layouts/backend/header.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/backend/menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/layouts/backend/menu.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/backend/scripts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/layouts/backend/scripts.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/backend/style.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/resources/views/layouts/backend/style.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/server.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/andes2912/sekolahku/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/andes2912/sekolahku/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andes2912/sekolahku/HEAD/webpack.mix.js --------------------------------------------------------------------------------