├── .directory ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── BLANK_README.md ├── LICENSE.txt ├── README.md ├── app ├── Actions │ ├── Fortify │ │ ├── CreateNewUser.php │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php │ └── Jetstream │ │ └── DeleteUser.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Exports │ ├── exportbanksoal.php │ ├── exportdataujian.php │ ├── exportkd.php │ ├── exportmateri.php │ ├── exportnilaiperkd.php │ └── exportnilaipermateri.php ├── Helpers │ ├── Fungsi.php │ └── getsettings.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ ├── adminabsensicontroller.php │ │ ├── adminapicontroller.php │ │ ├── adminbanksoalcontroller.php │ │ ├── adminbanksoaljawabancontroller.php │ │ ├── admindashboardcontroller.php │ │ ├── admingeneratebanksoalcontroller.php │ │ ├── admingurucontroller.php │ │ ├── adminkelascontroller.php │ │ ├── adminkkocontroller.php │ │ ├── adminkompetensidasarcontroller.php │ │ ├── adminmapelcontroller.php │ │ ├── adminmateripokokcontroller.php │ │ ├── adminpelanggarancontroller.php │ │ ├── adminpembayarancontroller.php │ │ ├── adminpembayaranlcontroller.php │ │ ├── adminpenilaiancontroller.php │ │ ├── adminprosescontroller.php │ │ ├── adminseedercontroller.php │ │ ├── adminsettingscontroller.php │ │ ├── adminsilabuscontroller.php │ │ ├── adminsiswacontroller.php │ │ ├── adminsynccontroller.php │ │ ├── admintagihancontroller.php │ │ ├── admintagihandetailcontroller.php │ │ ├── admintapelcontroller.php │ │ ├── adminuserscontroller.php │ │ ├── guruabsensicontroller.php │ │ ├── gurukelascontroller.php │ │ ├── gurukompetensidasarcontroller.php │ │ ├── gurumateripokokcontroller.php │ │ ├── gurupelanggarancontroller.php │ │ ├── gurupenilaiancontroller.php │ │ ├── gurusilabuscontroller.php │ │ ├── siswadataajarcontroller.php │ │ └── siswaekskulcontroller.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Resources │ │ └── dataujianresource.php ├── Imports │ ├── ImportSiswa.php │ ├── Importkelas.php │ ├── Importpegawai.php │ ├── Importpemasukan.php │ ├── Importpengeluaran.php │ ├── Importtagihanatur.php │ ├── Importtagihansiswa.php │ ├── Importtagihansiswadetail.php │ ├── Importtapel.php │ ├── importbanksoal.php │ ├── importbanksoalv2.php │ ├── importkd.php │ ├── importkko.php │ ├── importmateri.php │ └── importnilaipermateri.php ├── Models │ ├── User.php │ ├── absensi.php │ ├── banksoal.php │ ├── banksoaljawaban.php │ ├── dataajar.php │ ├── ekskul.php │ ├── ekskuldetail.php │ ├── generatebanksoal.php │ ├── generatebanksoal_detail.php │ ├── generatebanksoal_jawaban.php │ ├── guru.php │ ├── inputnilai.php │ ├── kelas.php │ ├── kko.php │ ├── kompetensidasar.php │ ├── mapel.php │ ├── materipokok.php │ ├── pelanggaran.php │ ├── pembayaran.php │ ├── settings.php │ ├── siswa.php │ ├── tagihan.php │ ├── tagihandetail.php │ └── tapel.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── FortifyServiceProvider.php │ ├── FungsiServiceProvider.php │ ├── JetstreamServiceProvider.php │ ├── RouteServiceProvider.php │ └── getsettingsServiceProvider.php └── View │ └── Components │ ├── Alert.php │ ├── AppLayout.php │ ├── ButtonCreate.php │ ├── ButtonDelete.php │ ├── ButtonDetail.php │ ├── ButtonEdit.php │ ├── ButtonResetPass.php │ ├── FormPelanggaranTambah.php │ ├── GuestLayout.php │ ├── jsdatatable.php │ ├── jsmultidel.php │ └── sweetalertsession.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── excel.php ├── filesystems.php ├── fortify.php ├── hashing.php ├── jetstream.php ├── logging.php ├── mail.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 │ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2021_08_04_141828_create_sessions_table.php │ ├── 2021_08_06_155146_create_settings_table.php │ ├── 2021_10_22_134006_create_tapel_table.php │ ├── 2021_10_22_134200_create_kelas_table.php │ ├── 2021_10_22_134217_create_siswa_table.php │ ├── 2021_10_22_134234_create_guru_table.php │ ├── 2021_10_22_134247_create_mapel_table.php │ ├── 2021_10_22_135841_create_kko_table.php │ ├── 2021_10_22_164651_create_kategori_table.php │ ├── 2021_10_22_200611_create_kompetensidasar_table.php │ ├── 2021_10_22_201317_create_dataajar_table.php │ ├── 2021_10_22_201331_create_materipokok_table.php │ ├── 2021_10_23_001140_create_banksoal_table.php │ ├── 2021_10_23_001210_create_banksoaljawaban_table.php │ ├── 2021_10_23_152535_add_kategorisoal_nama_on_banksoal_table.php │ ├── 2021_10_24_100118_create_inputnilai_table.php │ ├── 2021_10_24_123919_create_absensi_table.php │ ├── 2021_10_24_124109_create_pelanggaran_table.php │ ├── 2021_10_25_135449_create_generatebanksoal_table.php │ ├── 2021_10_25_154702_create_generatebanksoal_detail_table.php │ ├── 2021_10_25_154929_create_generatebanksoal_jawaban_table.php │ ├── 2021_11_11_214323_create_ekskul_table.php │ ├── 2021_11_11_214738_create_ekskuldetail_table.php │ ├── 2021_11_11_214908_create_tagihan_table.php │ ├── 2021_11_11_214948_create_tagihandetail_table.php │ └── 2021_11_11_215010_create_pembayaran_table.php └── seeders │ ├── DatabaseSeeder.php │ ├── dataseeder.php │ └── oneseeder.php ├── docker-compose.yml ├── images ├── beranda1.png ├── class_diagram1.png ├── class_diagram221.png ├── dashboaradmin1.png ├── dashboardlm.png ├── dashboardlm2.png ├── dashboardlm3.png ├── dashboardluar.png ├── logo.png ├── menu1.PNG ├── pelanggan1.png ├── screenshot.png └── tagihan.png ├── package-lock.json ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── css │ │ ├── babeng.css │ │ ├── components.css │ │ ├── components.css.map │ │ ├── custom.css │ │ ├── custom.css.map │ │ ├── kopekstylesheet.css │ │ ├── reverse.css │ │ ├── rtl.css │ │ ├── skins │ │ │ ├── reverse.css │ │ │ └── reverse.css.map │ │ ├── style.css │ │ └── style.css.map │ ├── fonts │ │ ├── nunito-v9-latin-600.eot │ │ ├── nunito-v9-latin-600.svg │ │ ├── nunito-v9-latin-600.ttf │ │ ├── nunito-v9-latin-600.woff │ │ ├── nunito-v9-latin-600.woff2 │ │ ├── nunito-v9-latin-700.eot │ │ ├── nunito-v9-latin-700.svg │ │ ├── nunito-v9-latin-700.ttf │ │ ├── nunito-v9-latin-700.woff │ │ ├── nunito-v9-latin-700.woff2 │ │ ├── nunito-v9-latin-800.eot │ │ ├── nunito-v9-latin-800.svg │ │ ├── nunito-v9-latin-800.ttf │ │ ├── nunito-v9-latin-800.woff │ │ ├── nunito-v9-latin-800.woff2 │ │ ├── nunito-v9-latin-regular.eot │ │ ├── nunito-v9-latin-regular.svg │ │ ├── nunito-v9-latin-regular.ttf │ │ ├── nunito-v9-latin-regular.woff │ │ ├── nunito-v9-latin-regular.woff2 │ │ └── vazir │ │ │ ├── Farsi-Digits-Without-Latin │ │ │ ├── Vazir-Black-FD-WOL.eot │ │ │ ├── Vazir-Black-FD-WOL.ttf │ │ │ ├── Vazir-Black-FD-WOL.woff │ │ │ ├── Vazir-Black-FD-WOL.woff2 │ │ │ ├── Vazir-Bold-FD-WOL.eot │ │ │ ├── Vazir-Bold-FD-WOL.ttf │ │ │ ├── Vazir-Bold-FD-WOL.woff │ │ │ ├── Vazir-Bold-FD-WOL.woff2 │ │ │ ├── Vazir-FD-WOL.eot │ │ │ ├── Vazir-FD-WOL.ttf │ │ │ ├── Vazir-FD-WOL.woff │ │ │ ├── Vazir-FD-WOL.woff2 │ │ │ ├── Vazir-Light-FD-WOL.eot │ │ │ ├── Vazir-Light-FD-WOL.ttf │ │ │ ├── Vazir-Light-FD-WOL.woff │ │ │ ├── Vazir-Light-FD-WOL.woff2 │ │ │ ├── Vazir-Medium-FD-WOL.eot │ │ │ ├── Vazir-Medium-FD-WOL.ttf │ │ │ ├── Vazir-Medium-FD-WOL.woff │ │ │ ├── Vazir-Medium-FD-WOL.woff2 │ │ │ ├── Vazir-Thin-FD-WOL.eot │ │ │ ├── Vazir-Thin-FD-WOL.ttf │ │ │ ├── Vazir-Thin-FD-WOL.woff │ │ │ └── Vazir-Thin-FD-WOL.woff2 │ │ │ ├── Farsi-Digits │ │ │ ├── Vazir-Black-FD.eot │ │ │ ├── Vazir-Black-FD.ttf │ │ │ ├── Vazir-Black-FD.woff │ │ │ ├── Vazir-Black-FD.woff2 │ │ │ ├── Vazir-Bold-FD.eot │ │ │ ├── Vazir-Bold-FD.ttf │ │ │ ├── Vazir-Bold-FD.woff │ │ │ ├── Vazir-Bold-FD.woff2 │ │ │ ├── Vazir-FD.eot │ │ │ ├── Vazir-FD.ttf │ │ │ ├── Vazir-FD.woff │ │ │ ├── Vazir-FD.woff2 │ │ │ ├── Vazir-Light-FD.eot │ │ │ ├── Vazir-Light-FD.ttf │ │ │ ├── Vazir-Light-FD.woff │ │ │ ├── Vazir-Light-FD.woff2 │ │ │ ├── Vazir-Medium-FD.eot │ │ │ ├── Vazir-Medium-FD.ttf │ │ │ ├── Vazir-Medium-FD.woff │ │ │ ├── Vazir-Medium-FD.woff2 │ │ │ ├── Vazir-Thin-FD.eot │ │ │ ├── Vazir-Thin-FD.ttf │ │ │ ├── Vazir-Thin-FD.woff │ │ │ └── Vazir-Thin-FD.woff2 │ │ │ ├── LICENSE │ │ │ ├── Vazir-Black.eot │ │ │ ├── Vazir-Black.ttf │ │ │ ├── Vazir-Black.woff │ │ │ ├── Vazir-Black.woff2 │ │ │ ├── Vazir-Bold.eot │ │ │ ├── Vazir-Bold.ttf │ │ │ ├── Vazir-Bold.woff │ │ │ ├── Vazir-Bold.woff2 │ │ │ ├── Vazir-Light.eot │ │ │ ├── Vazir-Light.ttf │ │ │ ├── Vazir-Light.woff │ │ │ ├── Vazir-Light.woff2 │ │ │ ├── Vazir-Medium.eot │ │ │ ├── Vazir-Medium.ttf │ │ │ ├── Vazir-Medium.woff │ │ │ ├── Vazir-Medium.woff2 │ │ │ ├── Vazir-Thin.eot │ │ │ ├── Vazir-Thin.ttf │ │ │ ├── Vazir-Thin.woff │ │ │ ├── Vazir-Thin.woff2 │ │ │ ├── Vazir.eot │ │ │ ├── Vazir.ttf │ │ │ ├── Vazir.woff │ │ │ ├── Vazir.woff2 │ │ │ ├── Without-Latin │ │ │ ├── Vazir-Black-WOL.eot │ │ │ ├── Vazir-Black-WOL.ttf │ │ │ ├── Vazir-Black-WOL.woff │ │ │ ├── Vazir-Black-WOL.woff2 │ │ │ ├── Vazir-Bold-WOL.eot │ │ │ ├── Vazir-Bold-WOL.ttf │ │ │ ├── Vazir-Bold-WOL.woff │ │ │ ├── Vazir-Bold-WOL.woff2 │ │ │ ├── Vazir-Light-WOL.eot │ │ │ ├── Vazir-Light-WOL.ttf │ │ │ ├── Vazir-Light-WOL.woff │ │ │ ├── Vazir-Light-WOL.woff2 │ │ │ ├── Vazir-Medium-WOL.eot │ │ │ ├── Vazir-Medium-WOL.ttf │ │ │ ├── Vazir-Medium-WOL.woff │ │ │ ├── Vazir-Medium-WOL.woff2 │ │ │ ├── Vazir-Thin-WOL.eot │ │ │ ├── Vazir-Thin-WOL.ttf │ │ │ ├── Vazir-Thin-WOL.woff │ │ │ ├── Vazir-Thin-WOL.woff2 │ │ │ ├── Vazir-WOL.eot │ │ │ ├── Vazir-WOL.ttf │ │ │ ├── Vazir-WOL.woff │ │ │ └── Vazir-WOL.woff2 │ │ │ ├── font-face.css │ │ │ └── sample.png │ ├── formatimport │ │ ├── sim-kelas.xlsx │ │ ├── sim-pegawai.xlsx │ │ ├── sim-pemasukan.xlsx │ │ ├── sim-pengeluaran.xlsx │ │ ├── sim-siswa.xlsx │ │ ├── sim-tagihanatur.xlsx │ │ ├── sim-tagihansiswa.xlsx │ │ ├── sim-tagihansiswadetail.xlsx │ │ └── sim-tapel.xlsx │ ├── img │ │ ├── avatar │ │ │ ├── avatar-1.png │ │ │ ├── avatar-2.png │ │ │ ├── avatar-3.png │ │ │ ├── avatar-4.png │ │ │ └── avatar-5.png │ │ ├── drawkit │ │ │ ├── drawkit-full-stack-man-colour.svg │ │ │ ├── drawkit-mobile-article-colour.svg │ │ │ ├── drawkit-nature-man-colour.svg │ │ │ └── revenue-graph-colour.svg │ │ ├── example-image-50.jpg │ │ ├── example-image.jpg │ │ ├── kopek │ │ │ ├── github.png │ │ │ └── your-image.jpg │ │ ├── news │ │ │ ├── img01.jpg │ │ │ ├── img02.jpg │ │ │ ├── img03.jpg │ │ │ ├── img04.jpg │ │ │ ├── img05.jpg │ │ │ ├── img06.jpg │ │ │ ├── img07.jpg │ │ │ ├── img08.jpg │ │ │ ├── img09.jpg │ │ │ ├── img10.jpg │ │ │ ├── img11.jpg │ │ │ ├── img12.jpg │ │ │ ├── img13.jpg │ │ │ ├── img14.jpg │ │ │ ├── img15.jpg │ │ │ ├── img16.jpg │ │ │ └── img17.jpg │ │ ├── p-250.png │ │ ├── p-50.png │ │ ├── products │ │ │ ├── product-1-50.png │ │ │ ├── product-1.jpg │ │ │ ├── product-2-50.png │ │ │ ├── product-2.jpg │ │ │ ├── product-3-50.png │ │ │ ├── product-3.jpg │ │ │ ├── product-4-50.png │ │ │ ├── product-4.jpg │ │ │ ├── product-5-50.png │ │ │ └── product-5.jpg │ │ ├── qrcode.png │ │ ├── stisla-fill.svg │ │ ├── stisla-light.svg │ │ ├── stisla-transparent.svg │ │ ├── stisla.svg │ │ └── unsplash │ │ │ ├── andre-benz-1214056-unsplash.jpg │ │ │ ├── eberhard-grossgasteiger-1207565-unsplash.jpg │ │ │ └── login-bg.jpg │ ├── js │ │ ├── custom.js │ │ ├── jquery.uploadPreview.min.js │ │ ├── page │ │ │ ├── auth-register.js │ │ │ ├── bootstrap-modal.js │ │ │ ├── components-chat-box.js │ │ │ ├── components-multiple-upload.js │ │ │ ├── components-statistic.js │ │ │ ├── components-table.js │ │ │ ├── components-user.js │ │ │ ├── features-post-create.js │ │ │ ├── features-posts.js │ │ │ ├── features-setting-detail.js │ │ │ ├── forms-advanced-forms.js │ │ │ ├── gmaps-advanced-route.js │ │ │ ├── gmaps-draggable-marker.js │ │ │ ├── gmaps-geocoding.js │ │ │ ├── gmaps-geolocation.js │ │ │ ├── gmaps-marker.js │ │ │ ├── gmaps-multiple-marker.js │ │ │ ├── gmaps-route.js │ │ │ ├── gmaps-simple.js │ │ │ ├── index-0.js │ │ │ ├── index.js │ │ │ ├── modules-calendar.js │ │ │ ├── modules-chartjs.js │ │ │ ├── modules-datatables.js │ │ │ ├── modules-ion-icons.js │ │ │ ├── modules-slider.js │ │ │ ├── modules-sparkline.js │ │ │ ├── modules-sweetalert.js │ │ │ ├── modules-toastr.js │ │ │ ├── modules-vector-map.js │ │ │ └── utilities-contact.js │ │ ├── scripts.js │ │ └── stisla.js │ ├── landing │ │ ├── dashboard-showcase-dark.ba0c479a.svg │ │ ├── dashboard-showcase.3432ade5.svg │ │ ├── favicon.c4b2bf5a.ico │ │ ├── index.22a6d9f6.css │ │ ├── index.26888def111121.js │ │ └── vendor.153f79af.js │ ├── stisla │ │ ├── chart.min.js │ │ ├── jquery.uploadPreview.min.js │ │ ├── summernote-bs4.css │ │ ├── summernote-bs4.js │ │ ├── summernote-bs4__old.css │ │ └── summernote.min.css │ └── upload │ │ └── logotutwuri.png ├── css │ └── app.css ├── favicon.ico ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── markdown │ ├── policy.md │ └── terms.md └── views │ ├── 404.blade.php │ ├── api │ ├── api-token-manager.blade.php │ └── index.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── login_kopek.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ ├── two-factor-challenge.blade.php │ └── verify-email.blade.php │ ├── components │ ├── button-create.blade.php │ ├── button-delete.blade.php │ ├── button-detail.blade.php │ ├── button-edit.blade.php │ ├── button-reset-pass.blade.php │ ├── form-pelanggaran-tambah.blade.php │ ├── jsdatatable.blade.php │ ├── jsmultidel.blade.php │ └── sweetalertsession.blade.php │ ├── includes │ ├── script.blade.php │ ├── sidebar.blade.php │ ├── sidebar_admin.blade.php │ ├── sidebar_guru.blade.php │ ├── sidebar_siswa.blade.php │ ├── style.blade.php │ └── topbar.blade.php │ ├── landing.blade.php │ ├── layouts │ ├── default.blade.php │ ├── layoutadminv3.blade.php │ ├── layoutguest1.blade.php │ └── luar.blade.php │ ├── navigation-menu.blade.php │ ├── pages │ ├── admin │ │ ├── absensi │ │ │ ├── detail.blade.php │ │ │ ├── detailv2.blade.php │ │ │ └── index.blade.php │ │ ├── banksoal │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── dashboard │ │ │ ├── dashboard_admin.blade.php │ │ │ ├── dashboard_guru.blade.php │ │ │ ├── dashboard_siswa.blade.php │ │ │ └── index.blade.php │ │ ├── generatebanksoal │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ ├── pdfkunci.blade copy.php │ │ │ ├── pdfkunci.blade.php │ │ │ ├── pdfsoal.blade.php │ │ │ ├── templatecetak.blade.php │ │ │ ├── xml.blade copy.php │ │ │ └── xml.blade.php │ │ ├── guru │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── kelas │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── kko │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── kompetensidasar │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── mapel │ │ │ ├── create.blade.php │ │ │ ├── createv2.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── materipokok │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── pelanggaran │ │ │ ├── detail.blade.php │ │ │ └── index.blade.php │ │ ├── pembayaran │ │ │ └── index.blade.php │ │ ├── penilaian │ │ │ ├── index.blade.php │ │ │ └── inputnilai.blade.php │ │ ├── settings │ │ │ ├── index.blade.php │ │ │ ├── passwordujian.blade.php │ │ │ └── resetpassword.blade.php │ │ ├── silabus │ │ │ └── index.blade.php │ │ ├── siswa │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── tagihan │ │ │ ├── create.blade.php │ │ │ ├── createv2.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── tapel │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ └── users │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ ├── guru │ │ ├── absensi │ │ │ ├── detail.blade.php │ │ │ ├── detail_old_2.blade.php │ │ │ ├── detail_old_old.blade.php │ │ │ └── index.blade.php │ │ ├── kelas │ │ │ └── index.blade.php │ │ ├── penilaian │ │ │ └── index.blade.php │ │ └── silabus │ │ │ └── index.blade.php │ └── siswa │ │ └── dataajar │ │ ├── detailpenilaian.blade.php │ │ ├── ekskul │ │ └── index.blade.php │ │ ├── index.blade.php │ │ ├── lihatnilai.blade.php │ │ ├── lihatnilaiyus.blade.php │ │ ├── materi.blade.php │ │ └── materidetail.blade.php │ ├── policy.blade.php │ ├── profile │ ├── delete-user-form.blade.php │ ├── logout-other-browser-sessions-form.blade.php │ ├── show.blade.php │ ├── two-factor-authentication-form.blade.php │ ├── update-password-form.blade.php │ └── update-profile-information-form.blade.php │ ├── stisla-luar.blade.php │ ├── terms.blade.php │ ├── vendor │ └── jetstream │ │ ├── components │ │ ├── action-message.blade.php │ │ ├── action-section.blade.php │ │ ├── application-logo.blade.php │ │ ├── application-mark.blade.php │ │ ├── authentication-card-logo.blade.php │ │ ├── authentication-card.blade.php │ │ ├── banner.blade.php │ │ ├── button.blade.php │ │ ├── checkbox.blade.php │ │ ├── confirmation-modal.blade.php │ │ ├── confirms-password.blade.php │ │ ├── danger-button.blade.php │ │ ├── dialog-modal.blade.php │ │ ├── dropdown-link.blade.php │ │ ├── dropdown.blade.php │ │ ├── form-section.blade.php │ │ ├── input-error.blade.php │ │ ├── input.blade.php │ │ ├── label.blade.php │ │ ├── modal.blade.php │ │ ├── nav-link.blade.php │ │ ├── responsive-nav-link.blade.php │ │ ├── secondary-button.blade.php │ │ ├── section-border.blade.php │ │ ├── section-title.blade.php │ │ ├── switchable-team.blade.php │ │ ├── validation-errors.blade.php │ │ └── welcome.blade.php │ │ └── mail │ │ └── team-invitation.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── laravel-excel │ │ ├── laravel-excel-2TH9UXVrHeiRBrFok8eJZmvw4enPVk2o.xlsx │ │ ├── laravel-excel-4FkWfqXagHCdo7lvB7BwvxKZgem1TqVo.xlsx │ │ ├── laravel-excel-8MvWu4I9p8xsG32rHUgFJshMiKPrRaFz.xlsx │ │ ├── laravel-excel-9N6WaVv41BU4izdAHi5mWHboIG8383hJ.xlsx │ │ ├── laravel-excel-AT5UOsHWfn1JnEWnChhisuNFHLxgfv2r.xlsx │ │ ├── laravel-excel-BAAyWlQwgjMUFJOhh5LSaYnk8K8GfNwX.xlsx │ │ ├── laravel-excel-F6wV7vOJnDXPVkt1W3T2Fb1t0wxQNQti.xlsx │ │ ├── laravel-excel-FvsLYzoKr9Vfr0DC2DFHZwKoQdv90k72.xlsx │ │ ├── laravel-excel-GvuTlFe8E5gSdRlx03lDEvDn8FVa3X2R.xlsx │ │ ├── laravel-excel-MbvUQTVY9a1MvqU00lJUXhsippOtG4bF.xlsx │ │ ├── laravel-excel-Mh3Rn5woXVCRmI4rTzlfanjQRQyecM2P.xlsx │ │ ├── laravel-excel-NPy21JxwSrwxZkTbSZqkFzdDMlFQiJAZ.xlsx │ │ ├── laravel-excel-PjLOdbFmWXBxX8VGX3IhMOuSsmSPGB7n.xlsx │ │ ├── laravel-excel-S72cyTFps6Wz7kDrcmEBw75qslz3larU.xlsx │ │ ├── laravel-excel-T3L6Y8xDjOdO9Hjzk1vM37vRCUKRsHUK.xlsx │ │ ├── laravel-excel-U5NSRKUJduHdH6Zevl9hsqH4XVJK2Zj7.xlsx │ │ ├── laravel-excel-UkhXkWlDobzDVAxNiOnATz2FAQHuLZ54.xlsx │ │ ├── laravel-excel-ZvOjBCBejlZzNRYmIrdeZ3iCRbnLtx7y.xlsx │ │ ├── laravel-excel-aonJrAidaxiayQdGAjFENehU5FwGc8n9.xlsx │ │ ├── laravel-excel-dJiERlToxFYQbdxk9tHofCkyKMkLerVO.xlsx │ │ ├── laravel-excel-dYu8vtqdfMe1MhoCWPqZGjlaCOtBoVyB.xlsx │ │ ├── laravel-excel-g1rVE7UGiAUmcJEpmX9T8wjgORZAsRUx.xlsx │ │ ├── laravel-excel-hnU45hjEwBTwLfTWaQv0R7pXqlhO1Ttv.xlsx │ │ ├── laravel-excel-ljyWBeQW6hkwEalnXEfwEiguOotsxTey.xlsx │ │ ├── laravel-excel-mIJ7rugnSFrUWtzx8RuZKMBbF27MT3WB.xlsx │ │ ├── laravel-excel-molwUj1g2NI0avlw7BgA8BcUdmJS5IcH.xlsx │ │ ├── laravel-excel-oWsGF76HRvAS5STbdnRUX1GYamW3IgW1.xlsx │ │ ├── laravel-excel-rpgm1vJJdFza14Z1f5Wfu2S1Gac7FkRw.xlsx │ │ ├── laravel-excel-stvi1BeNCt4SV2czDqJGBkIwhpn1R1PN.xlsx │ │ ├── laravel-excel-tpbb07nYT27d1hfOUrX15Va53tGRRYfb.xlsx │ │ ├── laravel-excel-u9Tgg318NqEvTH9LLuYeqWP1SAwyAVBF.xlsx │ │ ├── laravel-excel-uz2GgbhpXb87Zu929YUWmnYUV96oDWSv.xlsx │ │ ├── laravel-excel-xY70mNNioxHJVHEY0OPuiVZWXuO6SEUS.xlsx │ │ └── laravel-excel-y0u8FVqKkq1tlIPE0P4cxTJM9Zd00qR2.xlsx │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── stubs ├── export.model.stub ├── export.plain.stub ├── export.query-model.stub ├── export.query.stub ├── import.collection.stub └── import.model.stub ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── ApiTokenPermissionsTest.php │ ├── AuthenticationTest.php │ ├── BrowserSessionsTest.php │ ├── CreateApiTokenTest.php │ ├── DeleteAccountTest.php │ ├── DeleteApiTokenTest.php │ ├── EmailVerificationTest.php │ ├── ExampleTest.php │ ├── PasswordConfirmationTest.php │ ├── PasswordResetTest.php │ ├── ProfileInformationTest.php │ ├── RegistrationTest.php │ ├── TwoFactorAuthenticationSettingsTest.php │ └── UpdatePasswordTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock /.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2021,8,2,13,41,21.757 3 | Version=4 4 | 5 | [Settings] 6 | HiddenFilesShown=true 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [docker-compose.yml] 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | APP_NAME=Laravel 2 | APP_ENV=local 3 | APP_KEY= 4 | APP_DEBUG=true 5 | APP_URL=http://localhost 6 | 7 | LOG_CHANNEL=stack 8 | LOG_LEVEL=debug 9 | 10 | DB_CONNECTION=mysql 11 | DB_HOST=127.0.0.1 12 | DB_PORT=3306 13 | DB_DATABASE=laravel 14 | DB_USERNAME=root 15 | DB_PASSWORD= 16 | 17 | BROADCAST_DRIVER=log 18 | CACHE_DRIVER=file 19 | FILESYSTEM_DRIVER=local 20 | QUEUE_CONNECTION=sync 21 | SESSION_DRIVER=database 22 | SESSION_LIFETIME=120 23 | 24 | MEMCACHED_HOST=127.0.0.1 25 | 26 | REDIS_HOST=127.0.0.1 27 | REDIS_PASSWORD=null 28 | REDIS_PORT=6379 29 | 30 | MAIL_MAILER=smtp 31 | MAIL_HOST=mailhog 32 | MAIL_PORT=1025 33 | MAIL_USERNAME=null 34 | MAIL_PASSWORD=null 35 | MAIL_ENCRYPTION=null 36 | MAIL_FROM_ADDRESS=null 37 | MAIL_FROM_NAME="${APP_NAME}" 38 | 39 | AWS_ACCESS_KEY_ID= 40 | AWS_SECRET_ACCESS_KEY= 41 | AWS_DEFAULT_REGION=us-east-1 42 | AWS_BUCKET= 43 | AWS_USE_PATH_STYLE_ENDPOINT=false 44 | 45 | PUSHER_APP_ID= 46 | PUSHER_APP_KEY= 47 | PUSHER_APP_SECRET= 48 | PUSHER_APP_CLUSTER=mt1 49 | 50 | MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" 51 | MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" 52 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /data 3 | /public/hot 4 | /public/materi 5 | /public/file_temp 6 | /public/storage 7 | /public/storage/framework/laravel-excel 8 | /storage/framework/laravel-excel/*.key 9 | /storage/*.key 10 | /vendor 11 | .env 12 | .env.backup 13 | .phpunit.result.cache 14 | docker-compose.override.yml 15 | Homestead.json 16 | Homestead.yaml 17 | npm-debug.log 18 | yarn-error.log 19 | /.idea 20 | /.vscode 21 | /public/assets/banksoal 22 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | disabled: 4 | - no_unused_imports 5 | finder: 6 | not-name: 7 | - index.php 8 | - server.php 9 | js: 10 | finder: 11 | not-name: 12 | - webpack.mix.js 13 | css: true 14 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Othneil Drew 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- 1 | ['required', 'string', 'max:255'], 25 | 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'], 26 | 'password' => $this->passwordRules(), 27 | 'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature() ? ['required', 'accepted'] : '', 28 | ])->validate(); 29 | 30 | return User::create([ 31 | 'name' => $input['name'], 32 | 'email' => $input['email'], 33 | 'password' => Hash::make($input['password']), 34 | ]); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- 1 | $this->passwordRules(), 24 | ])->validate(); 25 | 26 | $user->forceFill([ 27 | 'password' => Hash::make($input['password']), 28 | ])->save(); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Actions/Jetstream/DeleteUser.php: -------------------------------------------------------------------------------- 1 | deleteProfilePhoto(); 18 | $user->tokens->each->delete(); 19 | $user->delete(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- 1 | command('inspire')->hourly(); 28 | } 29 | 30 | /** 31 | * Register the commands for the application. 32 | * 33 | * @return void 34 | */ 35 | protected function commands() 36 | { 37 | $this->load(__DIR__.'/Commands'); 38 | 39 | require base_path('routes/console.php'); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- 1 | reportable(function (Throwable $e) { 38 | // 39 | }); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | true, 22 | 'message' => $message, 23 | 'data' => $result, 24 | ]; 25 | 26 | return response()->json($response,200); 27 | } 28 | 29 | public function checkauth($menu){ 30 | 31 | if(Auth::user()->tipeuser===$menu){ 32 | return 'success'; 33 | }else{ 34 | return '404'; 35 | } 36 | 37 | } 38 | //gunakan return $this->errorResponse('Validation Error',$validator->errors()); 39 | } 40 | -------------------------------------------------------------------------------- /app/Http/Controllers/adminbanksoaljawabancontroller.php: -------------------------------------------------------------------------------- 1 | cleanDirectory(public_path('file_temp')); 14 | 15 | // unlink(public_path('file_temp')); 16 | return redirect()->back()->with('status','File Temp berhasil di Hapus!')->with('tipe','success')->with('icon','fas fa-trash'); 17 | 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Http/Controllers/admintagihandetailcontroller.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | check()) { 26 | return redirect(RouteServiceProvider::HOME); 27 | } 28 | } 29 | 30 | return $next($request); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- 1 | where('nomerinduk',$request->nis)->get(); 19 | // foreach($datausers as $d){ 20 | // $emailku=$d->id; 21 | // } 22 | 23 | return[ 24 | 'Nama kelas'=>$this->kelas != null ? $this->kelas->tingkatan.' '.$this->kelas->jurusan.' '.$this->kelas->suffix : '', 25 | 'nama'=>$this->nama, 26 | 'nomerinduk'=>$this->nomerinduk, 27 | 'moodlepass'=>$this->moodlepass, 28 | ]; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Models/absensi.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\siswa'); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/Models/banksoal.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\dataajar'); 27 | } 28 | public function banksoaljawaban() 29 | { 30 | return $this->hasMany('App\Models\banksoaljawaban')->orderBy('id','asc'); 31 | // return $this->hasMany('App\Models\banksoaljawaban')->orderBy('id','desc'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/Models/banksoaljawaban.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\banksoal'); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/Models/dataajar.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\guru'); 25 | } 26 | public function kelas() 27 | { 28 | return $this->belongsTo('App\Models\kelas'); 29 | } 30 | public function mapel() 31 | { 32 | return $this->belongsTo('App\Models\mapel'); 33 | } 34 | public function banksoal() 35 | { 36 | return $this->hasMany('App\Models\banksoal'); 37 | } 38 | public function kompetensidasar() 39 | { 40 | return $this->hasMany('App\Models\kompetensidasar'); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /app/Models/ekskul.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\guru'); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/Models/ekskuldetail.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\ekskul'); 24 | } 25 | public function siswa() 26 | { 27 | return $this->belongsTo('App\Models\siswa'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Models/generatebanksoal.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\dataajar'); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Models/generatebanksoal_detail.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\banksoal'); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/Models/generatebanksoal_jawaban.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\banksoaljawaban'); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/Models/guru.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\kategori'); 31 | } 32 | public function users() 33 | { 34 | return $this->belongsTo('App\Models\User'); 35 | } 36 | public function dataajar() 37 | { 38 | return $this->belongsTo('App\Models\dataajar'); 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /app/Models/inputnilai.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\siswa'); 26 | } 27 | 28 | public function materipokok() 29 | { 30 | return $this->belongsTo('App\Models\materipokok'); 31 | } 32 | 33 | 34 | } 35 | -------------------------------------------------------------------------------- /app/Models/kelas.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\guru'); 25 | } 26 | public function siswa() 27 | { 28 | return $this->hasMany('App\Models\siswa'); 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /app/Models/kko.php: -------------------------------------------------------------------------------- 1 | hasMany('App\Models\materipokok'); 25 | } 26 | public function dataajar() 27 | { 28 | return $this->belongsTo('App\Models\dataajar'); 29 | } 30 | public function inputnilai(){ 31 | return $this->hasMany('App\Models\inputnilai'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/Models/mapel.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\kompetensidasar'); 24 | } 25 | public function inputnilai() 26 | { 27 | return $this->hasMany('App\Models\inputnilai'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Models/pelanggaran.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\siswa'); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/Models/pembayaran.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\guru'); 25 | // } 26 | } 27 | -------------------------------------------------------------------------------- /app/Models/settings.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\guru'); 30 | // } 31 | } 32 | -------------------------------------------------------------------------------- /app/Models/tagihandetail.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\guru'); 24 | // } 25 | } 26 | -------------------------------------------------------------------------------- /app/Models/tapel.php: -------------------------------------------------------------------------------- 1 | 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any authentication / authorization services. 21 | * 22 | * @return void 23 | */ 24 | public function boot() 25 | { 26 | $this->registerPolicies(); 27 | 28 | // 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 19 | SendEmailVerificationNotification::class, 20 | ], 21 | ]; 22 | 23 | /** 24 | * Register any events for your application. 25 | * 26 | * @return void 27 | */ 28 | public function boot() 29 | { 30 | // 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Providers/FungsiServiceProvider.php: -------------------------------------------------------------------------------- 1 | configurePermissions(); 29 | 30 | Jetstream::deleteUsersUsing(DeleteUser::class); 31 | } 32 | 33 | /** 34 | * Configure the permissions that are available within the application. 35 | * 36 | * @return void 37 | */ 38 | protected function configurePermissions() 39 | { 40 | Jetstream::defaultApiTokenPermissions(['read']); 41 | 42 | Jetstream::permissions([ 43 | 'create', 44 | 'read', 45 | 'update', 46 | 'delete', 47 | ]); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /app/Providers/getsettingsServiceProvider.php: -------------------------------------------------------------------------------- 1 | tipe = $tipe; 20 | $this->message = $message; 21 | $this->icon = $icon; 22 | } 23 | 24 | /** 25 | * Get the view / contents that represent the component. 26 | * 27 | * @return \Illuminate\Contracts\View\View|\Closure|string 28 | */ 29 | public function render() 30 | { 31 | return view('components.alert'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- 1 | link=$link; 18 | } 19 | 20 | /** 21 | * Get the view / contents that represent the component. 22 | * 23 | * @return \Illuminate\Contracts\View\View|\Closure|string 24 | */ 25 | public function render() 26 | { 27 | return view('components.button-create'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/View/Components/ButtonDelete.php: -------------------------------------------------------------------------------- 1 | link=$link; 18 | } 19 | 20 | /** 21 | * Get the view / contents that represent the component. 22 | * 23 | * @return \Illuminate\Contracts\View\View|\Closure|string 24 | */ 25 | public function render() 26 | { 27 | return view('components.button-delete'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/View/Components/ButtonDetail.php: -------------------------------------------------------------------------------- 1 | link=$link; 19 | $this->text=$text; 20 | } 21 | 22 | /** 23 | * Get the view / contents that represent the component. 24 | * 25 | * @return \Illuminate\Contracts\View\View|\Closure|string 26 | */ 27 | public function render() 28 | { 29 | return view('components.button-detail'); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/View/Components/ButtonEdit.php: -------------------------------------------------------------------------------- 1 | link=$link; 18 | } 19 | 20 | /** 21 | * Get the view / contents that represent the component. 22 | * 23 | * @return \Illuminate\Contracts\View\View|\Closure|string 24 | */ 25 | public function render() 26 | { 27 | return view('components.button-edit'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/View/Components/ButtonResetPass.php: -------------------------------------------------------------------------------- 1 | link=$link; 18 | } 19 | 20 | /** 21 | * Get the view / contents that represent the component. 22 | * 23 | * @return \Illuminate\Contracts\View\View|\Closure|string 24 | */ 25 | public function render() 26 | { 27 | return view('components.button-reset-pass'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/View/Components/FormPelanggaranTambah.php: -------------------------------------------------------------------------------- 1 | link=$link; 18 | } 19 | 20 | /** 21 | * Get the view / contents that represent the component. 22 | * 23 | * @return \Illuminate\Contracts\View\View|\Closure|string 24 | */ 25 | public function render() 26 | { 27 | return view('components.jsmultidel'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/View/Components/sweetalertsession.php: -------------------------------------------------------------------------------- 1 | tipe=$tipe; 19 | $this->status=$status; 20 | } 21 | 22 | /** 23 | * Get the view / contents that represent the component. 24 | * 25 | * @return \Illuminate\Contracts\View\View|\Closure|string 26 | */ 27 | public function render() 28 | { 29 | return view('components.sweetalertsession'); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- 1 | ['api/*', 'sanctum/csrf-cookie'], 19 | 20 | 'allowed_methods' => ['*'], 21 | 22 | 'allowed_origins' => ['*'], 23 | 24 | 'allowed_origins_patterns' => [], 25 | 26 | 'allowed_headers' => ['*'], 27 | 28 | 'exposed_headers' => [], 29 | 30 | 'max_age' => 0, 31 | 32 | 'supports_credentials' => false, 33 | 34 | ]; 35 | -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- 1 | [ 18 | 'domain' => env('MAILGUN_DOMAIN'), 19 | 'secret' => env('MAILGUN_SECRET'), 20 | 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), 21 | ], 22 | 23 | 'postmark' => [ 24 | 'token' => env('POSTMARK_TOKEN'), 25 | ], 26 | 27 | 'ses' => [ 28 | 'key' => env('AWS_ACCESS_KEY_ID'), 29 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 30 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- 1 | [ 17 | resource_path('views'), 18 | ], 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Compiled View Path 23 | |-------------------------------------------------------------------------- 24 | | 25 | | This option determines where all the compiled Blade templates will be 26 | | stored for your application. Typically, this is within the storage 27 | | directory. However, as usual, you are free to change this value. 28 | | 29 | */ 30 | 31 | 'compiled' => env( 32 | 'VIEW_COMPILED_PATH', 33 | realpath(storage_path('framework/views')) 34 | ), 35 | 36 | ]; 37 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- 1 | string('email')->index(); 18 | $table->string('token'); 19 | $table->timestamp('created_at')->nullable(); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::dropIfExists('password_resets'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- 1 | text('two_factor_secret') 18 | ->after('password') 19 | ->nullable(); 20 | 21 | $table->text('two_factor_recovery_codes') 22 | ->after('two_factor_secret') 23 | ->nullable(); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::table('users', function (Blueprint $table) { 35 | $table->dropColumn('two_factor_secret', 'two_factor_recovery_codes'); 36 | }); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- 1 | id(); 18 | $table->string('uuid')->unique(); 19 | $table->text('connection'); 20 | $table->text('queue'); 21 | $table->longText('payload'); 22 | $table->longText('exception'); 23 | $table->timestamp('failed_at')->useCurrent(); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::dropIfExists('failed_jobs'); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->morphs('tokenable'); 19 | $table->string('name'); 20 | $table->string('token', 64)->unique(); 21 | $table->text('abilities')->nullable(); 22 | $table->timestamp('last_used_at')->nullable(); 23 | $table->timestamps(); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::dropIfExists('personal_access_tokens'); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /database/migrations/2021_08_04_141828_create_sessions_table.php: -------------------------------------------------------------------------------- 1 | string('id')->primary(); 18 | $table->foreignId('user_id')->nullable()->index(); 19 | $table->string('ip_address', 45)->nullable(); 20 | $table->text('user_agent')->nullable(); 21 | $table->text('payload'); 22 | $table->integer('last_activity')->index(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('sessions'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /database/migrations/2021_10_22_134006_create_tapel_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('nama'); 19 | $table->timestamps(); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::dropIfExists('tapel'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2021_10_22_134200_create_kelas_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('tingkatan'); 19 | $table->string('jurusan'); 20 | $table->string('suffix')->nullable(); 21 | $table->string('guru_id')->nullable(); 22 | $table->timestamps(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('kelas'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /database/migrations/2021_10_22_134247_create_mapel_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('nama'); 19 | $table->string('tipe')->nullable(); 20 | $table->string('kkm')->nullable(); 21 | $table->string('tingkatan')->nullable(); 22 | $table->string('jurusan')->nullable(); 23 | $table->string('semester')->nullable(); 24 | $table->string('tapel_id')->nullable(); 25 | $table->softDeletes(); 26 | $table->timestamps(); 27 | }); 28 | } 29 | 30 | /** 31 | * Reverse the migrations. 32 | * 33 | * @return void 34 | */ 35 | public function down() 36 | { 37 | Schema::dropIfExists('mapel'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /database/migrations/2021_10_22_135841_create_kko_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('nama'); 19 | $table->string('tipe'); 20 | $table->string('keterangan')->nullable(); 21 | $table->softDeletes(); 22 | $table->timestamps(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('kko'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /database/migrations/2021_10_22_164651_create_kategori_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('nama')->nullable(); 19 | $table->string('prefix')->nullable(); 20 | $table->string('kode')->nullable(); 21 | $table->string('catatan')->nullable(); 22 | $table->timestamps(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('kategori'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /database/migrations/2021_10_22_200611_create_kompetensidasar_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->longText('nama')->nullable(); 19 | $table->string('kode')->nullable(); 20 | $table->string('tipe')->nullable(); 21 | $table->string('dataajar_id')->nullable(); 22 | $table->softDeletes(); 23 | $table->timestamps(); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::dropIfExists('kompetensidasar'); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /database/migrations/2021_10_22_201317_create_dataajar_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('nama')->nullable(); 19 | $table->string('kelas_id')->nullable(); 20 | $table->string('guru_id')->nullable(); 21 | $table->string('mapel_id')->nullable(); 22 | $table->softDeletes(); 23 | $table->timestamps(); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::dropIfExists('dataajar'); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /database/migrations/2021_10_22_201331_create_materipokok_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->longText('nama')->nullable(); 19 | $table->longText('link')->nullable(); 20 | $table->string('kompetensidasar_id')->nullable(); 21 | $table->softDeletes(); 22 | $table->timestamps(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('materipokok'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /database/migrations/2021_10_23_001140_create_banksoal_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->longText('pertanyaan')->nullable(); 19 | $table->string('nilai')->nullable(); 20 | $table->string('tingkatkesulitan')->nullable(); 21 | $table->string('tingkatkesulitanangka')->nullable(); 22 | $table->longText('gambar')->nullable(); 23 | $table->string('kategorisoal_nama')->nullable(); 24 | $table->string('dataajar_id')->nullable(); 25 | $table->softDeletes(); 26 | $table->timestamps(); 27 | }); 28 | } 29 | 30 | /** 31 | * Reverse the migrations. 32 | * 33 | * @return void 34 | */ 35 | public function down() 36 | { 37 | Schema::dropIfExists('banksoal'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /database/migrations/2021_10_23_001210_create_banksoaljawaban_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->longText('jawaban')->nullable(); 19 | $table->string('nilai')->nullable(); 20 | $table->string('gambar')->nullable(); 21 | $table->string('hasil')->nullable(); 22 | $table->string('banksoal_id')->nullable(); 23 | $table->softDeletes(); 24 | $table->timestamps(); 25 | }); 26 | } 27 | 28 | /** 29 | * Reverse the migrations. 30 | * 31 | * @return void 32 | */ 33 | public function down() 34 | { 35 | Schema::dropIfExists('banksoaljawaban'); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /database/migrations/2021_10_23_152535_add_kategorisoal_nama_on_banksoal_table.php: -------------------------------------------------------------------------------- 1 | string('kategorisoal_nama')->nullable(); 18 | // }); 19 | } 20 | 21 | /** 22 | * Reverse the migrations. 23 | * 24 | * @return void 25 | */ 26 | public function down() 27 | { 28 | // 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /database/migrations/2021_10_24_100118_create_inputnilai_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('nilai')->nullable(); 19 | $table->string('status')->nullable(); 20 | $table->string('siswa_id')->nullable(); 21 | $table->string('materipokok_id')->nullable(); 22 | $table->softDeletes(); 23 | $table->timestamps(); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::dropIfExists('inputnilai'); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /database/migrations/2021_10_24_123919_create_absensi_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('nilai')->nullable(); 19 | $table->string('ket')->nullable(); 20 | $table->string('tgl')->nullable(); 21 | $table->string('siswa_id')->nullable(); 22 | $table->softDeletes(); 23 | $table->timestamps(); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::dropIfExists('absensi'); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /database/migrations/2021_10_24_124109_create_pelanggaran_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('nama')->nullable(); 19 | $table->string('ket')->nullable(); 20 | $table->string('skor')->nullable(); 21 | $table->string('tgl')->nullable(); 22 | $table->string('siswa_id')->nullable(); 23 | $table->softDeletes(); 24 | $table->timestamps(); 25 | }); 26 | } 27 | 28 | /** 29 | * Reverse the migrations. 30 | * 31 | * @return void 32 | */ 33 | public function down() 34 | { 35 | Schema::dropIfExists('pelanggaran'); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /database/migrations/2021_10_25_154702_create_generatebanksoal_detail_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('banksoal_id')->nullable(); 19 | $table->string('generatebanksoal_id')->nullable(); 20 | $table->softDeletes(); 21 | $table->timestamps(); 22 | }); 23 | } 24 | 25 | /** 26 | * Reverse the migrations. 27 | * 28 | * @return void 29 | */ 30 | public function down() 31 | { 32 | Schema::dropIfExists('generatebanksoal_detail'); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /database/migrations/2021_10_25_154929_create_generatebanksoal_jawaban_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('banksoaljawaban_id')->nullable(); 19 | $table->string('pilihan')->nullable(); 20 | $table->string('benarsalah')->nullable(); //if lebih dari 0 == benar 21 | $table->string('generatebanksoal_detail_id')->nullable(); 22 | $table->string('generatebanksoal_id')->nullable(); 23 | $table->softDeletes(); 24 | $table->timestamps(); 25 | }); 26 | } 27 | 28 | /** 29 | * Reverse the migrations. 30 | * 31 | * @return void 32 | */ 33 | public function down() 34 | { 35 | Schema::dropIfExists('generatebanksoal_jawaban'); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /database/migrations/2021_11_11_214323_create_ekskul_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('nama')->nullable(); 19 | $table->string('singkatan')->nullable(); 20 | $table->string('guru_id')->nullable(); //guru penanggung jawab 21 | $table->softDeletes(); 22 | $table->timestamps(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('ekskull'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /database/migrations/2021_11_11_214738_create_ekskuldetail_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('siswa_id')->nullable(); 19 | $table->string('nilai')->nullable(); 20 | $table->string('ekskul_id')->nullable(); 21 | $table->softDeletes(); 22 | $table->timestamps(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('ekskulldetail'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /database/migrations/2021_11_11_214948_create_tagihandetail_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('nama')->nullable(); 19 | $table->string('kelas_id')->nullable(); 20 | $table->string('tagihan_id')->nullable(); 21 | $table->softDeletes(); 22 | $table->timestamps(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('tagihandetail'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /database/migrations/2021_11_11_215010_create_pembayaran_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('siswa_id')->nullable(); 19 | $table->string('nominal')->nullable(); 20 | $table->string('tglbayar')->nullable(); 21 | $table->string('nomerinduk')->nullable(); //penginput 22 | $table->string('tagihandetail_id')->nullable(); 23 | $table->softDeletes(); 24 | $table->timestamps(); 25 | }); 26 | } 27 | 28 | /** 29 | * Reverse the migrations. 30 | * 31 | * @return void 32 | */ 33 | public function down() 34 | { 35 | Schema::dropIfExists('pembayaran'); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | create(); 20 | $this->call(oneseeder::class); 21 | 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /database/seeders/dataseeder.php: -------------------------------------------------------------------------------- 1 | call(oneseeder::class); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /images/beranda1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/images/beranda1.png -------------------------------------------------------------------------------- /images/class_diagram1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/images/class_diagram1.png -------------------------------------------------------------------------------- /images/class_diagram221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/images/class_diagram221.png -------------------------------------------------------------------------------- /images/dashboaradmin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/images/dashboaradmin1.png -------------------------------------------------------------------------------- /images/dashboardlm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/images/dashboardlm.png -------------------------------------------------------------------------------- /images/dashboardlm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/images/dashboardlm2.png -------------------------------------------------------------------------------- /images/dashboardlm3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/images/dashboardlm3.png -------------------------------------------------------------------------------- /images/dashboardluar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/images/dashboardluar.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/images/logo.png -------------------------------------------------------------------------------- /images/menu1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/images/menu1.PNG -------------------------------------------------------------------------------- /images/pelanggan1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/images/pelanggan1.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/images/screenshot.png -------------------------------------------------------------------------------- /images/tagihan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/images/tagihan.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "npm run development", 5 | "development": "mix", 6 | "watch": "mix watch", 7 | "watch-poll": "mix watch -- --watch-options-poll=1000", 8 | "hot": "mix watch --hot", 9 | "prod": "npm run production", 10 | "production": "mix --production" 11 | }, 12 | "devDependencies": { 13 | "@tailwindcss/forms": "^0.3.1", 14 | "@tailwindcss/typography": "^0.4.0", 15 | "alpinejs": "^3.0.6", 16 | "axios": "^0.21", 17 | "laravel-mix": "^6.0.6", 18 | "lodash": "^4.17.19", 19 | "postcss": "^8.1.14", 20 | "postcss-import": "^14.0.1", 21 | "tailwindcss": "^2.2.2" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Send Requests To Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /public/assets/css/custom.css: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * You can write your CSS code here, DO NOT touch the default JavaScript file 4 | * because it will make it harder for you to update. 5 | * 6 | */ 7 | 8 | /*# sourceMappingURL=custom.css.map */ 9 | -------------------------------------------------------------------------------- /public/assets/css/custom.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sourceRoot":"","sources":["../../sources/scss/custom.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA;AAAA","file":"custom.css"} -------------------------------------------------------------------------------- /public/assets/css/skins/reverse.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sourceRoot":"","sources":["../../../sources/scss/skins/reverse.scss"],"names":[],"mappings":"AAMM;EACE;;AAKI;EACE;EACA;EACA;;AAMA;AAAA;EACE;EACA;;AACA;AAAA;EACI;EACA;;AAIJ;AAAA;EACE;EACA;;AAShB;EACE;;AAEE;EACE;;AAKA;EACE;;AACA;EACE;;AAIF;AAAA;AAAA;AAAA;EAIE;;AAGJ;EACE;;AAIE;EACE;;AACA;EACE;EACA;;AAIF;EACE;;AASd;AAAA;EAEE;;AACA;AAAA;AAAA;AAAA;EAEE;;AACA;AAAA;AAAA;AAAA;EACE;;AAKF;AAAA;AAAA;AAAA;EAEE","file":"reverse.css"} -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-600.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-600.eot -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-600.ttf -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-600.woff -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-600.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-700.eot -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-700.ttf -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-700.woff -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-700.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-800.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-800.eot -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-800.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-800.ttf -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-800.woff -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-800.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-regular.eot -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-regular.ttf -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-regular.woff -------------------------------------------------------------------------------- /public/assets/fonts/nunito-v9-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/nunito-v9-latin-regular.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Black-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Black-FD.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Black-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Black-FD.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Black-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Black-FD.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Black-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Black-FD.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-FD.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-FD.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-FD.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-FD.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Light-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Light-FD.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Light-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Light-FD.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Light-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Light-FD.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Light-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Light-FD.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Black.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Black.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Black.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Black.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Bold.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Bold.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Bold.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Bold.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Light.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Light.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Light.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Light.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Medium.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Medium.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Medium.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Medium.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Thin.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Thin.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Thin.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir-Thin.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Vazir.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Vazir.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Black-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Black-WOL.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Black-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Black-WOL.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Black-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Black-WOL.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Black-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Black-WOL.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Bold-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Bold-WOL.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Bold-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Bold-WOL.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Bold-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Bold-WOL.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Bold-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Bold-WOL.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Light-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Light-WOL.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Light-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Light-WOL.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Light-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Light-WOL.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Light-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Light-WOL.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Medium-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Medium-WOL.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Medium-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Medium-WOL.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Medium-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Medium-WOL.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Medium-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Medium-WOL.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Thin-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Thin-WOL.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Thin-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Thin-WOL.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Thin-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Thin-WOL.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-Thin-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-Thin-WOL.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-WOL.eot -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-WOL.ttf -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-WOL.woff -------------------------------------------------------------------------------- /public/assets/fonts/vazir/Without-Latin/Vazir-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/Without-Latin/Vazir-WOL.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/vazir/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/fonts/vazir/sample.png -------------------------------------------------------------------------------- /public/assets/formatimport/sim-kelas.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/formatimport/sim-kelas.xlsx -------------------------------------------------------------------------------- /public/assets/formatimport/sim-pegawai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/formatimport/sim-pegawai.xlsx -------------------------------------------------------------------------------- /public/assets/formatimport/sim-pemasukan.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/formatimport/sim-pemasukan.xlsx -------------------------------------------------------------------------------- /public/assets/formatimport/sim-pengeluaran.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/formatimport/sim-pengeluaran.xlsx -------------------------------------------------------------------------------- /public/assets/formatimport/sim-siswa.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/formatimport/sim-siswa.xlsx -------------------------------------------------------------------------------- /public/assets/formatimport/sim-tagihanatur.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/formatimport/sim-tagihanatur.xlsx -------------------------------------------------------------------------------- /public/assets/formatimport/sim-tagihansiswa.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/formatimport/sim-tagihansiswa.xlsx -------------------------------------------------------------------------------- /public/assets/formatimport/sim-tagihansiswadetail.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/formatimport/sim-tagihansiswadetail.xlsx -------------------------------------------------------------------------------- /public/assets/formatimport/sim-tapel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/formatimport/sim-tapel.xlsx -------------------------------------------------------------------------------- /public/assets/img/avatar/avatar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/avatar/avatar-1.png -------------------------------------------------------------------------------- /public/assets/img/avatar/avatar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/avatar/avatar-2.png -------------------------------------------------------------------------------- /public/assets/img/avatar/avatar-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/avatar/avatar-3.png -------------------------------------------------------------------------------- /public/assets/img/avatar/avatar-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/avatar/avatar-4.png -------------------------------------------------------------------------------- /public/assets/img/avatar/avatar-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/avatar/avatar-5.png -------------------------------------------------------------------------------- /public/assets/img/example-image-50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/example-image-50.jpg -------------------------------------------------------------------------------- /public/assets/img/example-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/example-image.jpg -------------------------------------------------------------------------------- /public/assets/img/kopek/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/kopek/github.png -------------------------------------------------------------------------------- /public/assets/img/kopek/your-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/kopek/your-image.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img01.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img02.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img03.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img04.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img05.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img06.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img07.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img08.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img09.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img10.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img11.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img12.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img13.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img14.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img15.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img16.jpg -------------------------------------------------------------------------------- /public/assets/img/news/img17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/news/img17.jpg -------------------------------------------------------------------------------- /public/assets/img/p-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/p-250.png -------------------------------------------------------------------------------- /public/assets/img/p-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/p-50.png -------------------------------------------------------------------------------- /public/assets/img/products/product-1-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/products/product-1-50.png -------------------------------------------------------------------------------- /public/assets/img/products/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/products/product-1.jpg -------------------------------------------------------------------------------- /public/assets/img/products/product-2-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/products/product-2-50.png -------------------------------------------------------------------------------- /public/assets/img/products/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/products/product-2.jpg -------------------------------------------------------------------------------- /public/assets/img/products/product-3-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/products/product-3-50.png -------------------------------------------------------------------------------- /public/assets/img/products/product-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/products/product-3.jpg -------------------------------------------------------------------------------- /public/assets/img/products/product-4-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/products/product-4-50.png -------------------------------------------------------------------------------- /public/assets/img/products/product-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/products/product-4.jpg -------------------------------------------------------------------------------- /public/assets/img/products/product-5-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/products/product-5-50.png -------------------------------------------------------------------------------- /public/assets/img/products/product-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/products/product-5.jpg -------------------------------------------------------------------------------- /public/assets/img/stisla-fill.svg: -------------------------------------------------------------------------------- 1 | stisla-fill -------------------------------------------------------------------------------- /public/assets/img/stisla-light.svg: -------------------------------------------------------------------------------- 1 | stisla-light -------------------------------------------------------------------------------- /public/assets/img/stisla-transparent.svg: -------------------------------------------------------------------------------- 1 | stisla-transparent -------------------------------------------------------------------------------- /public/assets/img/stisla.svg: -------------------------------------------------------------------------------- 1 | stisla -------------------------------------------------------------------------------- /public/assets/img/unsplash/andre-benz-1214056-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/unsplash/andre-benz-1214056-unsplash.jpg -------------------------------------------------------------------------------- /public/assets/img/unsplash/eberhard-grossgasteiger-1207565-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/unsplash/eberhard-grossgasteiger-1207565-unsplash.jpg -------------------------------------------------------------------------------- /public/assets/img/unsplash/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/img/unsplash/login-bg.jpg -------------------------------------------------------------------------------- /public/assets/js/custom.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * You can write your JS code here, DO NOT touch the default style file 4 | * because it will make it harder for you to update. 5 | * 6 | */ 7 | 8 | "use strict"; 9 | -------------------------------------------------------------------------------- /public/assets/js/page/auth-register.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | $(".pwstrength").pwstrength(); -------------------------------------------------------------------------------- /public/assets/js/page/components-table.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | $("[data-checkboxes]").each(function() { 4 | var me = $(this), 5 | group = me.data('checkboxes'), 6 | role = me.data('checkbox-role'); 7 | 8 | me.change(function() { 9 | var all = $('[data-checkboxes="' + group + '"]:not([data-checkbox-role="dad"])'), 10 | checked = $('[data-checkboxes="' + group + '"]:not([data-checkbox-role="dad"]):checked'), 11 | dad = $('[data-checkboxes="' + group + '"][data-checkbox-role="dad"]'), 12 | total = all.length, 13 | checked_length = checked.length; 14 | 15 | if(role == 'dad') { 16 | if(me.is(':checked')) { 17 | all.prop('checked', true); 18 | }else{ 19 | all.prop('checked', false); 20 | } 21 | }else{ 22 | if(checked_length >= total) { 23 | dad.prop('checked', true); 24 | }else{ 25 | dad.prop('checked', false); 26 | } 27 | } 28 | }); 29 | }); 30 | 31 | $("#sortable-table tbody").sortable({ 32 | handle: '.sort-handler' 33 | }); 34 | -------------------------------------------------------------------------------- /public/assets/js/page/components-user.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | $("#users-carousel").owlCarousel({ 4 | items: 4, 5 | margin: 20, 6 | autoplay: true, 7 | autoplayTimeout: 5000, 8 | loop: true, 9 | responsive: { 10 | 0: { 11 | items: 2 12 | }, 13 | 578: { 14 | items: 4 15 | }, 16 | 768: { 17 | items: 4 18 | } 19 | } 20 | }); 21 | -------------------------------------------------------------------------------- /public/assets/js/page/features-post-create.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | $("select").selectric(); 4 | $.uploadPreview({ 5 | input_field: "#image-upload", // Default: .image-upload 6 | preview_box: "#image-preview", // Default: .image-preview 7 | label_field: "#image-label", // Default: .image-label 8 | label_default: "Choose File", // Default: Choose File 9 | label_selected: "Change File", // Default: Change File 10 | no_label: false, // Default: false 11 | success_callback: null // Default: null 12 | }); 13 | $(".inputtags").tagsinput('items'); 14 | -------------------------------------------------------------------------------- /public/assets/js/page/features-posts.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | $("[data-checkboxes]").each(function() { 4 | var me = $(this), 5 | group = me.data('checkboxes'), 6 | role = me.data('checkbox-role'); 7 | 8 | me.change(function() { 9 | var all = $('[data-checkboxes="' + group + '"]:not([data-checkbox-role="dad"])'), 10 | checked = $('[data-checkboxes="' + group + '"]:not([data-checkbox-role="dad"]):checked'), 11 | dad = $('[data-checkboxes="' + group + '"][data-checkbox-role="dad"]'), 12 | total = all.length, 13 | checked_length = checked.length; 14 | 15 | if(role == 'dad') { 16 | if(me.is(':checked')) { 17 | all.prop('checked', true); 18 | }else{ 19 | all.prop('checked', false); 20 | } 21 | }else{ 22 | if(checked_length >= total) { 23 | dad.prop('checked', true); 24 | }else{ 25 | dad.prop('checked', false); 26 | } 27 | } 28 | }); 29 | }); 30 | -------------------------------------------------------------------------------- /public/assets/js/page/features-setting-detail.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | $("#setting-form").submit(function() { 4 | let save_button = $(this).find('#save-btn'), 5 | output_status = $("#output-status"), 6 | card = $('#settings-card'); 7 | 8 | let card_progress = $.cardProgress(card, { 9 | spinner: false 10 | }); 11 | save_button.addClass('btn-progress'); 12 | output_status.html(''); 13 | 14 | // Do AJAX here 15 | // Here's fake AJAX 16 | setTimeout(function() { 17 | card_progress.dismiss(function() { 18 | $('html, body').animate({ 19 | scrollTop: 0 20 | }); 21 | 22 | output_status.prepend('
Setting saved Successfully.
') 23 | save_button.removeClass('btn-progress'); 24 | }); 25 | }, 3000); 26 | return false; 27 | }); -------------------------------------------------------------------------------- /public/assets/js/page/gmaps-advanced-route.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | // initialize map 4 | var map = new GMaps({ 5 | div: '#map', 6 | lat: -6.5637928, 7 | lng: 106.7535061 8 | }); 9 | 10 | // when the 'start travel' button is clicked 11 | $("#start-travel").click(function() { 12 | $(this).fadeOut(); 13 | $("#instructions").before("
Instructions
"); 14 | map.travelRoute({ 15 | origin: [-6.5637928, 106.7535061], 16 | destination: [-6.5956157, 106.788236], 17 | travelMode: 'driving', 18 | step: function(e) { 19 | $('#instructions').append('
  • '+e.instructions+'
  • '); 20 | $('#instructions li:eq(' + e.step_number + ')').delay(450 * e.step_number).fadeIn(200, function() { 21 | map.setCenter(e.end_location.lat(), e.end_location.lng()); 22 | map.drawPolyline({ 23 | path: e.path, 24 | strokeColor: '#131540', 25 | strokeOpacity: 0.6, 26 | strokeWeight: 6 27 | }); 28 | }); 29 | } 30 | }); 31 | }); 32 | -------------------------------------------------------------------------------- /public/assets/js/page/gmaps-geocoding.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | // initialize map 4 | var map = new GMaps({ 5 | div: '#map', 6 | lat: -6.5637928, 7 | lng: 106.7535061 8 | }); 9 | 10 | // when the form is submitted 11 | $("#search-form").submit(function(e) { 12 | e.preventDefault(); 13 | 14 | // initialize map geocode 15 | GMaps.geocode({ 16 | address: $('#address').val(), 17 | callback: function(results, status) { 18 | if (status == 'OK') { 19 | var latlng = results[0].geometry.location; 20 | map.setCenter(latlng.lat(), latlng.lng()); 21 | map.addMarker({ 22 | lat: latlng.lat(), 23 | lng: latlng.lng() 24 | }); 25 | } 26 | } 27 | }); 28 | }) -------------------------------------------------------------------------------- /public/assets/js/page/gmaps-geolocation.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | // initialize map 4 | var map = new GMaps({ 5 | div: '#map', 6 | lat: -6.5637928, 7 | lng: 106.7535061 8 | }); 9 | // initialize map geolocation 10 | GMaps.geolocate({ 11 | // when geolocation is allowed by user 12 | success: function(position) { 13 | // set center map according to user position 14 | map.setCenter(position.coords.latitude, position.coords.longitude); 15 | // add a marker to the map 16 | map.addMarker({ 17 | lat: position.coords.latitude, 18 | lng: position.coords.longitude, 19 | title: 'You' 20 | }); 21 | }, 22 | // when geolocation is blocked by the user 23 | error: function(error) { 24 | toastr.error('Geolocation failed: '+error.message); 25 | }, 26 | // when the user's browser does not support 27 | not_supported: function() { 28 | toastr.error("Your browser does not support geolocation"); 29 | } 30 | }); 31 | -------------------------------------------------------------------------------- /public/assets/js/page/gmaps-marker.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | // initialize map 4 | var map = new GMaps({ 5 | div: '#map', 6 | lat: -6.5637928, 7 | lng: 106.7535061 8 | }); 9 | // Added a marker to the map 10 | map.addMarker({ 11 | lat: -6.5637928, 12 | lng: 106.7535061, 13 | title: 'Multinity', 14 | infoWindow: { 15 | content: '
    Multinity

    Jl. HM. Syarifudin, Bubulak, Bogor Bar.,
    Kota Bogor, Jawa Barat 16115

    Website

    ' 16 | } 17 | }); 18 | -------------------------------------------------------------------------------- /public/assets/js/page/gmaps-multiple-marker.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | // initialize map 4 | var map = new GMaps({ 5 | div: '#map', 6 | lat: -6.8665409, 7 | lng: 106.4836553, 8 | zoom: 8 9 | }); 10 | // Added markers to the map 11 | map.addMarker({ 12 | lat: -6.5637928, 13 | lng: 106.7535061, 14 | title: 'Multinity', 15 | infoWindow: { 16 | content: '
    Multinity

    Jl. HM. Syarifudin, Bubulak, Bogor Bar.,
    Kota Bogor, Jawa Barat 16115

    Website

    ' 17 | } 18 | }); 19 | map.addMarker({ 20 | lat: -6.1325841, 21 | lng: 106.8116507, 22 | title: 'Procyon Logikreasi Indonesia', 23 | infoWindow: { 24 | content: '
    Procyon Logikreasi Indonesia

    Jl. Kali Besar Tim. No.29C, RT.7/RW.7, Pinangsia, Tamansari, Kota Jakarta Barat, Daerah Khusus Ibukota Jakarta 11110

    Website

    ' 25 | } 26 | }); 27 | map.addMarker({ 28 | lat: -6.4462693, 29 | lng: 106.7654318, 30 | title: 'Sigma ID', 31 | infoWindow: { 32 | content: '
    Sigma ID

    Jl.Setapak No.5, Citayam, Tajur Halang, Bogor, Jawa Barat 16320

    Website

    ' 33 | } 34 | }); 35 | -------------------------------------------------------------------------------- /public/assets/js/page/gmaps-route.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | // initialize map 4 | var map = new GMaps({ 5 | div: '#map', 6 | lat: -6.5637928, 7 | lng: 106.7535061, 8 | zoom: 13 9 | }); 10 | 11 | // draw route between 'origin' to 'destination' 12 | map.drawRoute({ 13 | origin: [-6.5637928, 106.7535061], 14 | destination: [-6.5956157, 106.788236], 15 | travelMode: 'driving', 16 | strokeColor: '#131540', 17 | strokeOpacity: 0.6, 18 | strokeWeight: 6 19 | }); -------------------------------------------------------------------------------- /public/assets/js/page/gmaps-simple.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var simple_map = new GMaps({ 4 | div: '#simple-map', 5 | lat: -6.5637928, 6 | lng: 106.7535061 7 | }) 8 | -------------------------------------------------------------------------------- /public/assets/js/page/modules-datatables.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | $("[data-checkboxes]").each(function() { 4 | var me = $(this), 5 | group = me.data('checkboxes'), 6 | role = me.data('checkbox-role'); 7 | 8 | me.change(function() { 9 | var all = $('[data-checkboxes="' + group + '"]:not([data-checkbox-role="dad"])'), 10 | checked = $('[data-checkboxes="' + group + '"]:not([data-checkbox-role="dad"]):checked'), 11 | dad = $('[data-checkboxes="' + group + '"][data-checkbox-role="dad"]'), 12 | total = all.length, 13 | checked_length = checked.length; 14 | 15 | if(role == 'dad') { 16 | if(me.is(':checked')) { 17 | all.prop('checked', true); 18 | }else{ 19 | all.prop('checked', false); 20 | } 21 | }else{ 22 | if(checked_length >= total) { 23 | dad.prop('checked', true); 24 | }else{ 25 | dad.prop('checked', false); 26 | } 27 | } 28 | }); 29 | }); 30 | 31 | $("#table-1").dataTable({ 32 | "columnDefs": [ 33 | { "sortable": false, "targets": [2,3] } 34 | ] 35 | }); 36 | $("#table-2").dataTable({ 37 | "columnDefs": [ 38 | { "sortable": false, "targets": [0,2,3] } 39 | ] 40 | }); 41 | -------------------------------------------------------------------------------- /public/assets/js/page/modules-ion-icons.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | $("#icons li").each(function() { 4 | $(this).append('
    '+ $(this).attr('class') +'
    '); 5 | }); 6 | $("#icons li").click(function() { 7 | $(".icon-name").fadeOut(); 8 | $(this).find('.icon-name').fadeIn(); 9 | }); 10 | -------------------------------------------------------------------------------- /public/assets/js/page/modules-slider.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | $("#slider1,#slider2").owlCarousel({ 4 | items: 1, 5 | nav: true, 6 | navText: ['',''] 7 | }); 8 | -------------------------------------------------------------------------------- /public/assets/js/page/utilities-contact.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | // initialize map 4 | var map = new GMaps({ 5 | div: '#map', 6 | lat: -6.5637928, 7 | lng: 106.7535061, 8 | zoomControl: false, 9 | fullscreenControl: false, 10 | mapTypeControl: true, 11 | mapTypeControlOptions: { 12 | mapTypeIds: [] 13 | } 14 | }); 15 | // Added a overlay to the map 16 | map.drawOverlay({ 17 | lat: -6.5637928, 18 | lng: 106.7535061, 19 | content: '
    Multinity

    Jl. HM. Syarifudin, Bubulak, Bogor Bar.,
    Kota Bogor, Jawa Barat 16115

    Website

    ' 20 | }); 21 | -------------------------------------------------------------------------------- /public/assets/landing/favicon.c4b2bf5a.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/landing/favicon.c4b2bf5a.ico -------------------------------------------------------------------------------- /public/assets/upload/logotutwuri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/assets/upload/logotutwuri.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/public/favicon.ico -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css" 4 | } 5 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | @import 'tailwindcss/base'; 2 | @import 'tailwindcss/components'; 3 | @import 'tailwindcss/utilities'; 4 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | 3 | import Alpine from 'alpinejs'; 4 | 5 | window.Alpine = Alpine; 6 | 7 | Alpine.start(); 8 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | window._ = require('lodash'); 2 | 3 | /** 4 | * We'll load the axios HTTP library which allows us to easily issue requests 5 | * to our Laravel back-end. This library automatically handles sending the 6 | * CSRF token as a header based on the value of the "XSRF" token cookie. 7 | */ 8 | 9 | window.axios = require('axios'); 10 | 11 | window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; 12 | 13 | /** 14 | * Echo exposes an expressive API for subscribing to channels and listening 15 | * for events that are broadcast by Laravel. Echo and event broadcasting 16 | * allows your team to easily build robust real-time web applications. 17 | */ 18 | 19 | // import Echo from 'laravel-echo'; 20 | 21 | // window.Pusher = require('pusher-js'); 22 | 23 | // window.Echo = new Echo({ 24 | // broadcaster: 'pusher', 25 | // key: process.env.MIX_PUSHER_APP_KEY, 26 | // cluster: process.env.MIX_PUSHER_APP_CLUSTER, 27 | // forceTLS: true 28 | // }); 29 | -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 17 | 'password' => 'The provided password is incorrect.', 18 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- 1 | 'Your password has been reset!', 17 | 'sent' => 'We have emailed your password reset link!', 18 | 'throttled' => 'Please wait before retrying.', 19 | 'token' => 'This password reset token is invalid.', 20 | 'user' => "We can't find a user with that email address.", 21 | 22 | ]; 23 | -------------------------------------------------------------------------------- /resources/markdown/policy.md: -------------------------------------------------------------------------------- 1 | # Privacy Policy 2 | 3 | Edit this file to define the privacy policy for your application. 4 | -------------------------------------------------------------------------------- /resources/markdown/terms.md: -------------------------------------------------------------------------------- 1 | # Terms of Service 2 | 3 | Edit this file to define the terms of service for your application. 4 | -------------------------------------------------------------------------------- /resources/views/api/index.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    4 | {{ __('API Tokens') }} 5 |

    6 |
    7 | 8 |
    9 |
    10 | @livewire('api.api-token-manager') 11 |
    12 |
    13 |
    14 | -------------------------------------------------------------------------------- /resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
    8 | {{ __('This is a secure area of the application. Please confirm your password before continuing.') }} 9 |
    10 | 11 | 12 | 13 |
    14 | @csrf 15 | 16 |
    17 | 18 | 19 |
    20 | 21 |
    22 | 23 | {{ __('Confirm') }} 24 | 25 |
    26 |
    27 |
    28 |
    29 | -------------------------------------------------------------------------------- /resources/views/components/button-create.blade.php: -------------------------------------------------------------------------------- 1 | Tambah 3 | -------------------------------------------------------------------------------- /resources/views/components/button-delete.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | @method('delete') 3 | @csrf 4 | 7 |
    -------------------------------------------------------------------------------- /resources/views/components/button-detail.blade.php: -------------------------------------------------------------------------------- 1 | {{$text}} 2 | -------------------------------------------------------------------------------- /resources/views/components/button-edit.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/components/button-reset-pass.blade.php: -------------------------------------------------------------------------------- 1 | {{-- --}} 2 |
    3 | @csrf 4 | 7 |
    -------------------------------------------------------------------------------- /resources/views/components/form-pelanggaran-tambah.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | 3 |
    4 | -------------------------------------------------------------------------------- /resources/views/components/jsdatatable.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | 11 |
    12 | -------------------------------------------------------------------------------- /resources/views/components/sweetalertsession.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | 12 |
    13 | -------------------------------------------------------------------------------- /resources/views/includes/sidebar.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | 30 |
    31 | -------------------------------------------------------------------------------- /resources/views/includes/sidebar_guru.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
  • Dashboard
  • 3 | 4 |
  • Kelas
  • 5 | 6 |
  • KD - Mapel
  • 7 | 8 |
  • Penilaian
  • 9 | 10 |
  • Absensi
  • 11 | 12 |
  • Pelanggaran
  • 13 | -------------------------------------------------------------------------------- /resources/views/includes/topbar.blade.php: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /resources/views/pages/admin/dashboard/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.default') 2 | 3 | @section('title') 4 | Beranda 5 | @endsection 6 | 7 | @push('before-script') 8 | 9 | @if (session('status')) 10 | 11 | @endif 12 | @endpush 13 | 14 | @if((Auth::user()->tipeuser)=='admin') 15 | 16 | @include('pages.admin.dashboard.dashboard_admin') 17 | 18 | @elseif((Auth::user()->tipeuser)=='guru') 19 | 20 | @include('pages.admin.dashboard.dashboard_guru') 21 | 22 | @elseif((Auth::user()->tipeuser)=='siswa') 23 | @include('pages.admin.dashboard.dashboard_siswa') 24 | 25 | @else 26 | @endif 27 | -------------------------------------------------------------------------------- /resources/views/policy.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
    3 |
    4 |
    5 | 6 |
    7 | 8 |
    9 | {!! $policy !!} 10 |
    11 |
    12 |
    13 |
    14 | -------------------------------------------------------------------------------- /resources/views/terms.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
    3 |
    4 |
    5 | 6 |
    7 | 8 |
    9 | {!! $terms !!} 10 |
    11 |
    12 |
    13 |
    14 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/action-message.blade.php: -------------------------------------------------------------------------------- 1 | @props(['on']) 2 | 3 |
    merge(['class' => 'text-sm text-gray-600']) }}> 9 | {{ $slot->isEmpty() ? 'Saved.' : $slot }} 10 |
    11 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/action-section.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | 3 | {{ $title }} 4 | {{ $description }} 5 | 6 | 7 |
    8 |
    9 | {{ $content }} 10 |
    11 |
    12 |
    13 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/application-mark.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/authentication-card-logo.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/authentication-card.blade.php: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | {{ $logo }} 4 |
    5 | 6 |
    7 | {{ $slot }} 8 |
    9 |
    10 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/button.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/checkbox.blade.php: -------------------------------------------------------------------------------- 1 | merge(['class' => 'rounded border-gray-300 text-indigo-600 shadow-sm focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50']) !!}> 2 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/danger-button.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dialog-modal.blade.php: -------------------------------------------------------------------------------- 1 | @props(['id' => null, 'maxWidth' => null]) 2 | 3 | 4 |
    5 |
    6 | {{ $title }} 7 |
    8 | 9 |
    10 | {{ $content }} 11 |
    12 |
    13 | 14 |
    15 | {{ $footer }} 16 |
    17 |
    18 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- 1 | merge(['class' => 'block px-4 py-2 text-sm leading-5 text-gray-700 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 transition']) }}>{{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/form-section.blade.php: -------------------------------------------------------------------------------- 1 | @props(['submit']) 2 | 3 |
    merge(['class' => 'md:grid md:grid-cols-3 md:gap-6']) }}> 4 | 5 | {{ $title }} 6 | {{ $description }} 7 | 8 | 9 |
    10 |
    11 |
    12 |
    13 | {{ $form }} 14 |
    15 |
    16 | 17 | @if (isset($actions)) 18 |
    19 | {{ $actions }} 20 |
    21 | @endif 22 |
    23 |
    24 |
    25 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/input-error.blade.php: -------------------------------------------------------------------------------- 1 | @props(['for']) 2 | 3 | @error($for) 4 |

    merge(['class' => 'text-sm text-red-600']) }}>{{ $message }}

    5 | @enderror 6 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/input.blade.php: -------------------------------------------------------------------------------- 1 | @props(['disabled' => false]) 2 | 3 | merge(['class' => 'border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 rounded-md shadow-sm']) !!}> 4 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/label.blade.php: -------------------------------------------------------------------------------- 1 | @props(['value']) 2 | 3 | 6 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/nav-link.blade.php: -------------------------------------------------------------------------------- 1 | @props(['active']) 2 | 3 | @php 4 | $classes = ($active ?? false) 5 | ? 'inline-flex items-center px-1 pt-1 border-b-2 border-indigo-400 text-sm font-medium leading-5 text-gray-900 focus:outline-none focus:border-indigo-700 transition' 6 | : 'inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-medium leading-5 text-gray-500 hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300 transition'; 7 | @endphp 8 | 9 | merge(['class' => $classes]) }}> 10 | {{ $slot }} 11 | 12 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- 1 | @props(['active']) 2 | 3 | @php 4 | $classes = ($active ?? false) 5 | ? 'block pl-3 pr-4 py-2 border-l-4 border-indigo-400 text-base font-medium text-indigo-700 bg-indigo-50 focus:outline-none focus:text-indigo-800 focus:bg-indigo-100 focus:border-indigo-700 transition' 6 | : 'block pl-3 pr-4 py-2 border-l-4 border-transparent text-base font-medium text-gray-600 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 focus:outline-none focus:text-gray-800 focus:bg-gray-50 focus:border-gray-300 transition'; 7 | @endphp 8 | 9 | merge(['class' => $classes]) }}> 10 | {{ $slot }} 11 | 12 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/secondary-button.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/section-border.blade.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/section-title.blade.php: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |

    {{ $title }}

    4 | 5 |

    6 | {{ $description }} 7 |

    8 |
    9 | 10 |
    11 | {{ $aside ?? '' }} 12 |
    13 |
    14 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/switchable-team.blade.php: -------------------------------------------------------------------------------- 1 | @props(['team', 'component' => 'jet-dropdown-link']) 2 | 3 |
    4 | @method('PUT') 5 | @csrf 6 | 7 | 8 | 9 | 10 | 11 |
    12 | @if (Auth::user()->isCurrentTeam($team)) 13 | 14 | @endif 15 | 16 |
    {{ $team->name }}
    17 |
    18 |
    19 |
    20 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/validation-errors.blade.php: -------------------------------------------------------------------------------- 1 | @if ($errors->any()) 2 |
    3 |
    {{ __('Whoops! Something went wrong.') }}
    4 | 5 | 10 |
    11 | @endif 12 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/mail/team-invitation.blade.php: -------------------------------------------------------------------------------- 1 | @component('mail::message') 2 | {{ __('You have been invited to join the :team team!', ['team' => $invitation->team->name]) }} 3 | 4 | @if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::registration())) 5 | {{ __('If you do not have an account, you may create one by clicking the button below. After creating an account, you may click the invitation acceptance button in this email to accept the team invitation:') }} 6 | 7 | @component('mail::button', ['url' => route('register')]) 8 | {{ __('Create Account') }} 9 | @endcomponent 10 | 11 | {{ __('If you already have an account, you may accept this invitation by clicking the button below:') }} 12 | 13 | @else 14 | {{ __('You may accept this invitation by clicking the button below:') }} 15 | @endif 16 | 17 | 18 | @component('mail::button', ['url' => $acceptUrl]) 19 | {{ __('Accept Invitation') }} 20 | @endcomponent 21 | 22 | {{ __('If you did not expect to receive an invitation to this team, you may discard this email.') }} 23 | @endcomponent 24 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 19 | return $request->user(); 20 | }); 21 | 22 | Route::get('admin/inputnilai/mapel/{dataajar}', 'App\Http\Controllers\siakadadmininputnilaicontroller@api_index')->name('api.siakad.inputnilai.mapel'); 23 | Route::get('admin/inputnilai/periksamapel/{siswa_nis}/{kelas_nama}/{pelajaran_nama}/{jenisnilai_nama}/{semester_nama}', 'App\Http\Controllers\siakadadmininputnilaicontroller@api_nilaipelajaran')->name('api.siakad.inputnilai.periksamapel'); 24 | // Route::resource('/post', siakadadmininputnilaicontroller::class); 25 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 18 | }); 19 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 19 | })->purpose('Display an inspiring quote'); 20 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-2TH9UXVrHeiRBrFok8eJZmvw4enPVk2o.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-2TH9UXVrHeiRBrFok8eJZmvw4enPVk2o.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-4FkWfqXagHCdo7lvB7BwvxKZgem1TqVo.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-4FkWfqXagHCdo7lvB7BwvxKZgem1TqVo.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-8MvWu4I9p8xsG32rHUgFJshMiKPrRaFz.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-8MvWu4I9p8xsG32rHUgFJshMiKPrRaFz.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-9N6WaVv41BU4izdAHi5mWHboIG8383hJ.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-9N6WaVv41BU4izdAHi5mWHboIG8383hJ.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-AT5UOsHWfn1JnEWnChhisuNFHLxgfv2r.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-AT5UOsHWfn1JnEWnChhisuNFHLxgfv2r.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-BAAyWlQwgjMUFJOhh5LSaYnk8K8GfNwX.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-BAAyWlQwgjMUFJOhh5LSaYnk8K8GfNwX.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-F6wV7vOJnDXPVkt1W3T2Fb1t0wxQNQti.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-F6wV7vOJnDXPVkt1W3T2Fb1t0wxQNQti.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-FvsLYzoKr9Vfr0DC2DFHZwKoQdv90k72.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-FvsLYzoKr9Vfr0DC2DFHZwKoQdv90k72.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-GvuTlFe8E5gSdRlx03lDEvDn8FVa3X2R.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-GvuTlFe8E5gSdRlx03lDEvDn8FVa3X2R.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-MbvUQTVY9a1MvqU00lJUXhsippOtG4bF.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-MbvUQTVY9a1MvqU00lJUXhsippOtG4bF.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-Mh3Rn5woXVCRmI4rTzlfanjQRQyecM2P.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-Mh3Rn5woXVCRmI4rTzlfanjQRQyecM2P.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-NPy21JxwSrwxZkTbSZqkFzdDMlFQiJAZ.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-NPy21JxwSrwxZkTbSZqkFzdDMlFQiJAZ.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-PjLOdbFmWXBxX8VGX3IhMOuSsmSPGB7n.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-PjLOdbFmWXBxX8VGX3IhMOuSsmSPGB7n.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-S72cyTFps6Wz7kDrcmEBw75qslz3larU.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-S72cyTFps6Wz7kDrcmEBw75qslz3larU.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-T3L6Y8xDjOdO9Hjzk1vM37vRCUKRsHUK.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-T3L6Y8xDjOdO9Hjzk1vM37vRCUKRsHUK.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-U5NSRKUJduHdH6Zevl9hsqH4XVJK2Zj7.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-U5NSRKUJduHdH6Zevl9hsqH4XVJK2Zj7.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-UkhXkWlDobzDVAxNiOnATz2FAQHuLZ54.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-UkhXkWlDobzDVAxNiOnATz2FAQHuLZ54.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-ZvOjBCBejlZzNRYmIrdeZ3iCRbnLtx7y.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-ZvOjBCBejlZzNRYmIrdeZ3iCRbnLtx7y.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-aonJrAidaxiayQdGAjFENehU5FwGc8n9.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-aonJrAidaxiayQdGAjFENehU5FwGc8n9.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-dJiERlToxFYQbdxk9tHofCkyKMkLerVO.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-dJiERlToxFYQbdxk9tHofCkyKMkLerVO.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-dYu8vtqdfMe1MhoCWPqZGjlaCOtBoVyB.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-dYu8vtqdfMe1MhoCWPqZGjlaCOtBoVyB.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-g1rVE7UGiAUmcJEpmX9T8wjgORZAsRUx.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-g1rVE7UGiAUmcJEpmX9T8wjgORZAsRUx.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-hnU45hjEwBTwLfTWaQv0R7pXqlhO1Ttv.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-hnU45hjEwBTwLfTWaQv0R7pXqlhO1Ttv.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-ljyWBeQW6hkwEalnXEfwEiguOotsxTey.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-ljyWBeQW6hkwEalnXEfwEiguOotsxTey.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-mIJ7rugnSFrUWtzx8RuZKMBbF27MT3WB.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-mIJ7rugnSFrUWtzx8RuZKMBbF27MT3WB.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-molwUj1g2NI0avlw7BgA8BcUdmJS5IcH.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-molwUj1g2NI0avlw7BgA8BcUdmJS5IcH.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-oWsGF76HRvAS5STbdnRUX1GYamW3IgW1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-oWsGF76HRvAS5STbdnRUX1GYamW3IgW1.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-rpgm1vJJdFza14Z1f5Wfu2S1Gac7FkRw.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-rpgm1vJJdFza14Z1f5Wfu2S1Gac7FkRw.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-stvi1BeNCt4SV2czDqJGBkIwhpn1R1PN.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-stvi1BeNCt4SV2czDqJGBkIwhpn1R1PN.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-tpbb07nYT27d1hfOUrX15Va53tGRRYfb.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-tpbb07nYT27d1hfOUrX15Va53tGRRYfb.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-u9Tgg318NqEvTH9LLuYeqWP1SAwyAVBF.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-u9Tgg318NqEvTH9LLuYeqWP1SAwyAVBF.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-uz2GgbhpXb87Zu929YUWmnYUV96oDWSv.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-uz2GgbhpXb87Zu929YUWmnYUV96oDWSv.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-xY70mNNioxHJVHEY0OPuiVZWXuO6SEUS.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-xY70mNNioxHJVHEY0OPuiVZWXuO6SEUS.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-y0u8FVqKkq1tlIPE0P4cxTJM9Zd00qR2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godgodwinter/sim-v2/54254ea677fbb55946e342979506abdcfcc8767d/storage/framework/laravel-excel/laravel-excel-y0u8FVqKkq1tlIPE0P4cxTJM9Zd00qR2.xlsx -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /stubs/export.model.stub: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/AuthenticationTest.php: -------------------------------------------------------------------------------- 1 | get('/login'); 17 | 18 | $response->assertStatus(200); 19 | } 20 | 21 | public function test_users_can_authenticate_using_the_login_screen() 22 | { 23 | $user = User::factory()->create(); 24 | 25 | $response = $this->post('/login', [ 26 | 'email' => $user->email, 27 | 'password' => 'password', 28 | ]); 29 | 30 | $this->assertAuthenticated(); 31 | $response->assertRedirect(RouteServiceProvider::HOME); 32 | } 33 | 34 | public function test_users_can_not_authenticate_with_invalid_password() 35 | { 36 | $user = User::factory()->create(); 37 | 38 | $this->post('/login', [ 39 | 'email' => $user->email, 40 | 'password' => 'wrong-password', 41 | ]); 42 | 43 | $this->assertGuest(); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /tests/Feature/BrowserSessionsTest.php: -------------------------------------------------------------------------------- 1 | actingAs($user = User::factory()->create()); 18 | 19 | Livewire::test(LogoutOtherBrowserSessionsForm::class) 20 | ->set('password', 'password') 21 | ->call('logoutOtherBrowserSessions'); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- 1 | const mix = require('laravel-mix'); 2 | 3 | /* 4 | |-------------------------------------------------------------------------- 5 | | Mix Asset Management 6 | |-------------------------------------------------------------------------- 7 | | 8 | | Mix provides a clean, fluent API for defining some Webpack build steps 9 | | for your Laravel applications. By default, we are compiling the CSS 10 | | file for the application as well as bundling up all the JS files. 11 | | 12 | */ 13 | 14 | mix.js('resources/js/app.js', 'public/js') 15 | .postCss('resources/css/app.css', 'public/css', [ 16 | require('postcss-import'), 17 | require('tailwindcss'), 18 | ]); 19 | 20 | if (mix.inProduction()) { 21 | mix.version(); 22 | } 23 | --------------------------------------------------------------------------------