├── .editorconfig ├── .env.example ├── .env.frontend ├── .env.frontend.alpha ├── .env.frontend.app-alpha ├── .env.frontend.app-dev ├── .env.frontend.dev ├── .eslintignore ├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ └── deploy-on-push.yml ├── .gitignore ├── .postcssrc.js ├── .styleci.yml ├── .stylintrc ├── .syncignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── app-icon.png ├── app-splashscreen.png ├── app ├── Console │ └── Kernel.php ├── Enum │ ├── DayEnum.php │ └── StatusEnum.php ├── Events │ └── EnquiryCreated.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── AnnouncementController.php │ │ │ ├── ClassListController.php │ │ │ ├── ClassScheduleController.php │ │ │ ├── InstructorController.php │ │ │ ├── LocationController.php │ │ │ ├── OfferController.php │ │ │ ├── PlanController.php │ │ │ ├── RegistrationController.php │ │ │ ├── TemplateController.php │ │ │ ├── UserController.php │ │ │ └── WeekTemplateController.php │ │ ├── Auth │ │ │ ├── AuthController.php │ │ │ └── ForgotPasswordController.php │ │ ├── Controller.php │ │ ├── Core │ │ │ ├── AdminController.php │ │ │ ├── ApplicationController.php │ │ │ ├── EnquiryController.php │ │ │ ├── FileController.php │ │ │ ├── GroupController.php │ │ │ └── LogController.php │ │ ├── PageController.php │ │ └── Subscription │ │ │ ├── PaymentMethodController.php │ │ │ └── SubscriptionController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── GuardMiddleware.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Listeners │ ├── SendEnquiryConfirmation.php │ └── SendEnquiryNotification.php ├── Models │ ├── Admin.php │ ├── AppSetting.php │ ├── Core │ │ ├── Address.php │ │ ├── Enquiry.php │ │ ├── Enquiry │ │ │ └── Reply.php │ │ ├── File.php │ │ ├── Group.php │ │ ├── Log.php │ │ ├── Module.php │ │ └── Permission.php │ └── User.php ├── Notifications │ ├── EnquiryConfirmation.php │ ├── EnquiryNotification.php │ └── UserLogin.php ├── Policies │ ├── AdminPolicy.php │ ├── AppSettingPolicy.php │ ├── EnquiryPolicy.php │ ├── GroupPolicy.php │ └── UserPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── PermissionsServiceProvider.php │ └── RouteServiceProvider.php ├── Relations │ ├── BelongsToOne.php │ └── MorphToOne.php ├── Services │ └── ResourceRegistrar.php └── Traits │ ├── Addressable.php │ ├── Core.php │ ├── Fileable.php │ ├── HandlesAuthorization.php │ ├── HasBelongsToOne.php │ ├── HasGroup.php │ ├── HasMorphToOne.php │ ├── HasPermission.php │ ├── HasPermissionGroup.php │ ├── Helpers.php │ └── Logable.php ├── artisan ├── babel.config.js ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── change.log.md ├── command ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── dompdf.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── AdminFactory.php │ ├── Core │ │ ├── AddressFactory.php │ │ ├── Enquiry │ │ │ └── ReplyFactory.php │ │ └── EnquiryFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_000001_create_admins_table.php │ ├── 2014_10_12_000001_create_modules_table.php │ ├── 2014_10_12_000002_create_groups_table.php │ ├── 2014_10_12_000003_create_groupables_table.php │ ├── 2014_10_12_000004_create_permissions_table.php │ ├── 2014_10_12_000005_create_permissionables_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2014_10_12_100001_create_admins_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2021_05_26_051127_create_logs_table.php │ ├── 2022_07_23_044529_create_addresses_table.php │ ├── 2022_07_24_073057_create_files_table.php │ ├── 2022_07_24_073421_create_fileables_table.php │ ├── 2022_07_24_092102_create_supper_admin_user.php │ ├── 2022_07_24_095002_create_admin_user.php │ ├── 2022_07_24_095003_add_default_modules.php │ ├── 2022_07_24_095004_add_default_groups.php │ ├── 2022_09_20_135515_create_app_settings_table.php │ ├── 2022_10_14_061554_create_jobs_table.php │ └── 2022_10_14_064920_create_enquiries_table.php └── seeders │ ├── AdminSeeder.php │ ├── DatabaseSeeder.php │ ├── EnquirySeeder.php │ └── UserSeeder.php ├── favicon.png ├── icongenie-icon.json ├── index.html ├── intro.gif ├── jsconfig.json ├── lib └── helpers.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── favicon.ico ├── icons │ ├── favicon-128x128.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon-96x96.png ├── images │ ├── icon-alt.png │ ├── icon.png │ ├── login-bg.jpg │ ├── logo-alt.png │ └── logo.png ├── index.html ├── index.php ├── manifest.json ├── mix-manifest.json ├── robots.txt └── storage ├── quasar.config.js ├── quasar.extensions.json ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ └── app.blade.php ├── routes ├── admin.php ├── api.php ├── channels.php ├── console.php └── web.php ├── src-capacitor ├── android │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── capacitor.build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── getcapacitor │ │ │ │ └── myapp │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ └── capacitor.config.json │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── coderstm │ │ │ │ │ └── qaravelmembers │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable-land-hdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-mdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-xhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-xxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-land-xxxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-hdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-mdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-xhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-xxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-port-xxxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── splash.png │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ ├── config.xml │ │ │ │ └── file_paths.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── getcapacitor │ │ │ └── myapp │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── capacitor.settings.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── variables.gradle ├── capacitor-flag.d.ts ├── capacitor.config.json ├── ios │ ├── .gitignore │ └── App │ │ ├── App.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── App.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Splash.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── splash-2732x2732-1.png │ │ │ │ ├── splash-2732x2732-2.png │ │ │ │ └── splash-2732x2732.png │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── capacitor.config.json │ │ └── config.xml │ │ ├── Podfile │ │ └── Podfile.lock ├── package.json └── yarn.lock ├── src ├── .editorconfig ├── App.vue ├── assets │ └── logo.png ├── boot │ ├── .gitkeep │ ├── app.js │ ├── auth.js │ ├── base-components.js │ ├── font-awesome-pro.js │ ├── log.js │ ├── unsaved-alert.js │ └── v-number.js ├── components │ ├── ClassSelector.vue │ ├── FileCard.vue │ ├── FileEditor.vue │ ├── FileFromSource.vue │ ├── FileSelector.vue │ ├── FileSelectorDialog.vue │ ├── LayoutDrawer.vue │ ├── LayoutHeader.vue │ ├── LinksList.vue │ ├── PdfViewer.vue │ ├── PermissionsModule.vue │ ├── base │ │ ├── BaseAlert.vue │ │ ├── BaseAvatar.vue │ │ ├── BaseBtn.vue │ │ ├── BaseBtnDropdown.vue │ │ ├── BaseCheckbox.vue │ │ ├── BaseCurrentUser.vue │ │ ├── BaseDateInput.vue │ │ ├── BaseDialog.vue │ │ ├── BaseDropzone.vue │ │ ├── BaseEnquiryReplyCard.vue │ │ ├── BaseForm.vue │ │ ├── BaseInfo.vue │ │ ├── BaseInput.vue │ │ ├── BaseItem.vue │ │ ├── BaseLabel.vue │ │ ├── BaseMediaCard.vue │ │ ├── BaseNoteCard.vue │ │ ├── BasePriceInput.vue │ │ ├── BaseSection.vue │ │ ├── BaseSelect.vue │ │ ├── BaseStatic.vue │ │ ├── BaseStatus.vue │ │ ├── BaseTable.vue │ │ ├── BaseThumbnail.vue │ │ ├── BaseTimeInput.vue │ │ ├── BaseTooltip.vue │ │ ├── BaseUser.vue │ │ └── settings │ │ │ └── AppConfigs.vue │ ├── payment-methods │ │ ├── AddPaymentMethod.vue │ │ ├── InvoiceManager.vue │ │ ├── PaymentMethods.vue │ │ ├── SavedCard.vue │ │ ├── StripeCard.vue │ │ ├── StripeCustomCard.vue │ │ └── StripeField.vue │ └── skeleton │ │ ├── SkeletonSinglePage.vue │ │ └── TableSkeleton.vue ├── css │ ├── app.scss │ ├── platform-ios.scss │ ├── quasar.variables.scss │ └── screen--xs.scss ├── layouts │ ├── AdminLayout.vue │ ├── AppLayout.vue │ ├── AuthLayout.vue │ └── PublicLayout.vue ├── pages │ ├── ErrorNotFound.vue │ ├── IndexPage.vue │ ├── MyAccountPage.vue │ ├── SignUpPage.vue │ ├── admins │ │ ├── IndexPage.vue │ │ ├── MyAccountPage.vue │ │ ├── SettingsPage.vue │ │ └── members │ │ │ ├── MemberPage.vue │ │ │ └── MembersPage.vue │ ├── app │ │ └── IndexPage.vue │ ├── core │ │ ├── auth │ │ │ ├── ForgotPasswordPage.vue │ │ │ ├── LoginPage.vue │ │ │ └── ResetPasswordPage.vue │ │ ├── enquiries │ │ │ ├── EnquiriesPage.vue │ │ │ └── EnquiryPage.vue │ │ ├── groups │ │ │ ├── GroupPage.vue │ │ │ └── GroupsPage.vue │ │ └── staffs │ │ │ ├── StaffPage.vue │ │ │ └── StaffsPage.vue │ └── public │ │ ├── ClassScheduleCalendarPage.vue │ │ └── ClassScheduleCalendarPage2.vue ├── router │ ├── admin.js │ ├── app.js │ ├── index.js │ ├── public.js │ └── routes.js ├── services │ ├── api.js │ ├── core.js │ ├── network.js │ └── storage.js └── stores │ ├── app.js │ ├── enquiry.js │ ├── file.js │ ├── group.js │ ├── index.js │ ├── member.js │ ├── note.js │ ├── staff.js │ └── store-flag.d.ts ├── statics ├── favicon.ico ├── icons │ ├── favicon-128x128.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon-96x96.png ├── images │ ├── icon-alt.png │ ├── icon.png │ ├── logo-alt.png │ └── logo.png └── pdfjs │ ├── LICENSE │ ├── build │ ├── pdf.js │ ├── pdf.js.map │ ├── pdf.sandbox.js │ ├── pdf.sandbox.js.map │ ├── pdf.worker.js │ └── pdf.worker.js.map │ └── web │ ├── cmaps │ ├── 78-EUC-H.bcmap │ ├── 78-EUC-V.bcmap │ ├── 78-H.bcmap │ ├── 78-RKSJ-H.bcmap │ ├── 78-RKSJ-V.bcmap │ ├── 78-V.bcmap │ ├── 78ms-RKSJ-H.bcmap │ ├── 78ms-RKSJ-V.bcmap │ ├── 83pv-RKSJ-H.bcmap │ ├── 90ms-RKSJ-H.bcmap │ ├── 90ms-RKSJ-V.bcmap │ ├── 90msp-RKSJ-H.bcmap │ ├── 90msp-RKSJ-V.bcmap │ ├── 90pv-RKSJ-H.bcmap │ ├── 90pv-RKSJ-V.bcmap │ ├── Add-H.bcmap │ ├── Add-RKSJ-H.bcmap │ ├── Add-RKSJ-V.bcmap │ ├── Add-V.bcmap │ ├── Adobe-CNS1-0.bcmap │ ├── Adobe-CNS1-1.bcmap │ ├── Adobe-CNS1-2.bcmap │ ├── Adobe-CNS1-3.bcmap │ ├── Adobe-CNS1-4.bcmap │ ├── Adobe-CNS1-5.bcmap │ ├── Adobe-CNS1-6.bcmap │ ├── Adobe-CNS1-UCS2.bcmap │ ├── Adobe-GB1-0.bcmap │ ├── Adobe-GB1-1.bcmap │ ├── Adobe-GB1-2.bcmap │ ├── Adobe-GB1-3.bcmap │ ├── Adobe-GB1-4.bcmap │ ├── Adobe-GB1-5.bcmap │ ├── Adobe-GB1-UCS2.bcmap │ ├── Adobe-Japan1-0.bcmap │ ├── Adobe-Japan1-1.bcmap │ ├── Adobe-Japan1-2.bcmap │ ├── Adobe-Japan1-3.bcmap │ ├── Adobe-Japan1-4.bcmap │ ├── Adobe-Japan1-5.bcmap │ ├── Adobe-Japan1-6.bcmap │ ├── Adobe-Japan1-UCS2.bcmap │ ├── Adobe-Korea1-0.bcmap │ ├── Adobe-Korea1-1.bcmap │ ├── Adobe-Korea1-2.bcmap │ ├── Adobe-Korea1-UCS2.bcmap │ ├── B5-H.bcmap │ ├── B5-V.bcmap │ ├── B5pc-H.bcmap │ ├── B5pc-V.bcmap │ ├── CNS-EUC-H.bcmap │ ├── CNS-EUC-V.bcmap │ ├── CNS1-H.bcmap │ ├── CNS1-V.bcmap │ ├── CNS2-H.bcmap │ ├── CNS2-V.bcmap │ ├── ETHK-B5-H.bcmap │ ├── ETHK-B5-V.bcmap │ ├── ETen-B5-H.bcmap │ ├── ETen-B5-V.bcmap │ ├── ETenms-B5-H.bcmap │ ├── ETenms-B5-V.bcmap │ ├── EUC-H.bcmap │ ├── EUC-V.bcmap │ ├── Ext-H.bcmap │ ├── Ext-RKSJ-H.bcmap │ ├── Ext-RKSJ-V.bcmap │ ├── Ext-V.bcmap │ ├── GB-EUC-H.bcmap │ ├── GB-EUC-V.bcmap │ ├── GB-H.bcmap │ ├── GB-V.bcmap │ ├── GBK-EUC-H.bcmap │ ├── GBK-EUC-V.bcmap │ ├── GBK2K-H.bcmap │ ├── GBK2K-V.bcmap │ ├── GBKp-EUC-H.bcmap │ ├── GBKp-EUC-V.bcmap │ ├── GBT-EUC-H.bcmap │ ├── GBT-EUC-V.bcmap │ ├── GBT-H.bcmap │ ├── GBT-V.bcmap │ ├── GBTpc-EUC-H.bcmap │ ├── GBTpc-EUC-V.bcmap │ ├── GBpc-EUC-H.bcmap │ ├── GBpc-EUC-V.bcmap │ ├── H.bcmap │ ├── HKdla-B5-H.bcmap │ ├── HKdla-B5-V.bcmap │ ├── HKdlb-B5-H.bcmap │ ├── HKdlb-B5-V.bcmap │ ├── HKgccs-B5-H.bcmap │ ├── HKgccs-B5-V.bcmap │ ├── HKm314-B5-H.bcmap │ ├── HKm314-B5-V.bcmap │ ├── HKm471-B5-H.bcmap │ ├── HKm471-B5-V.bcmap │ ├── HKscs-B5-H.bcmap │ ├── HKscs-B5-V.bcmap │ ├── Hankaku.bcmap │ ├── Hiragana.bcmap │ ├── KSC-EUC-H.bcmap │ ├── KSC-EUC-V.bcmap │ ├── KSC-H.bcmap │ ├── KSC-Johab-H.bcmap │ ├── KSC-Johab-V.bcmap │ ├── KSC-V.bcmap │ ├── KSCms-UHC-H.bcmap │ ├── KSCms-UHC-HW-H.bcmap │ ├── KSCms-UHC-HW-V.bcmap │ ├── KSCms-UHC-V.bcmap │ ├── KSCpc-EUC-H.bcmap │ ├── KSCpc-EUC-V.bcmap │ ├── Katakana.bcmap │ ├── LICENSE │ ├── NWP-H.bcmap │ ├── NWP-V.bcmap │ ├── RKSJ-H.bcmap │ ├── RKSJ-V.bcmap │ ├── Roman.bcmap │ ├── UniCNS-UCS2-H.bcmap │ ├── UniCNS-UCS2-V.bcmap │ ├── UniCNS-UTF16-H.bcmap │ ├── UniCNS-UTF16-V.bcmap │ ├── UniCNS-UTF32-H.bcmap │ ├── UniCNS-UTF32-V.bcmap │ ├── UniCNS-UTF8-H.bcmap │ ├── UniCNS-UTF8-V.bcmap │ ├── UniGB-UCS2-H.bcmap │ ├── UniGB-UCS2-V.bcmap │ ├── UniGB-UTF16-H.bcmap │ ├── UniGB-UTF16-V.bcmap │ ├── UniGB-UTF32-H.bcmap │ ├── UniGB-UTF32-V.bcmap │ ├── UniGB-UTF8-H.bcmap │ ├── UniGB-UTF8-V.bcmap │ ├── UniJIS-UCS2-H.bcmap │ ├── UniJIS-UCS2-HW-H.bcmap │ ├── UniJIS-UCS2-HW-V.bcmap │ ├── UniJIS-UCS2-V.bcmap │ ├── UniJIS-UTF16-H.bcmap │ ├── UniJIS-UTF16-V.bcmap │ ├── UniJIS-UTF32-H.bcmap │ ├── UniJIS-UTF32-V.bcmap │ ├── UniJIS-UTF8-H.bcmap │ ├── UniJIS-UTF8-V.bcmap │ ├── UniJIS2004-UTF16-H.bcmap │ ├── UniJIS2004-UTF16-V.bcmap │ ├── UniJIS2004-UTF32-H.bcmap │ ├── UniJIS2004-UTF32-V.bcmap │ ├── UniJIS2004-UTF8-H.bcmap │ ├── UniJIS2004-UTF8-V.bcmap │ ├── UniJISPro-UCS2-HW-V.bcmap │ ├── UniJISPro-UCS2-V.bcmap │ ├── UniJISPro-UTF8-V.bcmap │ ├── UniJISX0213-UTF32-H.bcmap │ ├── UniJISX0213-UTF32-V.bcmap │ ├── UniJISX02132004-UTF32-H.bcmap │ ├── UniJISX02132004-UTF32-V.bcmap │ ├── UniKS-UCS2-H.bcmap │ ├── UniKS-UCS2-V.bcmap │ ├── UniKS-UTF16-H.bcmap │ ├── UniKS-UTF16-V.bcmap │ ├── UniKS-UTF32-H.bcmap │ ├── UniKS-UTF32-V.bcmap │ ├── UniKS-UTF8-H.bcmap │ ├── UniKS-UTF8-V.bcmap │ ├── V.bcmap │ └── WP-Symbol.bcmap │ ├── compressed.tracemonkey-pldi-09.pdf │ ├── debugger.js │ ├── images │ ├── annotation-check.svg │ ├── annotation-comment.svg │ ├── annotation-help.svg │ ├── annotation-insert.svg │ ├── annotation-key.svg │ ├── annotation-newparagraph.svg │ ├── annotation-noicon.svg │ ├── annotation-note.svg │ ├── annotation-paragraph.svg │ ├── findbarButton-next.svg │ ├── findbarButton-previous.svg │ ├── grab.cur │ ├── grabbing.cur │ ├── loading-dark.svg │ ├── loading-icon.gif │ ├── loading.svg │ ├── secondaryToolbarButton-documentProperties.svg │ ├── secondaryToolbarButton-firstPage.svg │ ├── secondaryToolbarButton-handTool.svg │ ├── secondaryToolbarButton-lastPage.svg │ ├── secondaryToolbarButton-rotateCcw.svg │ ├── secondaryToolbarButton-rotateCw.svg │ ├── secondaryToolbarButton-scrollHorizontal.svg │ ├── secondaryToolbarButton-scrollPage.svg │ ├── secondaryToolbarButton-scrollVertical.svg │ ├── secondaryToolbarButton-scrollWrapped.svg │ ├── secondaryToolbarButton-selectTool.svg │ ├── secondaryToolbarButton-spreadEven.svg │ ├── secondaryToolbarButton-spreadNone.svg │ ├── secondaryToolbarButton-spreadOdd.svg │ ├── shadow.png │ ├── toolbarButton-bookmark.svg │ ├── toolbarButton-currentOutlineItem.svg │ ├── toolbarButton-download.svg │ ├── toolbarButton-menuArrow.svg │ ├── toolbarButton-openFile.svg │ ├── toolbarButton-pageDown.svg │ ├── toolbarButton-pageUp.svg │ ├── toolbarButton-presentationMode.svg │ ├── toolbarButton-print.svg │ ├── toolbarButton-search.svg │ ├── toolbarButton-secondaryToolbarToggle.svg │ ├── toolbarButton-sidebarToggle.svg │ ├── toolbarButton-viewAttachments.svg │ ├── toolbarButton-viewLayers.svg │ ├── toolbarButton-viewOutline.svg │ ├── toolbarButton-viewThumbnail.svg │ ├── toolbarButton-zoomIn.svg │ ├── toolbarButton-zoomOut.svg │ ├── treeitem-collapsed.svg │ └── treeitem-expanded.svg │ ├── locale │ ├── ach │ │ └── viewer.properties │ ├── af │ │ └── viewer.properties │ ├── an │ │ └── viewer.properties │ ├── ar │ │ └── viewer.properties │ ├── ast │ │ └── viewer.properties │ ├── az │ │ └── viewer.properties │ ├── be │ │ └── viewer.properties │ ├── bg │ │ └── viewer.properties │ ├── bn │ │ └── viewer.properties │ ├── bo │ │ └── viewer.properties │ ├── br │ │ └── viewer.properties │ ├── brx │ │ └── viewer.properties │ ├── bs │ │ └── viewer.properties │ ├── ca │ │ └── viewer.properties │ ├── cak │ │ └── viewer.properties │ ├── ckb │ │ └── viewer.properties │ ├── cs │ │ └── viewer.properties │ ├── cy │ │ └── viewer.properties │ ├── da │ │ └── viewer.properties │ ├── de │ │ └── viewer.properties │ ├── dsb │ │ └── viewer.properties │ ├── el │ │ └── viewer.properties │ ├── en-CA │ │ └── viewer.properties │ ├── en-GB │ │ └── viewer.properties │ ├── en-US │ │ └── viewer.properties │ ├── eo │ │ └── viewer.properties │ ├── es-AR │ │ └── viewer.properties │ ├── es-CL │ │ └── viewer.properties │ ├── es-ES │ │ └── viewer.properties │ ├── es-MX │ │ └── viewer.properties │ ├── et │ │ └── viewer.properties │ ├── eu │ │ └── viewer.properties │ ├── fa │ │ └── viewer.properties │ ├── ff │ │ └── viewer.properties │ ├── fi │ │ └── viewer.properties │ ├── fr │ │ └── viewer.properties │ ├── fy-NL │ │ └── viewer.properties │ ├── ga-IE │ │ └── viewer.properties │ ├── gd │ │ └── viewer.properties │ ├── gl │ │ └── viewer.properties │ ├── gn │ │ └── viewer.properties │ ├── gu-IN │ │ └── viewer.properties │ ├── he │ │ └── viewer.properties │ ├── hi-IN │ │ └── viewer.properties │ ├── hr │ │ └── viewer.properties │ ├── hsb │ │ └── viewer.properties │ ├── hu │ │ └── viewer.properties │ ├── hy-AM │ │ └── viewer.properties │ ├── hye │ │ └── viewer.properties │ ├── ia │ │ └── viewer.properties │ ├── id │ │ └── viewer.properties │ ├── is │ │ └── viewer.properties │ ├── it │ │ └── viewer.properties │ ├── ja │ │ └── viewer.properties │ ├── ka │ │ └── viewer.properties │ ├── kab │ │ └── viewer.properties │ ├── kk │ │ └── viewer.properties │ ├── km │ │ └── viewer.properties │ ├── kn │ │ └── viewer.properties │ ├── ko │ │ └── viewer.properties │ ├── lij │ │ └── viewer.properties │ ├── lo │ │ └── viewer.properties │ ├── locale.properties │ ├── lt │ │ └── viewer.properties │ ├── ltg │ │ └── viewer.properties │ ├── lv │ │ └── viewer.properties │ ├── meh │ │ └── viewer.properties │ ├── mk │ │ └── viewer.properties │ ├── mr │ │ └── viewer.properties │ ├── ms │ │ └── viewer.properties │ ├── my │ │ └── viewer.properties │ ├── nb-NO │ │ └── viewer.properties │ ├── ne-NP │ │ └── viewer.properties │ ├── nl │ │ └── viewer.properties │ ├── nn-NO │ │ └── viewer.properties │ ├── oc │ │ └── viewer.properties │ ├── pa-IN │ │ └── viewer.properties │ ├── pl │ │ └── viewer.properties │ ├── pt-BR │ │ └── viewer.properties │ ├── pt-PT │ │ └── viewer.properties │ ├── rm │ │ └── viewer.properties │ ├── ro │ │ └── viewer.properties │ ├── ru │ │ └── viewer.properties │ ├── sat │ │ └── viewer.properties │ ├── sc │ │ └── viewer.properties │ ├── scn │ │ └── viewer.properties │ ├── sco │ │ └── viewer.properties │ ├── si │ │ └── viewer.properties │ ├── sk │ │ └── viewer.properties │ ├── sl │ │ └── viewer.properties │ ├── son │ │ └── viewer.properties │ ├── sq │ │ └── viewer.properties │ ├── sr │ │ └── viewer.properties │ ├── sv-SE │ │ └── viewer.properties │ ├── szl │ │ └── viewer.properties │ ├── ta │ │ └── viewer.properties │ ├── te │ │ └── viewer.properties │ ├── tg │ │ └── viewer.properties │ ├── th │ │ └── viewer.properties │ ├── tl │ │ └── viewer.properties │ ├── tr │ │ └── viewer.properties │ ├── trs │ │ └── viewer.properties │ ├── uk │ │ └── viewer.properties │ ├── ur │ │ └── viewer.properties │ ├── uz │ │ └── viewer.properties │ ├── vi │ │ └── viewer.properties │ ├── wo │ │ └── viewer.properties │ ├── xh │ │ └── viewer.properties │ ├── zh-CN │ │ └── viewer.properties │ └── zh-TW │ │ └── viewer.properties │ ├── standard_fonts │ ├── FoxitDingbats.pfb │ ├── FoxitFixed.pfb │ ├── FoxitFixedBold.pfb │ ├── FoxitFixedBoldItalic.pfb │ ├── FoxitFixedItalic.pfb │ ├── FoxitSans.pfb │ ├── FoxitSansBold.pfb │ ├── FoxitSansBoldItalic.pfb │ ├── FoxitSansItalic.pfb │ ├── FoxitSerif.pfb │ ├── FoxitSerifBold.pfb │ ├── FoxitSerifBoldItalic.pfb │ ├── FoxitSerifItalic.pfb │ ├── FoxitSymbol.pfb │ ├── LICENSE_FOXIT │ ├── LICENSE_LIBERATION │ ├── LiberationSans-Bold.ttf │ ├── LiberationSans-BoldItalic.ttf │ ├── LiberationSans-Italic.ttf │ └── LiberationSans-Regular.ttf │ ├── viewer.css │ ├── viewer.html │ ├── viewer.js │ └── viewer.js.map ├── storage ├── app │ ├── .gitignore │ ├── documents │ │ ├── .gitignore │ │ ├── Covid-19 Compliance Certificate.pdf │ │ ├── Member Login via Member and ProFIT28 assisted route.pdf │ │ ├── Members Induction.pdf │ │ ├── PAR-Q.pdf │ │ ├── Reopening Plan Members.pdf │ │ └── Tier 3 for 28 days from Monday 2nd November.pdf │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock /.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 | [*.{vue,html,js,json}] 18 | indent_size = 2 19 | -------------------------------------------------------------------------------- /.env.frontend: -------------------------------------------------------------------------------- 1 | # This is your .env file 2 | # The data added here will be propagated to the client 3 | # example: 4 | # PORT=9000 5 | APP_ENV=Development 6 | APP_NAME=Qaravel 7 | APP_DEBUG=true 8 | # APP_MODE=app|admin 9 | APP_DOMAIN=qaravel.gomedia 10 | API_URL=https://qaravel.gomedia/api 11 | COOKIE_URL=# 12 | -------------------------------------------------------------------------------- /.env.frontend.alpha: -------------------------------------------------------------------------------- 1 | # This is your .env file 2 | # The data added here will be propagated to the client 3 | # example: 4 | # PORT=9000 5 | APP_ENV=Development 6 | APP_NAME=ProFit28 7 | APP_DEBUG=true 8 | APP_DOMAIN=qaravel.coderstm.com 9 | API_URL=https://api.qaravel.coderstm.com 10 | COOKIE_URL=https://qaravel.coderstm.com/privacy 11 | -------------------------------------------------------------------------------- /.env.frontend.app-alpha: -------------------------------------------------------------------------------- 1 | # This is your .env file 2 | # The data added here will be propagated to the client 3 | # example: 4 | # PORT=9000 5 | APP_ENV=Development 6 | APP_NAME=ProFit28 7 | APP_DEBUG=true 8 | APP_DOMAIN=qaravel.coderstm.com 9 | APP_MODE=app 10 | API_URL=https://api.qaravel.gomedia 11 | COOKIE_URL=https://qaravel.gomedia/privacy 12 | -------------------------------------------------------------------------------- /.env.frontend.app-dev: -------------------------------------------------------------------------------- 1 | # This is your .env file 2 | # The data added here will be propagated to the client 3 | # example: 4 | # PORT=9000 5 | APP_ENV=Development 6 | APP_NAME=ProFit28 7 | APP_DEBUG=true 8 | APP_DOMAIN=qaravel.coderstm.com 9 | APP_MODE=app 10 | API_URL=http://ad62-202-89-67-147.ngrok.io 11 | COOKIE_URL=https://qaravel.gomedia/privacy 12 | -------------------------------------------------------------------------------- /.env.frontend.dev: -------------------------------------------------------------------------------- 1 | # This is your .env file 2 | # The data added here will be propagated to the client 3 | # example: 4 | # PORT=9000 5 | APP_ENV=Development 6 | APP_NAME=ProFit28 7 | APP_DEBUG=true 8 | APP_DOMAIN=qaravel.gomedia 9 | API_URL=https://api.qaravel.gomedia 10 | COOKIE_URL=# 11 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /src-capacitor 3 | /src-cordova 4 | /.quasar 5 | /node_modules 6 | .eslintrc.js 7 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: dipaksarkar # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: dipaksarkar # Replace with a single Open Collective username 6 | ko_fi: dipaksarkar # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 12 | polar: # Replace with a single Polar username 13 | buy_me_a_coffee: # Replace with a single Buy Me a Coffee username 14 | thanks_dev: # Replace with a single thanks.dev username 15 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 16 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .thumbs.db 3 | node_modules 4 | 5 | # Quasar core related directories 6 | .quasar 7 | dist 8 | *.pem 9 | 10 | # Cordova related directories and files 11 | /src-cordova/node_modules 12 | /src-cordova/platforms 13 | /src-cordova/plugins 14 | /src-cordova/www 15 | 16 | # Capacitor related directories and files 17 | /src-capacitor/www 18 | /src-capacitor/node_modules 19 | 20 | # BEX related directories and files 21 | /src-bex/www 22 | /src-bex/js/core 23 | 24 | #laravel folders/files 25 | /storage/*.key 26 | /vendor 27 | /.idea 28 | /.vagrant 29 | Homestead.json 30 | Homestead.yaml 31 | npm-debug.log 32 | yarn-error.log 33 | .env 34 | 35 | # Log files 36 | npm-debug.log* 37 | yarn-debug.log* 38 | yarn-error.log* 39 | 40 | # Editor directories and files 41 | .idea 42 | *.suo 43 | *.ntvs* 44 | *.njsproj 45 | *.sln 46 | *.bak 47 | -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | plugins: [ 5 | // to edit target browsers: use "browserslist" field in package.json 6 | require("autoprefixer"), 7 | ], 8 | }; 9 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | disabled: 4 | - unused_use 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 | -------------------------------------------------------------------------------- /.stylintrc: -------------------------------------------------------------------------------- 1 | { 2 | "blocks": "never", 3 | "brackets": "never", 4 | "colons": "never", 5 | "colors": "always", 6 | "commaSpace": "always", 7 | "commentSpace": "always", 8 | "cssLiteral": "never", 9 | "depthLimit": false, 10 | "duplicates": true, 11 | "efficient": "always", 12 | "extendPref": false, 13 | "globalDupe": true, 14 | "indentPref": 2, 15 | "leadingZero": "never", 16 | "maxErrors": false, 17 | "maxWarnings": false, 18 | "mixed": false, 19 | "namingConvention": false, 20 | "namingConventionStrict": false, 21 | "none": "never", 22 | "noImportant": false, 23 | "parenSpace": "never", 24 | "placeholder": false, 25 | "prefixVarsWithDollar": "always", 26 | "quotePref": "single", 27 | "semicolons": "never", 28 | "sortOrder": false, 29 | "stackedProperties": "never", 30 | "trailingWhitespace": "never", 31 | "universal": "never", 32 | "valid": true, 33 | "zeroUnits": "never", 34 | "zIndexNormalize": false 35 | } 36 | -------------------------------------------------------------------------------- /.syncignore: -------------------------------------------------------------------------------- 1 | bootstrap/cache/* 2 | .env 3 | .env.dev 4 | .idea 5 | .git* 6 | yarn.lock 7 | .vscode 8 | .quasar 9 | .vs 10 | node_modules 11 | storage/* 12 | public/storage 13 | public/.well-known 14 | vendor 15 | tests 16 | src 17 | src-* 18 | dist 19 | *.bak 20 | *.pem 21 | resources/frontend 22 | .DS_Store 23 | old-site 24 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "dbaeumer.vscode-eslint", 4 | "esbenp.prettier-vscode", 5 | "editorconfig.editorconfig", 6 | "vue.volar", 7 | "wayou.vscode-todo-highlight", 8 | "francescopastore.quasar-extension-pack", 9 | "abdelaziz18003.quasar-snippets", 10 | "onecentlin.laravel5-snippets", 11 | "bmewburn.vscode-intelephense-client", 12 | "shufo.vscode-blade-formatter", 13 | "onecentlin.laravel-extension-pack" 14 | ], 15 | "unwantedRecommendations": [ 16 | "octref.vetur", 17 | "hookyqr.beautify", 18 | "dbaeumer.jshint", 19 | "ms-vscode.vscode-typescript-tslint-plugin" 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.bracketPairColorization.enabled": true, 3 | "editor.guides.bracketPairs": true, 4 | "editor.formatOnSave": true, 5 | "editor.defaultFormatter": "esbenp.prettier-vscode", 6 | 7 | "editor.codeActionsOnSave": ["source.fixAll.eslint"], 8 | 9 | "eslint.validate": ["javascript", "javascriptreact", "typescript", "vue"], 10 | 11 | "[blade]": { 12 | "editor.defaultFormatter": "shufo.vscode-blade-formatter", 13 | "editor.formatOnSave": true 14 | }, 15 | 16 | "[php]": { 17 | "editor.defaultFormatter": "bmewburn.vscode-intelephense-client", 18 | "editor.formatOnSave": true 19 | }, 20 | 21 | "[scss]": { 22 | "editor.defaultFormatter": "esbenp.prettier-vscode" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/app-icon.png -------------------------------------------------------------------------------- /app-splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/app-splashscreen.png -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- 1 | command('check:block-user')->everyMinute(); 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/Enum/DayEnum.php: -------------------------------------------------------------------------------- 1 | enquiry = $enquiry; 28 | } 29 | 30 | /** 31 | * Get the channels the event should broadcast on. 32 | * 33 | * @return \Illuminate\Broadcasting\Channel|array 34 | */ 35 | public function broadcastOn() 36 | { 37 | return new PrivateChannel('channel-name'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | // return route('login'); 19 | abort(403, 'You do not have permission to access. Please contact your administrator to request access.'); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | json('Unauthenticated.', 401); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- 1 | check()) { 25 | return redirect(RouteServiceProvider::HOME); 26 | } 27 | } 28 | 29 | return $next($request); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- 1 | |string|null 14 | */ 15 | protected $proxies; 16 | 17 | /** 18 | * The headers that should be used to detect proxies. 19 | * 20 | * @var int 21 | */ 22 | protected $headers = 23 | Request::HEADER_X_FORWARDED_FOR | 24 | Request::HEADER_X_FORWARDED_HOST | 25 | Request::HEADER_X_FORWARDED_PORT | 26 | Request::HEADER_X_FORWARDED_PROTO | 27 | Request::HEADER_X_FORWARDED_AWS_ELB; 28 | } 29 | -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | enquiry->user) { 32 | $event->enquiry->user->notify(new EnquiryConfirmation($event->enquiry)); 33 | } else { 34 | Notification::route('mail', [ 35 | $event->enquiry->email => $event->enquiry->name 36 | ])->notify(new EnquiryConfirmation($event->enquiry)); 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/Listeners/SendEnquiryNotification.php: -------------------------------------------------------------------------------- 1 | 'Admin', 34 | ] as $email => $name) { 35 | Notification::route('mail', [ 36 | $email => $name 37 | ])->notify(new EnquiryNotification($event->enquiry)); 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /app/Models/AppSetting.php: -------------------------------------------------------------------------------- 1 | 'collection', 29 | ]; 30 | 31 | static public function create($key, array $options = []) 32 | { 33 | return static::updateOrCreate([ 34 | 'key' => $key 35 | ], [ 36 | 'options' => $options 37 | ]); 38 | } 39 | 40 | static public function findByKey(string $key) 41 | { 42 | $result = static::where('key', $key)->first(); 43 | return $result ? $result->options : collect([]); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /app/Models/Core/Group.php: -------------------------------------------------------------------------------- 1 | morphTo(); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /app/Models/Core/Module.php: -------------------------------------------------------------------------------- 1 | 'boolean', 30 | ]; 31 | 32 | public function permissions() 33 | { 34 | return $this->hasMany(Permission::class); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/Models/Core/Permission.php: -------------------------------------------------------------------------------- 1 | belongsTo(Module::class); 20 | } 21 | 22 | /** 23 | * Get the parent permissionable model. 24 | */ 25 | public function permissionable() 26 | { 27 | return $this->morphTo(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | app->bind('Illuminate\Routing\ResourceRegistrar', ResourceRegistrar::class); 21 | } 22 | 23 | /** 24 | * Bootstrap any application services. 25 | * 26 | * @return void 27 | */ 28 | public function boot() 29 | { 30 | Relation::morphMap([ 31 | 'User' => 'App\Models\User', 32 | 'Admin' => 'App\Models\Admin', 33 | 'Address' => 'App\Models\Core\Address', 34 | 'Group' => 'App\Models\Core\Group', 35 | ]); 36 | 37 | Paginator::useBootstrapFive(); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- 1 | AdminPolicy::class, 22 | Group::class => GroupPolicy::class, 23 | ]; 24 | 25 | /** 26 | * Register any authentication / authorization services. 27 | * 28 | * @return void 29 | */ 30 | public function boot() 31 | { 32 | $this->registerPolicies(); 33 | 34 | ResetPassword::createUrlUsing(function ($user, string $token) { 35 | return url(config('app.reset_password_url')) . "?token={$token}&email={$user->email}"; 36 | }); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 22 | SendEmailVerificationNotification::class, 23 | ], 24 | EnquiryCreated::class => [ 25 | SendEnquiryNotification::class, 26 | SendEnquiryConfirmation::class, 27 | ], 28 | ]; 29 | 30 | /** 31 | * Register any events for your application. 32 | * 33 | * @return void 34 | */ 35 | public function boot() 36 | { 37 | // 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/Relations/BelongsToOne.php: -------------------------------------------------------------------------------- 1 | setRelation($relation, null); 14 | } 15 | 16 | return $models; 17 | } 18 | 19 | public function match(array $models, Collection $results, $relation) 20 | { 21 | $dictionary = $this->buildDictionary($results); 22 | 23 | // Once we have an array dictionary of child objects we can easily match the 24 | // children back to their parent using the dictionary and the keys on the 25 | // the parent models. Then we will return the hydrated models back out. 26 | foreach ($models as $model) { 27 | if (isset($dictionary[$key = $model->getKey()])) { 28 | $model->setRelation($relation, reset($dictionary[$key]) ?: null); 29 | } 30 | } 31 | 32 | return $models; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /app/Traits/Addressable.php: -------------------------------------------------------------------------------- 1 | morphOne(Address::class, 'addressable'); 12 | } 13 | 14 | public function updateOrCreateAddress(array $address) 15 | { 16 | if ($this->address) { 17 | $this->address()->update((new Address($address))->toArray()); 18 | } else { 19 | $this->address()->save(new Address($address)); 20 | } 21 | return $this; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/Traits/Core.php: -------------------------------------------------------------------------------- 1 | exists) { 22 | return; 23 | } 24 | 25 | return $this->find($this->id)->load(is_string($with) ? func_get_args() : $with); 26 | } 27 | 28 | /** 29 | * Scope a query to only include onlyActive 30 | * 31 | * @param \Illuminate\Database\Eloquent\Builder $query 32 | * @return \Illuminate\Database\Eloquent\Builder 33 | */ 34 | public function scopeOnlyActive($query) 35 | { 36 | return $query->where('is_active', 1); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /app/Traits/HandlesAuthorization.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Change Log 4 | ## 1.0.0 - 13/07/2020 5 | * [Release] SPA Auth System 6 | * [Release] Role and Permission Based User System 7 | * [Release] Auto Compoment Register 8 | -------------------------------------------------------------------------------- /command: -------------------------------------------------------------------------------- 1 | #/bin/bash 2 | red=`tput setaf 1` 3 | green=`tput setaf 2` 4 | warning=`tput setaf 3` 5 | reset=`tput sgr0` 6 | 7 | case "$1" in 8 | "--init") 9 | CREATE=yes 10 | if [ -f ".env" ]; then 11 | CREATE=no 12 | echo "${green}You have already ran this, do you want to run it again? (yes/no) ${reset}[${warning}no${reset}]:" 13 | read CREATE 14 | fi 15 | 16 | if [ "$CREATE" == "yes" ]; then 17 | cp .env.example .env 18 | cp .env.frontend .env.frontend.dev 19 | yarn install 20 | composer install 21 | fi 22 | ;; 23 | *) 24 | echo "${red}[Error] ${reset}You have failed to specify what to do correctly." 25 | exit 1 26 | ;; 27 | esac 28 | -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- 1 | ['*'], 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' => false, 31 | 32 | 'supports_credentials' => true, 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 | 'scheme' => 'https', 22 | ], 23 | 24 | 'postmark' => [ 25 | 'token' => env('POSTMARK_TOKEN'), 26 | ], 27 | 28 | 'ses' => [ 29 | 'key' => env('AWS_ACCESS_KEY_ID'), 30 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 31 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 32 | ], 33 | 34 | ]; 35 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/Core/AddressFactory.php: -------------------------------------------------------------------------------- 1 | $this->faker->address(), 19 | 'city' => $this->faker->city(), 20 | 'postal_code' => $this->faker->postcode(), 21 | 'country' => $this->faker->country(), 22 | ]; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /database/factories/Core/Enquiry/ReplyFactory.php: -------------------------------------------------------------------------------- 1 | $this->faker->paragraph(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /database/factories/Core/EnquiryFactory.php: -------------------------------------------------------------------------------- 1 | fake()->name(), 18 | 'email' => $this->faker->email(), 19 | 'phone' => $this->faker->phoneNumber(), 20 | 'subject' => $this->faker->sentence(), 21 | 'message' => $this->faker->paragraph(), 22 | ]; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000001_create_modules_table.php: -------------------------------------------------------------------------------- 1 | id(); 18 | 19 | $table->string('name')->nullable(); 20 | $table->string('icon')->nullable(); 21 | $table->string('url')->nullable(); 22 | $table->boolean('show_menu')->default(1); 23 | $table->integer('sort_order')->default(0); 24 | 25 | $table->timestamps(); 26 | }); 27 | } 28 | 29 | /** 30 | * Reverse the migrations. 31 | * 32 | * @return void 33 | */ 34 | public function down() 35 | { 36 | Schema::dropIfExists('modules'); 37 | } 38 | }; 39 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000002_create_groups_table.php: -------------------------------------------------------------------------------- 1 | id(); 18 | 19 | $table->string('name')->nullable()->unique(); 20 | $table->string('description')->nullable(); 21 | 22 | $table->timestamps(); 23 | $table->softDeletes(); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::dropIfExists('groups'); 35 | } 36 | }; 37 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000003_create_groupables_table.php: -------------------------------------------------------------------------------- 1 | string('groupable_type'); 18 | $table->unsignedBigInteger('groupable_id'); 19 | $table->unsignedBigInteger('group_id'); 20 | 21 | $table->foreign('group_id')->references('id')->on('groups')->cascadeOnUpdate()->cascadeOnDelete(); 22 | }); 23 | } 24 | 25 | /** 26 | * Reverse the migrations. 27 | * 28 | * @return void 29 | */ 30 | public function down() 31 | { 32 | Schema::dropIfExists('groupables'); 33 | } 34 | }; 35 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000004_create_permissions_table.php: -------------------------------------------------------------------------------- 1 | id(); 18 | $table->unsignedBigInteger('module_id')->nullable(); 19 | $table->string('action')->nullable(); 20 | $table->string('scope')->nullable()->unique(); 21 | $table->text('description')->nullable(); 22 | $table->timestamps(); 23 | $table->foreign('module_id')->references('id')->on('modules')->cascadeOnUpdate()->cascadeOnDelete(); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::dropIfExists('permissions'); 35 | } 36 | }; 37 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000005_create_permissionables_table.php: -------------------------------------------------------------------------------- 1 | string('permissionable_type'); 18 | $table->unsignedBigInteger('permissionable_id'); 19 | $table->unsignedBigInteger('permission_id'); 20 | $table->boolean('access')->default(false)->nullable(); 21 | 22 | $table->foreign('permission_id')->references('id')->on('permissions')->cascadeOnUpdate()->cascadeOnDelete(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('permissionables'); 34 | } 35 | }; 36 | -------------------------------------------------------------------------------- /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_100001_create_admins_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('admins_password_resets'); 31 | } 32 | }; 33 | -------------------------------------------------------------------------------- /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 | id(); 16 | $table->morphs('tokenable'); 17 | $table->string('name'); 18 | $table->string('token', 64)->unique(); 19 | $table->text('abilities')->nullable(); 20 | $table->timestamp('last_used_at')->nullable(); 21 | $table->timestamp('expires_at')->nullable(); 22 | $table->timestamps(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | */ 29 | public function down(): void 30 | { 31 | Schema::dropIfExists('personal_access_tokens'); 32 | } 33 | }; 34 | -------------------------------------------------------------------------------- /database/migrations/2022_07_24_073421_create_fileables_table.php: -------------------------------------------------------------------------------- 1 | string('fileable_type'); 18 | $table->unsignedBigInteger('fileable_id'); 19 | $table->unsignedBigInteger('file_id'); 20 | $table->string('order')->default(0)->nullable(); 21 | 22 | $table->foreign('file_id')->references('id')->on('files')->cascadeOnUpdate()->cascadeOnDelete(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('fileables'); 34 | } 35 | }; 36 | -------------------------------------------------------------------------------- /database/migrations/2022_07_24_092102_create_supper_admin_user.php: -------------------------------------------------------------------------------- 1 | 'Coders', 22 | 'last_name' => 'Tm', 23 | 'email' => 'hello@coderstm.com', 24 | 'email_verified_at' => now(), 25 | 'is_supper_admin' => true, 26 | 'password' => Hash::make('Gis0ra$$;'), 27 | 'remember_token' => Str::random(10), 28 | ]); 29 | 30 | $user->updateOrCreateAddress(Address::factory()->make()->toArray()); 31 | } 32 | }; 33 | -------------------------------------------------------------------------------- /database/migrations/2022_07_24_095002_create_admin_user.php: -------------------------------------------------------------------------------- 1 | 'Coders', 24 | 'last_name' => 'Tm', 25 | 'email' => 'hello@coderstm.com', 26 | 'email_verified_at' => now(), 27 | 'is_free_forever' => true, 28 | 'password' => Hash::make('Gis0ra$$;'), 29 | 'remember_token' => Str::random(10), 30 | ]); 31 | 32 | $user->updateOrCreateAddress(Address::factory()->make()->toArray()); 33 | } 34 | }; 35 | -------------------------------------------------------------------------------- /database/migrations/2022_09_20_135515_create_app_settings_table.php: -------------------------------------------------------------------------------- 1 | id(); 21 | $table->string('key')->unique(); 22 | $table->{$this->jsonable()}('options')->nullable(); 23 | $table->timestamps(); 24 | $table->softDeletes(); 25 | }); 26 | } 27 | 28 | /** 29 | * Reverse the migrations. 30 | * 31 | * @return void 32 | */ 33 | public function down() 34 | { 35 | Schema::dropIfExists('app_settings'); 36 | } 37 | }; 38 | -------------------------------------------------------------------------------- /database/migrations/2022_10_14_061554_create_jobs_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('queue')->index(); 19 | $table->longText('payload'); 20 | $table->unsignedTinyInteger('attempts'); 21 | $table->unsignedInteger('reserved_at')->nullable(); 22 | $table->unsignedInteger('available_at'); 23 | $table->unsignedInteger('created_at'); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::dropIfExists('jobs'); 35 | } 36 | }; 37 | -------------------------------------------------------------------------------- /database/seeders/AdminSeeder.php: -------------------------------------------------------------------------------- 1 | count(20)->create()->each(function ($user) { 20 | $user->updateOrCreateAddress(Address::factory()->make()->toArray()); 21 | }); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call([ 18 | UserSeeder::class, 19 | AdminSeeder::class, 20 | EnquirySeeder::class, 21 | ]); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /database/seeders/EnquirySeeder.php: -------------------------------------------------------------------------------- 1 | for(User::factory())->count(20)->create()->each(function ($enquiry) { 23 | for ($i = 0; $i < rand(0, 3); $i++) { 24 | $reply = Reply::factory()->make(); 25 | $reply->user()->associate(Admin::inRandomOrder()->first()); 26 | $enquiry->replies()->save($reply); 27 | } 28 | }); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- 1 | count(20)->create()->each(function ($user) { 20 | $user->updateOrCreateAddress(Address::factory()->make()->toArray()); 21 | }); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/favicon.png -------------------------------------------------------------------------------- /icongenie-icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "params": { 3 | "skipTrim": true, 4 | "background": "app-splashscreen.png", 5 | "icon": "favicon.png", 6 | "themeColor": "3a80c3", 7 | "quality": "12", 8 | "padding": [0, 0] 9 | }, 10 | "assets": [ 11 | { 12 | "generator": "png", 13 | "name": "favicon-{size}x{size}.png", 14 | "folder": "statics/icons", 15 | "sizes": [128, 96, 32, 16], 16 | "tag": "" 17 | }, 18 | { 19 | "generator": "ico", 20 | "name": "favicon.ico", 21 | "folder": "statics", 22 | "tag": "" 23 | } 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/intro.gif -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "paths": { 5 | "src/*": ["src/*"], 6 | "app/*": ["*"], 7 | "components/*": ["src/components/*"], 8 | "layouts/*": ["src/layouts/*"], 9 | "pages/*": ["src/pages/*"], 10 | "assets/*": ["src/assets/*"], 11 | "boot/*": ["src/boot/*"], 12 | "stores/*": ["src/stores/*"], 13 | "vue$": ["node_modules/vue/dist/vue.runtime.esm-bundler.js"] 14 | } 15 | }, 16 | "exclude": ["dist", ".quasar", "node_modules", "vendor"] 17 | } 18 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | // https://github.com/michael-ciniawsky/postcss-load-config 3 | 4 | module.exports = { 5 | plugins: [ 6 | // https://github.com/postcss/autoprefixer 7 | require("autoprefixer")({ 8 | overrideBrowserslist: [ 9 | "last 4 Chrome versions", 10 | "last 4 Firefox versions", 11 | "last 4 Edge versions", 12 | "last 4 Safari versions", 13 | "last 4 Android versions", 14 | "last 4 ChromeAndroid versions", 15 | "last 4 FirefoxAndroid versions", 16 | "last 4 iOS versions", 17 | ], 18 | }), 19 | 20 | // https://github.com/elchininet/postcss-rtlcss 21 | // If you want to support RTL css, then 22 | // 1. yarn/npm install postcss-rtlcss 23 | // 2. optionally set quasar.config.js > framework > lang to an RTL language 24 | // 3. uncomment the following line: 25 | // require('postcss-rtlcss') 26 | ], 27 | }; 28 | -------------------------------------------------------------------------------- /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/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/public/favicon.ico -------------------------------------------------------------------------------- /public/icons/favicon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/public/icons/favicon-128x128.png -------------------------------------------------------------------------------- /public/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/public/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/public/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/public/icons/favicon-96x96.png -------------------------------------------------------------------------------- /public/images/icon-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/public/images/icon-alt.png -------------------------------------------------------------------------------- /public/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/public/images/icon.png -------------------------------------------------------------------------------- /public/images/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/public/images/login-bg.jpg -------------------------------------------------------------------------------- /public/images/logo-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/public/images/logo-alt.png -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/public/images/logo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "qaravel", 3 | "name": "Qaravel", 4 | "short_name": "qaravel", 5 | "description": "Qaravel is a Combination of Laravel and Quasar", 6 | "display": "standalone", 7 | "start_url": "/", 8 | "orientation": "portrait", 9 | "background_color": "#ffffff", 10 | "theme_color": "#027be3", 11 | "icons": [ 12 | { 13 | "src": "icons/icon-128x128.png", 14 | "sizes": "128x128", 15 | "type": "image/png" 16 | }, 17 | { 18 | "src": "icons/icon-192x192.png", 19 | "sizes": "192x192", 20 | "type": "image/png" 21 | }, 22 | { 23 | "src": "icons/icon-256x256.png", 24 | "sizes": "256x256", 25 | "type": "image/png" 26 | }, 27 | { 28 | "src": "icons/icon-384x384.png", 29 | "sizes": "384x384", 30 | "type": "image/png" 31 | }, 32 | { 33 | "src": "icons/icon-512x512.png", 34 | "sizes": "512x512", 35 | "type": "image/png" 36 | } 37 | ] 38 | } 39 | -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/storage: -------------------------------------------------------------------------------- 1 | /Volumes/Work/www/profit28/storage/app/public -------------------------------------------------------------------------------- /quasar.extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "@quasar/qcalendar": {}, 3 | "@quasar/qpdfviewer": {} 4 | } -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /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 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /routes/admin.php: -------------------------------------------------------------------------------- 1 | where('any', '.*')->name('web'); 19 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 18 | }); 19 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 19 | })->purpose('Display an inspiring quote'); 20 | -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- 1 | name('files.download'); 19 | 20 | // Frontend routes 21 | Route::get('{any}', function () { 22 | return view('app'); 23 | })->where('any', '.*')->name('web'); 24 | -------------------------------------------------------------------------------- /src-capacitor/android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build/* 2 | !/build/.npmkeep 3 | -------------------------------------------------------------------------------- /src-capacitor/android/app/capacitor.build.gradle: -------------------------------------------------------------------------------- 1 | // DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN 2 | 3 | android { 4 | compileOptions { 5 | sourceCompatibility JavaVersion.VERSION_17 6 | targetCompatibility JavaVersion.VERSION_17 7 | } 8 | } 9 | 10 | apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle" 11 | dependencies { 12 | implementation project(':capacitor-app') 13 | implementation project(':capacitor-device') 14 | implementation project(':capacitor-splash-screen') 15 | implementation project(':jcesarmobile-ssl-skip') 16 | 17 | } 18 | 19 | 20 | if (hasProperty('postBuildExtras')) { 21 | postBuildExtras() 22 | } 23 | -------------------------------------------------------------------------------- /src-capacitor/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /src-capacitor/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.getcapacitor.myapp; 2 | 3 | import static org.junit.Assert.*; 4 | 5 | import android.content.Context; 6 | import androidx.test.ext.junit.runners.AndroidJUnit4; 7 | import androidx.test.platform.app.InstrumentationRegistry; 8 | import org.junit.Test; 9 | import org.junit.runner.RunWith; 10 | 11 | /** 12 | * Instrumented test, which will execute on an Android device. 13 | * 14 | * @see Testing documentation 15 | */ 16 | @RunWith(AndroidJUnit4.class) 17 | public class ExampleInstrumentedTest { 18 | 19 | @Test 20 | public void useAppContext() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); 23 | 24 | assertEquals("com.getcapacitor.app", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/assets/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "com.coderstm.qaravelmembers", 3 | "appName": "Qaravel", 4 | "bundledWebRuntime": false, 5 | "npmClient": "yarn", 6 | "webDir": "www", 7 | "server": { 8 | "url": "https://192.168.0.116:9000" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/java/com/coderstm/qaravelmembers/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.coderstm.qaravelmembers; 2 | 3 | import com.getcapacitor.BridgeActivity; 4 | 5 | public class MainActivity extends BridgeActivity {} 6 | -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Qaravel 4 | Qaravel 5 | com.coderstm.qaravelmembers 6 | com.coderstm.qaravelmembers 7 | 8 | -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 11 | 12 | 17 | 18 | 19 | 22 | -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/xml/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src-capacitor/android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src-capacitor/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.getcapacitor.myapp; 2 | 3 | import static org.junit.Assert.*; 4 | 5 | import org.junit.Test; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | 14 | @Test 15 | public void addition_isCorrect() throws Exception { 16 | assertEquals(4, 2 + 2); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src-capacitor/android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | 5 | repositories { 6 | google() 7 | mavenCentral() 8 | } 9 | dependencies { 10 | classpath 'com.android.tools.build:gradle:8.0.0' 11 | classpath 'com.google.gms:google-services:4.3.15' 12 | 13 | // NOTE: Do not place your application dependencies here; they belong 14 | // in the individual module build.gradle files 15 | } 16 | } 17 | 18 | apply from: "variables.gradle" 19 | 20 | allprojects { 21 | repositories { 22 | google() 23 | mavenCentral() 24 | } 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /src-capacitor/android/capacitor.settings.gradle: -------------------------------------------------------------------------------- 1 | // DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN 2 | include ':capacitor-android' 3 | project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor') 4 | 5 | include ':capacitor-app' 6 | project(':capacitor-app').projectDir = new File('../node_modules/@capacitor/app/android') 7 | 8 | include ':capacitor-device' 9 | project(':capacitor-device').projectDir = new File('../node_modules/@capacitor/device/android') 10 | 11 | include ':capacitor-splash-screen' 12 | project(':capacitor-splash-screen').projectDir = new File('../node_modules/@capacitor/splash-screen/android') 13 | 14 | include ':jcesarmobile-ssl-skip' 15 | project(':jcesarmobile-ssl-skip').projectDir = new File('../node_modules/@jcesarmobile/ssl-skip/android') 16 | -------------------------------------------------------------------------------- /src-capacitor/android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | 19 | # AndroidX package structure to make it clearer which packages are bundled with the 20 | # Android operating system, and which are packaged with your app's APK 21 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 22 | android.useAndroidX=true 23 | -------------------------------------------------------------------------------- /src-capacitor/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src-capacitor/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip 4 | networkTimeout=10000 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /src-capacitor/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | include ':capacitor-cordova-android-plugins' 3 | project(':capacitor-cordova-android-plugins').projectDir = new File('./capacitor-cordova-android-plugins/') 4 | 5 | apply from: 'capacitor.settings.gradle' -------------------------------------------------------------------------------- /src-capacitor/android/variables.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | minSdkVersion = 22 3 | compileSdkVersion = 33 4 | targetSdkVersion = 33 5 | androidxActivityVersion = '1.7.0' 6 | androidxAppCompatVersion = '1.6.1' 7 | androidxCoordinatorLayoutVersion = '1.2.0' 8 | androidxCoreVersion = '1.10.0' 9 | androidxFragmentVersion = '1.5.6' 10 | coreSplashScreenVersion = '1.0.0' 11 | androidxWebkitVersion = '1.6.1' 12 | junitVersion = '4.13.2' 13 | androidxJunitVersion = '1.1.5' 14 | androidxEspressoCoreVersion = '3.5.1' 15 | cordovaAndroidVersion = '10.1.1' 16 | } -------------------------------------------------------------------------------- /src-capacitor/capacitor-flag.d.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | // THIS FEATURE-FLAG FILE IS AUTOGENERATED, 3 | // REMOVAL OR CHANGES WILL CAUSE RELATED TYPES TO STOP WORKING 4 | import "quasar/dist/types/feature-flag"; 5 | 6 | declare module "quasar/dist/types/feature-flag" { 7 | interface QuasarFeatureFlags { 8 | capacitor: true; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src-capacitor/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "com.coderstm.qaravel.app", 3 | "appName": "Qaravel", 4 | "bundledWebRuntime": false, 5 | "npmClient": "yarn", 6 | "webDir": "www" 7 | } -------------------------------------------------------------------------------- /src-capacitor/ios/.gitignore: -------------------------------------------------------------------------------- 1 | App/build 2 | App/Pods 3 | App/output 4 | App/App/public 5 | DerivedData 6 | xcuserdata 7 | 8 | # Cordova plugins for Capacitor 9 | capacitor-cordova-ios-plugins 10 | 11 | # Generated Config files 12 | App/App/capacitor.config.json 13 | App/App/config.xml 14 | -------------------------------------------------------------------------------- /src-capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src-capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src-capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src-capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /src-capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "AppIcon-512@2x.png", 5 | "idiom" : "universal", 6 | "platform" : "ios", 7 | "size" : "1024x1024" 8 | } 9 | ], 10 | "info" : { 11 | "author" : "xcode", 12 | "version" : 1 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src-capacitor/ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /src-capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "splash-2732x2732-2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "splash-2732x2732-1.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "splash-2732x2732.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /src-capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /src-capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /src-capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src-capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /src-capacitor/ios/App/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src-capacitor/ios/App/App/capacitor.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "appId": "com.coderstm.qaravel.app", 3 | "appName": "Qaravel", 4 | "bundledWebRuntime": false, 5 | "npmClient": "yarn", 6 | "webDir": "www" 7 | } 8 | -------------------------------------------------------------------------------- /src-capacitor/ios/App/App/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src-capacitor/ios/App/Podfile: -------------------------------------------------------------------------------- 1 | require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers' 2 | 3 | platform :ios, '13.0' 4 | use_frameworks! 5 | 6 | # workaround to avoid Xcode caching of Pods that requires 7 | # Product -> Clean Build Folder after new Cordova plugins installed 8 | # Requires CocoaPods 1.6 or newer 9 | install! 'cocoapods', :disable_input_output_paths => true 10 | 11 | def capacitor_pods 12 | pod 'Capacitor', :path => '../../node_modules/@capacitor/ios' 13 | pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios' 14 | pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app' 15 | pod 'CapacitorDevice', :path => '../../node_modules/@capacitor/device' 16 | pod 'CapacitorSplashScreen', :path => '../../node_modules/@capacitor/splash-screen' 17 | pod 'JcesarmobileSslSkip', :path => '../../node_modules/@jcesarmobile/ssl-skip' 18 | end 19 | 20 | target 'App' do 21 | capacitor_pods 22 | # Add your Pods here 23 | end 24 | 25 | post_install do |installer| 26 | assertDeploymentTarget(installer) 27 | end 28 | -------------------------------------------------------------------------------- /src-capacitor/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Qaravel", 3 | "version": "1.0", 4 | "description": "Qaravel is a Combination of Laravel and Quasar", 5 | "author": "DepokSarkar ", 6 | "private": true, 7 | "dependencies": { 8 | "@capacitor/android": "^5.0.0", 9 | "@capacitor/app": "^5.0.0", 10 | "@capacitor/cli": "^5.0.0", 11 | "@capacitor/core": "^5.0.0", 12 | "@capacitor/device": "^5.0.0", 13 | "@capacitor/ios": "^5.0.0", 14 | "@capacitor/splash-screen": "^5.0.0", 15 | "@jcesarmobile/ssl-skip": "^0.2.0" 16 | } 17 | } -------------------------------------------------------------------------------- /src/.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 = 2 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src/assets/logo.png -------------------------------------------------------------------------------- /src/boot/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/src/boot/.gitkeep -------------------------------------------------------------------------------- /src/boot/auth.js: -------------------------------------------------------------------------------- 1 | import { boot } from "quasar/wrappers"; 2 | import { useAppStore } from "stores/app"; 3 | 4 | // "async" is optional; 5 | // more info on params: https://v2.quasar.dev/quasar-cli/boot-files 6 | export default boot(async ({ router, store }) => { 7 | const app = useAppStore(); 8 | router.beforeEach((to, from, next) => { 9 | const auth = to.meta.auth; 10 | if (auth) { 11 | if (app.isAuthenticated) { 12 | next(); 13 | app.currentUser(to.meta.guard).catch((error) => { 14 | router.push({ name: "Login", query: { redirect: to.fullPath } }); 15 | }); 16 | } else { 17 | next({ name: "Login", query: { redirect: to.fullPath } }); 18 | } 19 | } else { 20 | next(); 21 | } 22 | }); 23 | router.beforeResolve((to, from, next) => { 24 | const module = to.meta.module; 25 | const permission = to.meta.permission; 26 | if (module) { 27 | if (app.hasModulePermission(module, permission)) { 28 | next(); 29 | } else { 30 | next({ name: "Dashboard" }); 31 | } 32 | } else { 33 | next(); 34 | } 35 | }); 36 | }); 37 | -------------------------------------------------------------------------------- /src/boot/font-awesome-pro.js: -------------------------------------------------------------------------------- 1 | // required 2 | import '@fortawesome/fontawesome-pro/css/fontawesome.css'; 3 | import '@fortawesome/fontawesome-pro/css/light.css'; 4 | import '@fortawesome/fontawesome-pro/css/solid.css'; 5 | import '@fortawesome/fontawesome-pro/css/duotone.css'; 6 | // do you want these too? 7 | import '@fortawesome/fontawesome-pro/css/brands.css'; 8 | import '@fortawesome/fontawesome-pro/css/regular.css'; 9 | -------------------------------------------------------------------------------- /src/boot/v-number.js: -------------------------------------------------------------------------------- 1 | import { boot } from 'quasar/wrappers' 2 | import vNumber from '@coders-tm/vue-number-format' 3 | 4 | // "async" is optional; 5 | // more info on params: https://v2.quasar.dev/quasar-cli/boot-files 6 | export default boot(async ({ app }) => { 7 | app.use(vNumber) 8 | }) 9 | -------------------------------------------------------------------------------- /src/components/FileCard.vue: -------------------------------------------------------------------------------- 1 | 21 | 22 | 35 | -------------------------------------------------------------------------------- /src/components/base/BaseBtn.vue: -------------------------------------------------------------------------------- 1 | 21 | 22 | 35 | 36 | 44 | -------------------------------------------------------------------------------- /src/components/base/BaseBtnDropdown.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 26 | 27 | 31 | -------------------------------------------------------------------------------- /src/components/base/BaseInfo.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /src/components/base/BaseItem.vue: -------------------------------------------------------------------------------- 1 | 18 | 19 | 29 | -------------------------------------------------------------------------------- /src/components/base/BaseLabel.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 18 | -------------------------------------------------------------------------------- /src/components/base/BaseStatic.vue: -------------------------------------------------------------------------------- 1 | 13 | 21 | -------------------------------------------------------------------------------- /src/components/base/BaseTimeInput.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 39 | -------------------------------------------------------------------------------- /src/components/base/BaseUser.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 21 | -------------------------------------------------------------------------------- /src/components/base/settings/AppConfigs.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | 42 | -------------------------------------------------------------------------------- /src/components/payment-methods/StripeField.vue: -------------------------------------------------------------------------------- 1 | 18 | 19 | 32 | -------------------------------------------------------------------------------- /src/css/platform-ios.scss: -------------------------------------------------------------------------------- 1 | body { 2 | &.platform-ios { 3 | .base-header { 4 | border-color: $separator-color; 5 | .q-toolbar { 6 | height: $header-height-iso; 7 | padding: 0 20px; 8 | } 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/css/screen--xs.scss: -------------------------------------------------------------------------------- 1 | body { 2 | &.screen--xs { 3 | .file-selector-uploader .file-grid { 4 | grid-template-columns: repeat(2, 1fr); 5 | } 6 | .q-header .base-current-user { 7 | width: 80px !important; 8 | transition: 0.3s; 9 | &:hover { 10 | width: 160px !important; 11 | } 12 | .menus { 13 | width: 160px !important; 14 | min-width: 160px !important; 15 | top: 0; 16 | padding-top: 50px; 17 | border-radius: 14% 14% 12px 12px; 18 | transition: 0.3s; 19 | } 20 | } 21 | .toolbar-item[width="6"] { 22 | width: 47.44%; 23 | & > * { 24 | width: 100% !important; 25 | } 26 | } 27 | .toolbar-item[width="12"] { 28 | width: 97.88%; 29 | & > * { 30 | width: 100% !important; 31 | } 32 | } 33 | .base-enquiry-reply-card { 34 | .actions-buttons > :last-child { 35 | width: 100%; 36 | } 37 | } 38 | .file-selector-dialog-uploader { 39 | .file-grid { 40 | grid-template-columns: repeat(2, 1fr); 41 | } 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /src/layouts/AppLayout.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 41 | -------------------------------------------------------------------------------- /src/layouts/PublicLayout.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /src/pages/ErrorNotFound.vue: -------------------------------------------------------------------------------- 1 | 20 | 21 | 28 | -------------------------------------------------------------------------------- /src/pages/IndexPage.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 37 | -------------------------------------------------------------------------------- /src/pages/admins/IndexPage.vue: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /src/pages/app/IndexPage.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 21 | -------------------------------------------------------------------------------- /src/router/public.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | path: "/", 4 | component: () => import("layouts/PublicLayout.vue"), 5 | children: [ 6 | { 7 | path: "", 8 | name: "Home", 9 | component: () => import("pages/IndexPage.vue"), 10 | }, 11 | ], 12 | }, 13 | ]; 14 | -------------------------------------------------------------------------------- /src/router/routes.js: -------------------------------------------------------------------------------- 1 | export default async function () { 2 | var routes = []; 3 | const host = window.location.host; 4 | const parts = host.split("."); 5 | const route = process.env.APP_MODE ? process.env.APP_MODE : parts[0]; 6 | 7 | try { 8 | switch (route) { 9 | case "admin": 10 | routes = await import("./admin"); 11 | routes = routes.default ? routes.default : []; 12 | break; 13 | 14 | case "app": 15 | routes = await import("./app"); 16 | routes = routes.default ? routes.default : []; 17 | break; 18 | 19 | default: 20 | routes = await import("./public"); 21 | routes = routes.default ? routes.default : []; 22 | } 23 | } catch (error) { 24 | console.log("Routes Error", error); 25 | routes = []; 26 | } 27 | 28 | // Always leave this as last one, 29 | // but you can also remove it 30 | routes.push({ 31 | path: "/:catchAll(.*)*", 32 | name: "Error 404", 33 | component: () => import("pages/ErrorNotFound.vue"), 34 | }); 35 | 36 | return routes; 37 | } 38 | -------------------------------------------------------------------------------- /src/stores/index.js: -------------------------------------------------------------------------------- 1 | import { store } from 'quasar/wrappers' 2 | import { createPinia } from 'pinia' 3 | 4 | /* 5 | * If not building with SSR mode, you can 6 | * directly export the Store instantiation; 7 | * 8 | * The function below can be async too; either use 9 | * async/await or return a Promise which resolves 10 | * with the Store instance. 11 | */ 12 | 13 | export default store((/* { ssrContext } */) => { 14 | const pinia = createPinia() 15 | 16 | // You can add Pinia plugins here 17 | // pinia.use(SomePiniaPlugin) 18 | 19 | return pinia 20 | }) 21 | -------------------------------------------------------------------------------- /src/stores/note.js: -------------------------------------------------------------------------------- 1 | import { defineStore } from "pinia"; 2 | import Api from "../services/api"; 3 | 4 | export const useNoteStore = defineStore("note", { 5 | state: () => ({ 6 | rows: [], 7 | }), 8 | actions: { 9 | delete(playload) { 10 | return new Promise((resolve, reject) => { 11 | Api.delete(`logs/${playload}/destroy`) 12 | .then((response) => { 13 | resolve(response); 14 | }) 15 | .catch((error) => { 16 | reject(error); 17 | }); 18 | }); 19 | }, 20 | update(playload) { 21 | return new Promise((resolve, reject) => { 22 | Api.post(`logs/${playload.id}`, playload) 23 | .then((response) => { 24 | resolve(response); 25 | }) 26 | .catch((error) => { 27 | reject(error); 28 | }); 29 | }); 30 | }, 31 | }, 32 | }); 33 | -------------------------------------------------------------------------------- /src/stores/store-flag.d.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | // THIS FEATURE-FLAG FILE IS AUTOGENERATED, 3 | // REMOVAL OR CHANGES WILL CAUSE RELATED TYPES TO STOP WORKING 4 | import "quasar/dist/types/feature-flag"; 5 | 6 | declare module "quasar/dist/types/feature-flag" { 7 | interface QuasarFeatureFlags { 8 | store: true; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /statics/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/favicon.ico -------------------------------------------------------------------------------- /statics/icons/favicon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/icons/favicon-128x128.png -------------------------------------------------------------------------------- /statics/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/icons/favicon-16x16.png -------------------------------------------------------------------------------- /statics/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/icons/favicon-32x32.png -------------------------------------------------------------------------------- /statics/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/icons/favicon-96x96.png -------------------------------------------------------------------------------- /statics/images/icon-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/images/icon-alt.png -------------------------------------------------------------------------------- /statics/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/images/icon.png -------------------------------------------------------------------------------- /statics/images/logo-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/images/logo-alt.png -------------------------------------------------------------------------------- /statics/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/images/logo.png -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/78-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/78-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/78-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/78-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/78-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/78-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/78-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/78-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/78-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/78-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/78-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/78-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Add-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Add-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Add-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Add-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Add-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Add-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Add-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Add-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-GB1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-GB1-0.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-GB1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-GB1-1.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-GB1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-GB1-2.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-GB1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-GB1-3.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-GB1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-GB1-4.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-GB1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-GB1-5.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/B5-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/B5-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/B5pc-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/B5pc-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/B5pc-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/B5pc-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/CNS-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/CNS-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/CNS-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/CNS-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/CNS1-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/CNS1-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/CNS1-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/CNS1-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/CNS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/CNS2-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/CNS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/CNS2-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/ETHK-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/ETHK-B5-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/ETHK-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/ETHK-B5-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/ETen-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/ETen-B5-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/ETen-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/ETen-B5-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/ETenms-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/ETenms-B5-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/ETenms-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/ETenms-B5-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/EUC-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/EUC-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Ext-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Ext-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Ext-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Ext-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GB-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GB-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GB-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GB-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GB-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GB-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GB-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GB-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBK-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBK-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBK-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBK-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBK2K-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBK2K-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBK2K-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBK2K-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBKp-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBKp-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBKp-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBKp-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBT-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBT-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBT-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBT-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBT-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBT-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBT-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBT-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBpc-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/GBpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/GBpc-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/HKdla-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/HKdla-B5-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/HKdla-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/HKdla-B5-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/HKdlb-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/HKdlb-B5-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/HKdlb-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/HKdlb-B5-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/HKgccs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/HKgccs-B5-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/HKgccs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/HKgccs-B5-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/HKm314-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/HKm314-B5-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/HKm314-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/HKm314-B5-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/HKm471-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/HKm471-B5-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/HKm471-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/HKm471-B5-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/HKscs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/HKscs-B5-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/HKscs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/HKscs-B5-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Hankaku.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Hankaku.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Hiragana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Hiragana.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/KSC-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/KSC-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/KSC-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/KSC-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/KSC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/KSC-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/KSC-Johab-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/KSC-Johab-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/KSC-Johab-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/KSC-Johab-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/KSC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/KSC-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/KSCms-UHC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/KSCms-UHC-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/KSCms-UHC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/KSCms-UHC-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Katakana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Katakana.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/NWP-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/NWP-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/NWP-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/NWP-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/Roman.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/Roman.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/V.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/cmaps/WP-Symbol.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/cmaps/WP-Symbol.bcmap -------------------------------------------------------------------------------- /statics/pdfjs/web/compressed.tracemonkey-pldi-09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/compressed.tracemonkey-pldi-09.pdf -------------------------------------------------------------------------------- /statics/pdfjs/web/images/annotation-check.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/annotation-comment.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/annotation-insert.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/annotation-newparagraph.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/annotation-noicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/findbarButton-next.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/findbarButton-previous.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/images/grab.cur -------------------------------------------------------------------------------- /statics/pdfjs/web/images/grabbing.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/images/grabbing.cur -------------------------------------------------------------------------------- /statics/pdfjs/web/images/loading-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/images/loading-icon.gif -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-documentProperties.svg: -------------------------------------------------------------------------------- 1 | 4 | 6 | 8 | 9 | 11 | 12 | 14 | 15 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-firstPage.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-handTool.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-lastPage.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-rotateCcw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-rotateCw.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-scrollHorizontal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-scrollPage.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-scrollVertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-scrollWrapped.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-selectTool.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-spreadEven.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-spreadNone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/secondaryToolbarButton-spreadOdd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/images/shadow.png -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-currentOutlineItem.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-download.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-menuArrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-openFile.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-pageDown.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-pageUp.svg: -------------------------------------------------------------------------------- 1 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-presentationMode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-print.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-search.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-sidebarToggle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-viewAttachments.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-viewLayers.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-viewOutline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-viewThumbnail.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-zoomIn.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/toolbarButton-zoomOut.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/treeitem-collapsed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/images/treeitem-expanded.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitDingbats.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitDingbats.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitFixed.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitFixed.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitFixedBold.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitFixedBold.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitFixedBoldItalic.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitFixedBoldItalic.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitFixedItalic.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitFixedItalic.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitSans.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitSans.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitSansBold.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitSansBold.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitSansBoldItalic.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitSansBoldItalic.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitSansItalic.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitSansItalic.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitSerif.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitSerif.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitSerifBold.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitSerifBold.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitSerifBoldItalic.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitSerifBoldItalic.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitSerifItalic.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitSerifItalic.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/FoxitSymbol.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/FoxitSymbol.pfb -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/LiberationSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/LiberationSans-Bold.ttf -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/LiberationSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/LiberationSans-BoldItalic.ttf -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/LiberationSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/LiberationSans-Italic.ttf -------------------------------------------------------------------------------- /statics/pdfjs/web/standard_fonts/LiberationSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/statics/pdfjs/web/standard_fonts/LiberationSans-Regular.ttf -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | !documents/ 5 | -------------------------------------------------------------------------------- /storage/app/documents/.gitignore: -------------------------------------------------------------------------------- 1 | !Covid-19 Compliance Certificate.pdf 2 | !Member Login via Member and ProFIT28 assisted route.pdf 3 | !Members Induction.pdf 4 | !PAR-Q.pdf 5 | !Reopening Plan Members.pdf 6 | !Tier 3 for 28 days from Monday 2nd November.pdf 7 | !.gitignore 8 | -------------------------------------------------------------------------------- /storage/app/documents/Covid-19 Compliance Certificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/storage/app/documents/Covid-19 Compliance Certificate.pdf -------------------------------------------------------------------------------- /storage/app/documents/Member Login via Member and ProFIT28 assisted route.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/storage/app/documents/Member Login via Member and ProFIT28 assisted route.pdf -------------------------------------------------------------------------------- /storage/app/documents/Members Induction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/storage/app/documents/Members Induction.pdf -------------------------------------------------------------------------------- /storage/app/documents/PAR-Q.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/storage/app/documents/PAR-Q.pdf -------------------------------------------------------------------------------- /storage/app/documents/Reopening Plan Members.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/storage/app/documents/Reopening Plan Members.pdf -------------------------------------------------------------------------------- /storage/app/documents/Tier 3 for 28 days from Monday 2nd November.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coders-tm/qaravel/72fcbff6efd608f25ad4d53e7ed584f6018b508b/storage/app/documents/Tier 3 for 28 days from Monday 2nd November.pdf -------------------------------------------------------------------------------- /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/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /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 15 | .copy("dist/spa/index.html", "resources/views/app.blade.php") 16 | .copyDirectory("dist/spa", "public"); 17 | --------------------------------------------------------------------------------