From b05f0528487f7af1d89f72aa2c7f3f864caf9a1e Mon Sep 17 00:00:00 2001 From: kevin Date: Fri, 16 Jun 2023 10:26:56 +0700 Subject: [PATCH 1/3] request --- app/Http/Resources/OLDLMS/MemberResource.php | 6 ++- .../2022_06_23_083834_create_plans_table.php | 1 + ...dd_column_limit_telecon_to_table_plans.php | 32 +++++++++++ .../user-profile/CardPolicyNumber.tsx | 54 +++++++++++++++++++ 4 files changed, 92 insertions(+), 1 deletion(-) create mode 100644 database/migrations/2023_06_13_103859_add_column_limit_telecon_to_table_plans.php diff --git a/app/Http/Resources/OLDLMS/MemberResource.php b/app/Http/Resources/OLDLMS/MemberResource.php index 4f4edc7e..ec10b1b9 100755 --- a/app/Http/Resources/OLDLMS/MemberResource.php +++ b/app/Http/Resources/OLDLMS/MemberResource.php @@ -17,6 +17,8 @@ class MemberResource extends JsonResource { // $data = parent::toArray($request); $currentMemberPlan = $this->memberPlans?->first(); + $limitTelecon = $currentMemberPlan->plan->limit_telecon ?? null; + $limitTelecon = $this->totalUsage >= 6 ? null : $limitTelecon; $data = [ 'member_id' => $this->member_id, @@ -29,7 +31,9 @@ class MemberResource extends JsonResource 'code' => $currentMemberPlan->plan->code ?? null, 'start' => $currentMemberPlan->start, 'end' => $currentMemberPlan->end, - 'limit' => $this->currentPlan->limit_rules + 'limit' => $this->currentPlan->limit_rules, + 'limit_telecon' => $limitTelecon, + ] : null, 'policy_code' => $this->currentPolicy?->code ?? null, 'corporate' => [ diff --git a/database/migrations/2022_06_23_083834_create_plans_table.php b/database/migrations/2022_06_23_083834_create_plans_table.php index ee148e63..7321d863 100755 --- a/database/migrations/2022_06_23_083834_create_plans_table.php +++ b/database/migrations/2022_06_23_083834_create_plans_table.php @@ -64,6 +64,7 @@ return new class extends Migration $table->string('currency')->nullable(); $table->float('max_surgery_reinstatement_days')->nullable(); $table->float('max_surgery_periode_days')->nullable(); + $table->timestamps(); $table->softDeletes(); diff --git a/database/migrations/2023_06_13_103859_add_column_limit_telecon_to_table_plans.php b/database/migrations/2023_06_13_103859_add_column_limit_telecon_to_table_plans.php new file mode 100644 index 00000000..b58063dc --- /dev/null +++ b/database/migrations/2023_06_13_103859_add_column_limit_telecon_to_table_plans.php @@ -0,0 +1,32 @@ +string('limit_telecon')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('plans', function (Blueprint $table) { + $table->dropColumn('limit_telecon'); + }); + } +}; diff --git a/frontend/client-portal/src/sections/alarm-center/user-profile/CardPolicyNumber.tsx b/frontend/client-portal/src/sections/alarm-center/user-profile/CardPolicyNumber.tsx index 118db8cd..e8ce1a2e 100755 --- a/frontend/client-portal/src/sections/alarm-center/user-profile/CardPolicyNumber.tsx +++ b/frontend/client-portal/src/sections/alarm-center/user-profile/CardPolicyNumber.tsx @@ -21,6 +21,22 @@ const BorderLinearProgress = styled(LinearProgress)(({ theme }) => ({ })); +type DataMember = { + id: number; + fullName: string; + memberId: string; + limit: { + current: number; + total: number; + percentage: number; + }; + avatar: { + url: string; + title: string; + }; + status: JSX.Element; +}; + type CardPolicyProps = { limit: { myLimit: { @@ -49,6 +65,8 @@ type CardPolicyProps = { members?: DataMember[]; }; + + // ---------------------------------------------------------------------- export default function CardPolicyNumber() { @@ -85,6 +103,42 @@ export default function CardPolicyNumber() { // topUpLimit: corporateTopUpLimit.data.data, // }); }, [corporateValue]); + + const calculateProgressValue = (current:number,total:number) => { + return (current/total) * 100; + }; + + const getMemberLimitUsage = (memberId: string) => { + if (policyData?.members) { + const member = policyData.members.find(member => member.memberId === memberId); + if (member) { + return member.limit; + } + } + return null; + }; + + const renderYearlyLimit = () => { + if (policyData) { + const { myLimit } = policyData.limit; + const { balance, total, percentage } = myLimit; + const progressValue = calculateProgressValue(balance, total); + + return ( + + Yearly Limit + + + {balance.toLocaleString()} /{' '} + + {total.toLocaleString()} + + + + ); + } + return null; + }; return ( From 46416cb6acba3ac8f88e38652072eb52f3efd17d Mon Sep 17 00:00:00 2001 From: Ivan Julian Date: Mon, 3 Jul 2023 11:39:08 +0700 Subject: [PATCH 2/3] commit permission --- .DS_Store | Bin .editorconfig | 0 .gitattributes | 0 .gitignore | 0 .styleci.yml | 0 Modules/Client/Config/.gitkeep | 0 Modules/Client/Config/config.php | 0 Modules/Client/Console/.gitkeep | 0 Modules/Client/Database/Migrations/.gitkeep | 0 Modules/Client/Database/Seeders/.gitkeep | 0 .../Database/Seeders/ClientDatabaseSeeder.php | 0 Modules/Client/Database/factories/.gitkeep | 0 Modules/Client/Entities/.gitkeep | 0 Modules/Client/Http/Controllers/.gitkeep | 0 .../Client/Http/Controllers/Api/AuthController.php | 0 .../Client/Http/Controllers/Api/ClaimController.php | 0 .../Http/Controllers/Api/ClaimReportController.php | 0 .../Controllers/Api/CorporateDivisionController.php | 0 .../Controllers/Api/CorporateManageController.php | 0 .../Controllers/Api/CorporateMemberController.php | 0 .../Controllers/Api/CorporatePolicyController.php | 0 .../Client/Http/Controllers/Api/TopUpController.php | 0 .../Client/Http/Controllers/Api/UserController.php | 0 .../Client/Http/Controllers/ClientController.php | 0 Modules/Client/Http/Middleware/.gitkeep | 0 Modules/Client/Http/Requests/.gitkeep | 0 Modules/Client/Providers/.gitkeep | 0 Modules/Client/Providers/ClientServiceProvider.php | 0 Modules/Client/Providers/RouteServiceProvider.php | 0 Modules/Client/Resources/assets/.gitkeep | 0 Modules/Client/Resources/assets/js/app.js | 0 Modules/Client/Resources/assets/sass/app.scss | 0 Modules/Client/Resources/lang/.gitkeep | 0 Modules/Client/Resources/views/.gitkeep | 0 Modules/Client/Resources/views/index.blade.php | 0 .../Client/Resources/views/layouts/master.blade.php | 0 Modules/Client/Routes/.gitkeep | 0 Modules/Client/Routes/api.php | 0 Modules/Client/Routes/web.php | 0 Modules/Client/Tests/Feature/.gitkeep | 0 Modules/Client/Tests/Unit/.gitkeep | 0 .../Transformers/ClaimReport/MemberResources.php | 0 Modules/Client/Transformers/ClaimShowResource.php | 0 .../Transformers/Dashboard/LimitResources.php | 0 .../Dashboard/MemberAlarmCenterResources.php | 0 .../Transformers/Dashboard/MemberResources.php | 0 .../Transformers/Dashboard/TopUpLimitResources.php | 0 Modules/Client/composer.json | 0 Modules/Client/module.json | 0 Modules/Client/package.json | 0 Modules/Client/webpack.mix.js | 0 Modules/HospitalPortal/Config/.gitkeep | 0 Modules/HospitalPortal/Config/config.php | 0 Modules/HospitalPortal/Console/.gitkeep | 0 Modules/HospitalPortal/Database/Migrations/.gitkeep | 0 Modules/HospitalPortal/Database/Seeders/.gitkeep | 0 .../Seeders/HospitalPortalDatabaseSeeder.php | 0 Modules/HospitalPortal/Database/factories/.gitkeep | 0 Modules/HospitalPortal/Entities/.gitkeep | 0 Modules/HospitalPortal/Http/Controllers/.gitkeep | 0 .../Http/Controllers/Api/AuthController.php | 0 .../Http/Controllers/Api/ClaimRequestController.php | 0 .../Http/Controllers/Api/MemberController.php | 0 .../Http/Controllers/ClaimController.php | 0 .../Http/Controllers/HospitalPortalController.php | 0 Modules/HospitalPortal/Http/Middleware/.gitkeep | 0 Modules/HospitalPortal/Http/Requests/.gitkeep | 0 Modules/HospitalPortal/Providers/.gitkeep | 0 .../Providers/HospitalPortalServiceProvider.php | 0 .../Providers/RouteServiceProvider.php | 0 Modules/HospitalPortal/Resources/assets/.gitkeep | 0 Modules/HospitalPortal/Resources/assets/js/app.js | 0 .../HospitalPortal/Resources/assets/sass/app.scss | 0 Modules/HospitalPortal/Resources/lang/.gitkeep | 0 Modules/HospitalPortal/Resources/views/.gitkeep | 0 .../HospitalPortal/Resources/views/index.blade.php | 0 .../Resources/views/layouts/master.blade.php | 0 Modules/HospitalPortal/Routes/.gitkeep | 0 Modules/HospitalPortal/Routes/api.php | 0 Modules/HospitalPortal/Routes/web.php | 0 Modules/HospitalPortal/Tests/Feature/.gitkeep | 0 Modules/HospitalPortal/Tests/Unit/.gitkeep | 0 .../Transformers/ClaimRequestResource.php | 0 .../Transformers/ClaimRequestShowResource.php | 0 Modules/HospitalPortal/composer.json | 0 Modules/HospitalPortal/module.json | 0 Modules/HospitalPortal/package.json | 0 Modules/HospitalPortal/webpack.mix.js | 0 Modules/Internal/Config/.gitkeep | 0 Modules/Internal/Config/config.php | 0 Modules/Internal/Console/.gitkeep | 0 Modules/Internal/Database/Migrations/.gitkeep | 0 Modules/Internal/Database/Seeders/.gitkeep | 0 .../Database/Seeders/InternalDatabaseSeeder.php | 0 Modules/Internal/Database/factories/.gitkeep | 0 Modules/Internal/Emails/SendVerifyEmail.php | 0 Modules/Internal/Entities/.gitkeep | 0 Modules/Internal/Events/ForgetPassword.php | 0 Modules/Internal/Http/Controllers/.gitkeep | 0 .../Http/Controllers/Api/AppointmentController.php | 0 .../Http/Controllers/Api/AuthController.php | 0 .../Http/Controllers/Api/BenefitController.php | 0 .../Http/Controllers/Api/CityController.php | 0 .../Http/Controllers/Api/ClaimController.php | 0 .../Http/Controllers/Api/ClaimRequestController.php | 0 .../Controllers/Api/CorporateBenefitController.php | 0 .../Http/Controllers/Api/CorporateController.php | 0 .../Api/CorporateFormulariumController.php | 0 .../Controllers/Api/CorporateMemberController.php | 0 .../Controllers/Api/CorporatePlanController.php | 0 .../Controllers/Api/CorporateServiceController.php | 0 .../Http/Controllers/Api/DiagnosisController.php | 0 .../Api/DiagnosisExclusionController.php | 0 .../Http/Controllers/Api/DistrictController.php | 0 .../Http/Controllers/Api/DivisionController.php | 0 .../Http/Controllers/Api/DoctorController.php | 0 .../Http/Controllers/Api/DrugController.php | 0 .../Http/Controllers/Api/FormulariumController.php | 0 .../Controllers/Api/Linksehat/PaymentController.php | 0 .../Http/Controllers/Api/LivechatController.php | 0 .../Http/Controllers/Api/MemberController.php | 0 .../Http/Controllers/Api/OptionController.php | 0 .../Http/Controllers/Api/OrganizationController.php | 0 .../Http/Controllers/Api/PlanController.php | 0 .../Http/Controllers/Api/ProvinceController.php | 0 .../Http/Controllers/Api/SpecialityController.php | 0 .../Http/Controllers/Api/VillageController.php | 0 .../Http/Controllers/ClaimEncounterController.php | 0 .../Http/Controllers/InternalController.php | 0 Modules/Internal/Http/Middleware/.gitkeep | 0 Modules/Internal/Http/Requests/.gitkeep | 0 Modules/Internal/Listeners/SendVerifyEmail.php | 0 .../Internal/Notifications/NotifyVerifyEmail.php | 0 Modules/Internal/Providers/.gitkeep | 0 Modules/Internal/Providers/EventServiceProvider.php | 0 .../Internal/Providers/InternalServiceProvider.php | 0 Modules/Internal/Providers/RouteServiceProvider.php | 0 Modules/Internal/Resources/assets/.gitkeep | 0 Modules/Internal/Resources/assets/js/app.js | 0 Modules/Internal/Resources/assets/sass/app.scss | 0 Modules/Internal/Resources/lang/.gitkeep | 0 Modules/Internal/Resources/views/.gitkeep | 0 Modules/Internal/Resources/views/index.blade.php | 0 .../Resources/views/layouts/master.blade.php | 0 Modules/Internal/Routes/.gitkeep | 0 Modules/Internal/Routes/api.php | 0 Modules/Internal/Routes/web.php | 0 Modules/Internal/Services/CorporateService.php | 0 Modules/Internal/Services/ExclusionService.php | 0 Modules/Internal/Services/FormulariumService.php | 0 .../Internal/Services/MemberEnrollmentService.php | 0 Modules/Internal/Tests/Feature/.gitkeep | 0 Modules/Internal/Tests/Unit/.gitkeep | 0 .../Internal/Transformers/AppointmentResource.php | 0 .../Internal/Transformers/ClaimRequestResource.php | 0 .../Transformers/ClaimRequestShowResource.php | 0 Modules/Internal/Transformers/ClaimResource.php | 0 Modules/Internal/Transformers/ClaimShowResource.php | 0 .../Transformers/CorporateFormulariumResource.php | 0 .../Transformers/CorporateServiceConfigResource.php | 0 .../Transformers/DiagnosisExclusionResource.php | 0 Modules/Internal/Transformers/DoctorResource.php | 0 Modules/Internal/Transformers/EncounterResource.php | 0 .../Transformers/LinksehatPaymentResource.php | 0 Modules/Internal/Transformers/LivechatResource.php | 0 .../Internal/Transformers/OrganizationResource.php | 0 Modules/Internal/composer.json | 0 Modules/Internal/module.json | 0 Modules/Internal/package.json | 0 Modules/Internal/webpack.mix.js | 0 Modules/Linksehat/Config/.gitkeep | 0 Modules/Linksehat/Config/config.php | 0 Modules/Linksehat/Console/.gitkeep | 0 Modules/Linksehat/Database/Migrations/.gitkeep | 0 Modules/Linksehat/Database/Seeders/.gitkeep | 0 .../Database/Seeders/LinksehatDatabaseSeeder.php | 0 Modules/Linksehat/Database/factories/.gitkeep | 0 Modules/Linksehat/Entities/.gitkeep | 0 Modules/Linksehat/Http/Controllers/.gitkeep | 0 .../Http/Controllers/Api/AppointmentController.php | 0 .../Http/Controllers/Api/ArticleController.php | 0 .../Http/Controllers/Api/AuthController.php | 0 .../Http/Controllers/Api/DashboardController.php | 0 .../Http/Controllers/Api/DoctorController.php | 0 .../Http/Controllers/Api/HospitalController.php | 0 .../Controllers/Api/NotificationTokenController.php | 0 .../Http/Controllers/Api/PersonController.php | 0 .../Http/Controllers/Api/ProfileController.php | 0 .../Http/Controllers/Api/SearchController.php | 0 .../Http/Controllers/Api/SpecialityController.php | 0 .../Http/Controllers/LinksehatController.php | 0 Modules/Linksehat/Http/Middleware/.gitkeep | 0 Modules/Linksehat/Http/Requests/.gitkeep | 0 Modules/Linksehat/Http/Requests/PersonRequest.php | 0 Modules/Linksehat/Providers/.gitkeep | 0 .../Providers/LinksehatServiceProvider.php | 0 .../Linksehat/Providers/RouteServiceProvider.php | 0 Modules/Linksehat/Resources/assets/.gitkeep | 0 Modules/Linksehat/Resources/assets/js/app.js | 0 Modules/Linksehat/Resources/assets/sass/app.scss | 0 Modules/Linksehat/Resources/lang/.gitkeep | 0 Modules/Linksehat/Resources/views/.gitkeep | 0 Modules/Linksehat/Resources/views/index.blade.php | 0 .../Resources/views/layouts/master.blade.php | 0 Modules/Linksehat/Routes/.gitkeep | 0 Modules/Linksehat/Routes/api.php | 0 Modules/Linksehat/Routes/web.php | 0 Modules/Linksehat/Tests/Feature/.gitkeep | 0 Modules/Linksehat/Tests/Unit/.gitkeep | 0 .../Appointment/AppointmentDetailResource.php | 0 .../Transformers/Article/ArticleResource.php | 0 .../Transformers/Doctor/DoctorResource.php | 0 .../Transformers/Doctor/DoctorResourceDetail.php | 0 Modules/Linksehat/Transformers/DoctorResource.php | 0 .../Transformers/Hospital/HospitalResource.php | 0 Modules/Linksehat/Transformers/HospitalResource.php | 0 .../Transformers/Person/PersonResource.php | 0 .../PractitionerRoleToDoctorDetailResource.php | 0 .../PractitionerRoleToDoctorResource.php | 0 .../SpecialityForHospitalDetailResource.php | 0 .../Transformers/Speciality/SpecialityResource.php | 0 .../Linksehat/Transformers/UserProfileResource.php | 0 Modules/Linksehat/composer.json | 0 Modules/Linksehat/module.json | 0 Modules/Linksehat/package.json | 0 Modules/Linksehat/webpack.mix.js | 0 README.md | 0 _ide_helper.php | 0 app/Builders/MemberBuilder.php | 0 app/Console/Kernel.php | 0 app/Events/ClaimApproved.php | 0 app/Events/ClaimDeclined.php | 0 app/Events/ClaimPaid.php | 0 app/Events/ClaimPostpone.php | 0 app/Events/ClaimReceived.php | 0 app/Events/ClaimRequested.php | 0 app/Exceptions/Handler.php | 0 app/Exceptions/ImportRowException.php | 0 app/Helpers/Helper.php | 0 app/Http/Controllers/Api/AuthController.php | 0 app/Http/Controllers/Api/OLDLMS/ClaimController.php | 0 .../Controllers/Api/OLDLMS/MembershipController.php | 0 .../Controllers/Api/OLDLMS/PaymentController.php | 0 app/Http/Controllers/Controller.php | 0 .../Controllers/GeneratedDocumentController.php | 0 app/Http/Kernel.php | 0 app/Http/Middleware/Authenticate.php | 0 app/Http/Middleware/EncryptCookies.php | 0 app/Http/Middleware/LinksehatOldAuthMiddleware.php | 0 .../Middleware/PreventRequestsDuringMaintenance.php | 0 app/Http/Middleware/RedirectIfAuthenticated.php | 0 app/Http/Middleware/TrimStrings.php | 0 app/Http/Middleware/TrustHosts.php | 0 app/Http/Middleware/TrustProxies.php | 0 app/Http/Middleware/VerifyCsrfToken.php | 0 app/Http/Resources/MemberDataTableResource.php | 0 app/Http/Resources/OLDLMS/MemberLimitResource.php | 0 app/Http/Resources/OLDLMS/MemberResource.php | 0 app/Imports/PlansImport.php | 0 app/Jobs/ProcessImport.php | 0 app/Jobs/TestJob.php | 0 app/Listeners/LogClaimJournal.php | 0 app/Listeners/NotifyClaimRequested.php | 0 app/Models/Address.php | 0 app/Models/Appointment.php | 0 app/Models/AppointmentParticipant.php | 0 app/Models/AppointmentType.php | 0 app/Models/Benefit.php | 0 app/Models/Brand.php | 0 app/Models/Category.php | 0 app/Models/City.php | 0 app/Models/Claim.php | 0 app/Models/ClaimDiagnosis.php | 0 app/Models/ClaimHistory.php | 0 app/Models/ClaimItem.php | 0 app/Models/ClaimRequest.php | 0 app/Models/Corporate.php | 0 app/Models/CorporateBenefit.php | 0 app/Models/CorporateDivision.php | 0 app/Models/CorporateEmployee.php | 0 app/Models/CorporateFormularium.php | 0 app/Models/CorporateManager.php | 0 app/Models/CorporatePlan.php | 0 app/Models/CorporatePolicy.php | 0 app/Models/CorporateService.php | 0 app/Models/CorporateServiceConfig.php | 0 app/Models/CorporateServiceSpeciality.php | 0 app/Models/District.php | 0 app/Models/Drug.php | 0 app/Models/DrugAtc.php | 0 app/Models/DrugCategory.php | 0 app/Models/DrugComposition.php | 0 app/Models/DrugExternalIdentifier.php | 0 app/Models/DrugIdentifier.php | 0 app/Models/DrugSellingUnit.php | 0 app/Models/DrugUnit.php | 0 app/Models/Encounter.php | 0 app/Models/EncounterDiagnosis.php | 0 app/Models/EncounterParticipant.php | 0 app/Models/Exclusion.php | 0 app/Models/ExclusionRules.php | 0 app/Models/Family.php | 0 app/Models/File.php | 0 app/Models/Formularium.php | 0 app/Models/FormulariumItem.php | 0 app/Models/GeneratedDocument.php | 0 app/Models/Icd.php | 0 app/Models/Identifier.php | 0 app/Models/ImportLog.php | 0 app/Models/Ingredient.php | 0 app/Models/LimitJournal.php | 0 app/Models/Member.php | 0 app/Models/MemberPlan.php | 0 app/Models/MemberPolicy.php | 0 app/Models/Meta.php | 0 app/Models/NotificationToken.php | 0 app/Models/OLDLMS/Appointment.php | 0 app/Models/OLDLMS/AppointmentDetail.php | 0 app/Models/OLDLMS/Dokter.php | 0 app/Models/OLDLMS/Healthcare.php | 0 app/Models/OLDLMS/HealthcareCommission.php | 0 app/Models/OLDLMS/Insurance.php | 0 app/Models/OLDLMS/JadwalDokter.php | 0 app/Models/OLDLMS/JadwalDokterDay.php | 0 app/Models/OLDLMS/Kota.php | 0 app/Models/OLDLMS/Livechat.php | 0 app/Models/OLDLMS/Provinsi.php | 0 app/Models/OLDLMS/Speciality.php | 0 app/Models/OLDLMS/User.php | 0 app/Models/OLDLMS/UserDetail.php | 0 app/Models/OLDLMS/UserInsurance.php | 0 app/Models/OLDLMS/UserInsuranceDetail.php | 0 app/Models/Organization.php | 0 app/Models/Person.php | 0 app/Models/Plan.php | 0 app/Models/Practice.php | 0 app/Models/Practitioner.php | 0 app/Models/PractitionerRole.php | 0 app/Models/PractitionerRoleAvailability.php | 0 app/Models/PractitionerRoleAvailabilityDay.php | 0 app/Models/Price.php | 0 app/Models/Province.php | 0 app/Models/Service.php | 0 app/Models/Speciality.php | 0 app/Models/StatusHistory.php | 0 app/Models/Unit.php | 0 app/Models/User.php | 0 app/Models/Village.php | 0 app/Notifications/ClaimRequestedNotification.php | 0 app/Providers/AppServiceProvider.php | 0 app/Providers/AuthServiceProvider.php | 0 app/Providers/BroadcastServiceProvider.php | 0 app/Providers/ClaimRequested.php | 0 app/Providers/DuitkuServiceProvider.php | 0 app/Providers/EventServiceProvider.php | 0 app/Providers/RouteServiceProvider.php | 0 app/Rules/NikRule.php | 0 app/Services/ClaimRequestService.php | 0 app/Services/ClaimService.php | 0 app/Services/CorporateMemberService.php | 0 app/Services/DoctorService.php | 0 app/Services/Duitku.php | 0 app/Services/ImportService.php | 0 app/Services/LmsApi.php | 0 app/Services/PrimayaApi.php | 0 app/Traits/Blameable.php | 0 artisan | 0 bootstrap/app.php | 0 composer.json | 0 composer.lock | 0 config/app.php | 0 config/aso.php | 0 config/auth.php | 0 config/broadcasting.php | 0 config/cache.php | 0 config/cors.php | 0 config/database.php | 0 config/excel.php | 0 config/filesystems.php | 0 config/hashing.php | 0 config/logging.php | 0 config/mail.php | 0 config/modules.php | 0 config/permission.php | 0 config/queue.php | 0 config/sanctum.php | 0 config/services.php | 0 config/session.php | 0 config/snappy.php | 0 config/view.php | 0 database/.gitignore | 0 database/factories/UserFactory.php | 0 .../2014_10_12_000000_create_users_table.php | 0 ...14_10_12_100000_create_password_resets_table.php | 0 .../2019_08_19_000000_create_failed_jobs_table.php | 0 ...4_000001_create_personal_access_tokens_table.php | 0 .../2022_05_23_073350_create_members_table.php | 0 .../2022_06_16_045414_create_corporates_table.php | 0 ...6_16_045441_create_corporate_divisions_table.php | 0 ...6_17_024432_create_corporate_employees_table.php | 0 ...06_21_042321_create_corporate_policies_table.php | 0 .../2022_06_23_070847_create_benefits_table.php | 0 .../2022_06_23_083834_create_plans_table.php | 0 .../2022_06_23_093107_create_services_table.php | 0 .../2022_07_04_074656_create_import_logs_table.php | 0 .../2022_07_04_075238_create_files_table.php | 0 ...22_07_07_040543_create_corporate_plans_table.php | 0 ...07_12_025440_create_corporate_benefits_table.php | 0 ...22_07_21_121346_create_member_policies_table.php | 0 .../2022_07_25_050001_create_member_plans_table.php | 0 .../2022_07_28_032235_create_icd_table.php | 0 .../2022_08_02_061122_create_exclusions_table.php | 0 ...22_08_02_061127_create_exclusion_rules_table.php | 0 .../2022_08_03_114155_create_jobs_table.php | 0 ...08_05_035511_create_corporate_services_table.php | 0 ...42246_create_corporate_service_configs_table.php | 0 .../2022_08_09_043235_create_drugs_table.php | 0 .../2022_08_09_043243_create_brands_table.php | 0 .../2022_08_09_092811_create_categories_table.php | 0 ...22_08_09_092845_create_drug_categories_table.php | 0 ...2022_08_09_095513_create_organizations_table.php | 0 ..._08_11_024030_create_drug_compositions_table.php | 0 .../2022_08_11_025942_create_drug_atcs_table.php | 0 .../2022_08_11_030815_create_identifiers_table.php | 0 .../2022_08_11_031728_create_ingredients_table.php | 0 ...08_12_020643_create_drug_manufacturers_table.php | 0 .../2022_08_12_025718_create_units_table.php | 0 .../2022_08_12_041455_create_formulariums_table.php | 0 ..._08_12_042229_create_formularium_items_table.php | 0 ...5_043309_create_corporate_formulariums_table.php | 0 .../2022_08_24_024003_create_specialities_table.php | 0 ..._create_corporate_service_specialities_table.php | 0 ..._08_26_064247_create_corporate_manager_table.php | 0 .../2022_09_14_095154_create_addresses_table.php | 0 .../2022_09_16_045129_create_metas_table.php | 0 ...2022_09_16_082408_create_practitioners_table.php | 0 .../2022_09_16_082630_create_persons_table.php | 0 ...09_16_084111_create_practitioner_roles_table.php | 0 ...22_09_20_014237_add_person_id_in_users_table.php | 0 .../2022_09_21_074815_create_practices_table.php | 0 .../2022_09_22_024244_create_prices_table.php | 0 ...reate_practitioner_role_availabilities_table.php | 0 ...te_practitioner_role_availability_days_table.php | 0 .../2022_09_22_071909_create_provinces_table.php | 0 .../2022_09_22_071941_create_cities_table.php | 0 .../2022_09_22_072029_create_districts_table.php | 0 .../2022_09_22_072153_create_villages_table.php | 0 ..._09_26_083719_add_person_details_for_lms_api.php | 0 ...2_11_01_031045_create_family_relations_table.php | 0 ...r_id_and_person_id_in_family_relations_table.php | 0 ..._11_04_084316_create_appointment_types_table.php | 0 .../2022_11_04_084333_create_appointments_table.php | 0 ...084351_create_appointment_participants_table.php | 0 ...tion_id_appointment_id_to_table_appointments.php | 0 .../2022_11_08_103959_create_invoices_table.php | 0 ...2022_11_08_104903_create_invoice_items_table.php | 0 .../2022_11_08_105659_create_payments_table.php | 0 ...22_11_08_110502_create_payment_methods_table.php | 0 ...15_102019_add_height_weight_to_persons_table.php | 0 ...1_22_083926_create_notification_tokens_table.php | 0 .../2022_11_22_093749_create_api_logs_table.php | 0 .../2022_11_22_135948_create_claims_table.php | 0 ...022_11_23_140658_create_limit_journals_table.php | 0 .../2022_12_19_171824_add_active_to_plans_table.php | 0 ..._12_20_105712_add_person_id_to_members_table.php | 0 ...2_12_20_151051_add_language_to_persons_table.php | 0 ...2_12_30_132951_create_status_histories_table.php | 0 ...22_12_30_135856_create_claim_diagnosis_table.php | 0 ...023_02_14_102144_create_claim_requests_table.php | 0 .../2023_02_14_112255_create_permission_tables.php | 0 ...2_15_115628_add_original_name_to_files_table.php | 0 ...23_02_24_125948_create_claim_histories_table.php | 0 ...2_24_134555_create_generated_documents_table.php | 0 ...2023_02_27_133120_create_notifications_table.php | 0 .../2023_03_04_173410_create_claim_items_table.php | 0 .../2023_03_15_155301_create_encounters_table.php | 0 ...5_162138_create_encounter_participants_table.php | 0 ...3_15_162148_create_encounter_diagnoses_table.php | 0 ...23_03_16_150733_create_claim_encounter_table.php | 0 ...51000_add_final_encounter_id_to_claims_table.php | 0 database/seeders/AppointmentTypesSeeder.php | 0 database/seeders/BenefitSeeder.php | 0 database/seeders/CitySeeder.php | 0 database/seeders/DatabaseSeeder.php | 0 database/seeders/DistrictSeeder.php | 0 database/seeders/DrugSeeder.php | 0 database/seeders/DummyClaimSeeder.php | 0 database/seeders/DummyCorporateSeeder.php | 0 database/seeders/DummyMemberSeeder.php | 0 database/seeders/IcdSeeder.php | 0 database/seeders/IngestProviderSeeder.php | 0 database/seeders/JadwalDokterSeeder.php | 0 database/seeders/OrganizationSeeder.php | 0 database/seeders/PractitionerRoleDummySeeder.php | 0 database/seeders/PractitionerSeeder.php | 0 database/seeders/PriceSeeder.php | 0 database/seeders/PricesJadwalDokter.php | 0 database/seeders/ProvinceSeeder.php | 0 database/seeders/RoleSeeder.php | 0 database/seeders/ServiceSeeder.php | 0 database/seeders/SpecialitiesSeeder.php | 0 database/seeders/UpdateOrganizationCities.php | 0 database/seeders/VillageSeeder.php | 0 frontend/.DS_Store | Bin frontend/client-portal/.env.development | 0 frontend/client-portal/.env.production | 0 frontend/client-portal/.eslintignore | 0 frontend/client-portal/.eslintrc | 0 frontend/client-portal/.gitignore | 0 frontend/client-portal/.htaccess | 0 frontend/client-portal/.pnpm-debug.log | 0 frontend/client-portal/.prettierrc | 0 frontend/client-portal/index.html | 0 frontend/client-portal/package-lock.json | 0 frontend/client-portal/package.json | 0 frontend/client-portal/pnpm-lock.yaml | 0 frontend/client-portal/public/_redirects | 0 .../public/favicon/android-chrome-192x192.png | Bin .../public/favicon/android-chrome-512x512.png | Bin .../public/favicon/apple-touch-icon.png | Bin .../client-portal/public/favicon/favicon-16x16.png | Bin .../client-portal/public/favicon/favicon-32x32.png | Bin frontend/client-portal/public/favicon/favicon.ico | Bin .../client-portal/public/fonts/CircularStd-Bold.otf | Bin .../client-portal/public/fonts/CircularStd-Book.otf | Bin .../public/fonts/CircularStd-Medium.otf | Bin frontend/client-portal/public/fonts/Roboto-Bold.ttf | Bin .../client-portal/public/fonts/Roboto-Regular.ttf | Bin frontend/client-portal/public/fonts/index.css | 0 .../client-portal/public/icons/ic_analytics.svg | 0 frontend/client-portal/public/icons/ic_banking.svg | 0 frontend/client-portal/public/icons/ic_blog.svg | 0 frontend/client-portal/public/icons/ic_booking.svg | 0 frontend/client-portal/public/icons/ic_calendar.svg | 0 frontend/client-portal/public/icons/ic_cart.svg | 0 frontend/client-portal/public/icons/ic_chat.svg | 0 .../client-portal/public/icons/ic_dashboard.svg | 0 .../client-portal/public/icons/ic_ecommerce.svg | 0 frontend/client-portal/public/icons/ic_kanban.svg | 0 frontend/client-portal/public/icons/ic_mail.svg | 0 frontend/client-portal/public/icons/ic_user.svg | 0 .../public/images/husband-user-profile.png | Bin .../client-portal/public/images/login-image.mp4 | Bin .../client-portal/public/images/login-image.webm | Bin frontend/client-portal/public/images/member.png | Bin .../client-portal/public/images/user-profile.png | Bin .../client-portal/public/logo/logo-linksehat.png | Bin frontend/client-portal/public/logo/logo_full.jpg | Bin frontend/client-portal/public/logo/logo_full.svg | 0 frontend/client-portal/public/logo/logo_single.svg | 0 frontend/client-portal/public/manifest.json | 0 frontend/client-portal/public/robots.txt | 0 frontend/client-portal/src/@types/auth.ts | 0 frontend/client-portal/src/@types/blog.ts | 0 frontend/client-portal/src/@types/calendar.ts | 0 frontend/client-portal/src/@types/chat.ts | 0 frontend/client-portal/src/@types/claim.ts | 0 frontend/client-portal/src/@types/diagnosis.ts | 0 frontend/client-portal/src/@types/invoice.ts | 0 frontend/client-portal/src/@types/kanban.ts | 0 frontend/client-portal/src/@types/mail.ts | 0 frontend/client-portal/src/@types/member.ts | 0 frontend/client-portal/src/@types/paginated-data.ts | 0 frontend/client-portal/src/@types/policy.ts | 0 frontend/client-portal/src/@types/product.ts | 0 frontend/client-portal/src/@types/table.ts | 0 frontend/client-portal/src/@types/user.ts | 0 frontend/client-portal/src/App.tsx | 0 frontend/client-portal/src/_mock/_analytics.tsx | 0 frontend/client-portal/src/_mock/_app.ts | 0 frontend/client-portal/src/_mock/_banking.ts | 0 frontend/client-portal/src/_mock/_booking.ts | 0 frontend/client-portal/src/_mock/_countries.ts | 0 frontend/client-portal/src/_mock/_ecommerce.ts | 0 frontend/client-portal/src/_mock/_mock.ts | 0 frontend/client-portal/src/_mock/_others.ts | 0 frontend/client-portal/src/_mock/_plans.tsx | 0 frontend/client-portal/src/_mock/_top100Films.ts | 0 frontend/client-portal/src/_mock/_user.ts | 0 frontend/client-portal/src/_mock/address.ts | 0 frontend/client-portal/src/_mock/boolean.ts | 0 frontend/client-portal/src/_mock/company.ts | 0 frontend/client-portal/src/_mock/email.ts | 0 frontend/client-portal/src/_mock/funcs.ts | 0 frontend/client-portal/src/_mock/index.ts | 0 frontend/client-portal/src/_mock/map/cities.ts | 0 frontend/client-portal/src/_mock/map/countries.ts | 0 .../src/_mock/map/map-style-basic-v8.json | 0 frontend/client-portal/src/_mock/map/stations.ts | 0 frontend/client-portal/src/_mock/name.ts | 0 frontend/client-portal/src/_mock/number.ts | 0 frontend/client-portal/src/_mock/phoneNumber.ts | 0 frontend/client-portal/src/_mock/role.ts | 0 frontend/client-portal/src/_mock/text.ts | 0 .../client-portal/src/assets/icon_plan_free.tsx | 0 .../client-portal/src/assets/icon_plan_premium.tsx | 0 .../client-portal/src/assets/icon_plan_starter.tsx | 0 frontend/client-portal/src/assets/icon_sent.tsx | 0 .../client-portal/src/assets/illustration_404.tsx | 0 .../client-portal/src/assets/illustration_500.tsx | 0 .../src/assets/illustration_booking.tsx | 0 .../src/assets/illustration_checkin.tsx | 0 .../src/assets/illustration_checkout.tsx | 0 .../src/assets/illustration_coming_soon.tsx | 0 .../client-portal/src/assets/illustration_doc.tsx | 0 .../src/assets/illustration_maintenance.tsx | 0 .../src/assets/illustration_motivation.tsx | 0 .../src/assets/illustration_order_complete.tsx | 0 .../client-portal/src/assets/illustration_seo.tsx | 0 .../src/assets/illustration_upload.tsx | 0 frontend/client-portal/src/assets/index.ts | 0 .../client-portal/src/components/BadgeStatus.tsx | 0 .../client-portal/src/components/BasePagination.tsx | 0 .../src/components/BaseTablePagination.tsx | 0 .../client-portal/src/components/Breadcrumbs.tsx | 0 .../src/components/HeaderBreadcrumbs.tsx | 0 frontend/client-portal/src/components/Iconify.tsx | 0 frontend/client-portal/src/components/Image.tsx | 0 .../client-portal/src/components/LaravelTable.tsx | 0 .../client-portal/src/components/LoadingScreen.tsx | 0 frontend/client-portal/src/components/Logo.tsx | 0 .../client-portal/src/components/MenuPopover.tsx | 0 frontend/client-portal/src/components/MuiDialog.tsx | 0 frontend/client-portal/src/components/Page.tsx | 0 frontend/client-portal/src/components/Popup.tsx | 0 .../client-portal/src/components/ProgressBar.tsx | 0 frontend/client-portal/src/components/RtlLayout.tsx | 0 .../client-portal/src/components/ScrollToTop.ts | 0 frontend/client-portal/src/components/Scrollbar.tsx | 0 .../client-portal/src/components/SvgIconStyle.tsx | 0 frontend/client-portal/src/components/Table.tsx | 0 .../src/components/ThemeColorPresets.tsx | 0 .../src/components/animate/DialogAnimate.tsx | 0 .../src/components/animate/FabButtonAnimate.tsx | 0 .../src/components/animate/IconButtonAnimate.tsx | 0 .../src/components/animate/MotionContainer.tsx | 0 .../src/components/animate/MotionInView.tsx | 0 .../src/components/animate/MotionLazyContainer.tsx | 0 .../src/components/animate/TextAnimate.tsx | 0 .../src/components/animate/features.js | 0 .../client-portal/src/components/animate/index.ts | 0 .../client-portal/src/components/animate/type.ts | 0 .../src/components/animate/variants/actions.ts | 0 .../src/components/animate/variants/background.ts | 0 .../src/components/animate/variants/bounce.ts | 0 .../src/components/animate/variants/container.ts | 0 .../src/components/animate/variants/fade.ts | 0 .../src/components/animate/variants/flip.ts | 0 .../src/components/animate/variants/index.ts | 0 .../src/components/animate/variants/path.ts | 0 .../src/components/animate/variants/rotate.ts | 0 .../src/components/animate/variants/scale.ts | 0 .../src/components/animate/variants/slide.ts | 0 .../src/components/animate/variants/transition.ts | 0 .../src/components/animate/variants/zoom.ts | 0 .../src/components/chart/BaseOptionChart.tsx | 0 .../src/components/chart/ChartStyle.tsx | 0 .../client-portal/src/components/chart/index.ts | 0 .../src/components/editor/EditorToolbar.tsx | 0 .../src/components/editor/EditorToolbarStyle.tsx | 0 .../client-portal/src/components/editor/index.tsx | 0 .../src/components/hook-form/FormProvider.tsx | 0 .../src/components/hook-form/RHFCheckbox.tsx | 0 .../src/components/hook-form/RHFDatepicker.tsx | 0 .../src/components/hook-form/RHFEditor.tsx | 0 .../src/components/hook-form/RHFRadioGroup.tsx | 0 .../src/components/hook-form/RHFSelect.tsx | 0 .../src/components/hook-form/RHFSwitch.tsx | 0 .../src/components/hook-form/RHFTextField.tsx | 0 .../src/components/hook-form/RHFUpload.tsx | 0 .../client-portal/src/components/hook-form/index.ts | 0 .../components/nav-section/horizontal/NavItem.tsx | 0 .../components/nav-section/horizontal/NavList.tsx | 0 .../src/components/nav-section/horizontal/index.tsx | 0 .../src/components/nav-section/horizontal/style.ts | 0 .../src/components/nav-section/index.ts | 0 .../src/components/nav-section/type.ts | 0 .../src/components/nav-section/vertical/NavItem.tsx | 0 .../src/components/nav-section/vertical/NavList.tsx | 0 .../src/components/nav-section/vertical/index.tsx | 0 .../src/components/nav-section/vertical/style.ts | 0 .../src/components/settings/SettingColorPresets.tsx | 0 .../src/components/settings/SettingDirection.tsx | 0 .../src/components/settings/SettingFullscreen.tsx | 0 .../src/components/settings/SettingLayout.tsx | 0 .../src/components/settings/SettingMode.tsx | 0 .../src/components/settings/SettingStretch.tsx | 0 .../src/components/settings/ToggleButton.tsx | 0 .../client-portal/src/components/settings/index.tsx | 0 .../client-portal/src/components/settings/type.ts | 0 .../src/components/upload/BlockContent.tsx | 0 .../src/components/upload/MultiFilePreview.tsx | 0 .../src/components/upload/RejectionFiles.tsx | 0 .../src/components/upload/UploadAvatar.tsx | 0 .../src/components/upload/UploadMultiFile.tsx | 0 .../src/components/upload/UploadSingleFile.tsx | 0 .../client-portal/src/components/upload/index.ts | 0 .../client-portal/src/components/upload/type.ts | 0 frontend/client-portal/src/config.ts | 0 .../src/contexts/CollapseDrawerContext.tsx | 0 .../src/contexts/LaravelAuthContext.tsx | 0 .../client-portal/src/contexts/SettingsContext.tsx | 0 .../src/contexts/UserCurrentCorporate.tsx | 0 frontend/client-portal/src/guards/AuthGuard.tsx | 0 frontend/client-portal/src/guards/GuestGuard.tsx | 0 .../client-portal/src/guards/RoleBasedGuard.tsx | 0 frontend/client-portal/src/hooks/useAuth.ts | 0 .../client-portal/src/hooks/useCollapseDrawer.ts | 0 frontend/client-portal/src/hooks/useIsMountedRef.ts | 0 frontend/client-portal/src/hooks/useLocalStorage.ts | 0 frontend/client-portal/src/hooks/useLocales.ts | 0 frontend/client-portal/src/hooks/useMap.ts | 0 frontend/client-portal/src/hooks/useOffSetTop.ts | 0 frontend/client-portal/src/hooks/useResponsive.ts | 0 frontend/client-portal/src/hooks/useSettings.ts | 0 frontend/client-portal/src/hooks/useTable.ts | 0 frontend/client-portal/src/hooks/useTabs.ts | 0 frontend/client-portal/src/hooks/useToggle.ts | 0 frontend/client-portal/src/index.tsx | 0 .../client-portal/src/layouts/LogoOnlyLayout.tsx | 0 .../src/layouts/dashboard/header/AccountPopover.tsx | 0 .../layouts/dashboard/header/ContactsPopover.tsx | 0 .../layouts/dashboard/header/CorporatePopover.tsx | 0 .../layouts/dashboard/header/LanguagePopover.tsx | 0 .../dashboard/header/NotificationsPopover.tsx | 0 .../src/layouts/dashboard/header/Searchbar.tsx | 0 .../src/layouts/dashboard/header/index.tsx | 0 .../client-portal/src/layouts/dashboard/index.tsx | 0 .../src/layouts/dashboard/navbar/CollapseButton.tsx | 0 .../src/layouts/dashboard/navbar/NavConfig.tsx | 0 .../src/layouts/dashboard/navbar/NavbarAccount.tsx | 0 .../src/layouts/dashboard/navbar/NavbarDocs.tsx | 0 .../layouts/dashboard/navbar/NavbarHorizontal.tsx | 0 .../src/layouts/dashboard/navbar/NavbarVertical.tsx | 0 .../client-portal/src/pages/AlarmCenter/Index.tsx | 0 .../client-portal/src/pages/AlarmCenter/List.tsx | 0 .../src/pages/AlarmCenter/ServiceMonitoring.tsx | 0 .../src/pages/AlarmCenter/UserProfile.tsx | 0 .../client-portal/src/pages/ClaimReport/Index.tsx | 0 .../client-portal/src/pages/Claims/CreateUpdate.tsx | 0 frontend/client-portal/src/pages/Claims/Form.tsx | 0 frontend/client-portal/src/pages/Claims/Index.tsx | 0 frontend/client-portal/src/pages/Claims/List.tsx | 0 frontend/client-portal/src/pages/Claims/Show.tsx | 0 .../src/pages/Claims/components/ClaimItems.tsx | 0 .../pages/Claims/components/DiagnosisHistory.tsx | 0 .../pages/Claims/components/DialogMemberBenefit.tsx | 0 .../src/pages/Claims/components/Documents.tsx | 0 .../client-portal/src/pages/Dashboard/Index.tsx | 0 frontend/client-portal/src/pages/Page404.tsx | 0 frontend/client-portal/src/pages/auth/Login.tsx | 0 frontend/client-portal/src/react-app-env.d.ts | 0 frontend/client-portal/src/routes/index.tsx | 0 frontend/client-portal/src/routes/paths.ts | 0 .../user-profile/CardBenefitSummary.tsx | 0 .../alarm-center/user-profile/CardClaimHistory.tsx | 0 .../user-profile/CardFamilyInformation.tsx | 0 .../user-profile/CardPersonalInformation.tsx | 0 .../alarm-center/user-profile/CardPolicyNumber.tsx | 0 .../src/sections/auth/AuthFirebaseSocial.tsx | 0 .../src/sections/auth/login/LoginEmailForm.tsx | 0 .../src/sections/auth/login/LoginPhoneForm.tsx | 0 .../src/sections/auth/login/VerifyCodeForm.tsx | 0 .../client-portal/src/sections/auth/login/index.ts | 0 .../src/sections/claim-report/CardClaimStatus.tsx | 0 .../src/sections/dashboard/CardNotification.tsx | 0 .../src/sections/dashboard/CardPolicy.tsx | 0 .../sections/dashboard/DialogClaimSubmitMember.tsx | 0 .../dashboard/DialogClaimSubmitMemberSubmission.tsx | 0 .../src/sections/dashboard/DialogDetailClaim.tsx | 0 .../src/sections/dashboard/DialogNotification.tsx | 0 .../src/sections/dashboard/DialogTopUpLimit.tsx | 0 frontend/client-portal/src/theme/breakpoints.ts | 0 frontend/client-portal/src/theme/index.tsx | 0 .../client-portal/src/theme/overrides/Accordion.ts | 0 .../client-portal/src/theme/overrides/Alert.tsx | 0 .../src/theme/overrides/Autocomplete.ts | 0 .../client-portal/src/theme/overrides/Avatar.ts | 0 .../client-portal/src/theme/overrides/Backdrop.ts | 0 frontend/client-portal/src/theme/overrides/Badge.ts | 0 .../src/theme/overrides/Breadcrumbs.ts | 0 .../client-portal/src/theme/overrides/Button.ts | 0 .../src/theme/overrides/ButtonGroup.ts | 0 frontend/client-portal/src/theme/overrides/Card.ts | 0 .../client-portal/src/theme/overrides/Checkbox.tsx | 0 frontend/client-portal/src/theme/overrides/Chip.tsx | 0 .../src/theme/overrides/ControlLabel.ts | 0 .../src/theme/overrides/CssBaseline.ts | 0 .../src/theme/overrides/CustomIcons.tsx | 0 .../client-portal/src/theme/overrides/DataGrid.ts | 0 .../client-portal/src/theme/overrides/Dialog.ts | 0 .../client-portal/src/theme/overrides/Drawer.ts | 0 frontend/client-portal/src/theme/overrides/Fab.ts | 0 frontend/client-portal/src/theme/overrides/Input.ts | 0 frontend/client-portal/src/theme/overrides/Link.ts | 0 frontend/client-portal/src/theme/overrides/List.ts | 0 .../src/theme/overrides/LoadingButton.ts | 0 frontend/client-portal/src/theme/overrides/Menu.ts | 0 .../client-portal/src/theme/overrides/Pagination.ts | 0 frontend/client-portal/src/theme/overrides/Paper.ts | 0 .../client-portal/src/theme/overrides/Popover.ts | 0 .../client-portal/src/theme/overrides/Progress.ts | 0 frontend/client-portal/src/theme/overrides/Radio.ts | 0 .../client-portal/src/theme/overrides/Rating.tsx | 0 .../client-portal/src/theme/overrides/Select.tsx | 0 .../client-portal/src/theme/overrides/Skeleton.ts | 0 .../client-portal/src/theme/overrides/Slider.ts | 0 .../client-portal/src/theme/overrides/Stepper.ts | 0 .../client-portal/src/theme/overrides/SvgIcon.ts | 0 .../client-portal/src/theme/overrides/Switch.ts | 0 frontend/client-portal/src/theme/overrides/Table.ts | 0 frontend/client-portal/src/theme/overrides/Tabs.ts | 0 .../client-portal/src/theme/overrides/Timeline.ts | 0 .../src/theme/overrides/ToggleButton.ts | 0 .../client-portal/src/theme/overrides/Tooltip.ts | 0 .../client-portal/src/theme/overrides/TreeView.tsx | 0 .../client-portal/src/theme/overrides/Typography.ts | 0 frontend/client-portal/src/theme/overrides/index.ts | 0 frontend/client-portal/src/theme/palette.ts | 0 frontend/client-portal/src/theme/shadows.ts | 0 frontend/client-portal/src/theme/typography.ts | 0 frontend/client-portal/src/utils/axios.ts | 0 frontend/client-portal/src/utils/cssStyles.ts | 0 frontend/client-portal/src/utils/formatNumber.ts | 0 frontend/client-portal/src/utils/formatTime.ts | 0 frontend/client-portal/src/utils/getColorPresets.ts | 0 frontend/client-portal/src/utils/getFontValue.ts | 0 frontend/client-portal/src/utils/token.ts | 0 frontend/client-portal/tsconfig.json | 0 frontend/client-portal/vite.config.ts | 0 frontend/client-portal/yarn.lock | 0 frontend/dashboard/.env.development | 0 frontend/dashboard/.env.production | 0 frontend/dashboard/.env.staging | 0 frontend/dashboard/.eslintignore | 0 frontend/dashboard/.eslintrc | 0 frontend/dashboard/.gitignore | 0 frontend/dashboard/.htaccess | 0 frontend/dashboard/.pnpm-debug.log | 0 frontend/dashboard/.prettierrc | 0 frontend/dashboard/index.html | 0 frontend/dashboard/package-lock.json | 0 frontend/dashboard/package.json | 0 frontend/dashboard/pnpm-lock.yaml | 0 frontend/dashboard/public/_redirects | 0 .../public/favicon/android-chrome-192x192.png | Bin .../public/favicon/android-chrome-512x512.png | Bin .../dashboard/public/favicon/apple-touch-icon.png | Bin frontend/dashboard/public/favicon/favicon-16x16.png | Bin frontend/dashboard/public/favicon/favicon-32x32.png | Bin frontend/dashboard/public/favicon/favicon.ico | Bin .../dashboard/public/fonts/CircularStd-Bold.otf | Bin .../dashboard/public/fonts/CircularStd-Book.otf | Bin .../dashboard/public/fonts/CircularStd-Medium.otf | Bin frontend/dashboard/public/fonts/Roboto-Bold.ttf | Bin frontend/dashboard/public/fonts/Roboto-Regular.ttf | Bin frontend/dashboard/public/fonts/index.css | 0 frontend/dashboard/public/icons/ic_analytics.svg | 0 frontend/dashboard/public/icons/ic_banking.svg | 0 frontend/dashboard/public/icons/ic_blog.svg | 0 frontend/dashboard/public/icons/ic_booking.svg | 0 frontend/dashboard/public/icons/ic_calendar.svg | 0 frontend/dashboard/public/icons/ic_cart.svg | 0 frontend/dashboard/public/icons/ic_chat.svg | 0 frontend/dashboard/public/icons/ic_dashboard.svg | 0 frontend/dashboard/public/icons/ic_ecommerce.svg | 0 frontend/dashboard/public/icons/ic_kanban.svg | 0 frontend/dashboard/public/icons/ic_mail.svg | 0 frontend/dashboard/public/icons/ic_user.svg | 0 frontend/dashboard/public/image/overlay.png | Bin frontend/dashboard/public/logo/logo-linksehat.png | Bin frontend/dashboard/public/logo/logo_full.jpg | Bin frontend/dashboard/public/logo/logo_full.svg | 0 frontend/dashboard/public/logo/logo_single.svg | 0 frontend/dashboard/public/manifest.json | 0 frontend/dashboard/public/robots.txt | 0 frontend/dashboard/src/@types/auth.ts | 0 frontend/dashboard/src/@types/blog.ts | 0 frontend/dashboard/src/@types/calendar.ts | 0 frontend/dashboard/src/@types/chat.ts | 0 frontend/dashboard/src/@types/corporates.ts | 0 frontend/dashboard/src/@types/diagnosis.ts | 0 frontend/dashboard/src/@types/doctor.tsx | 0 frontend/dashboard/src/@types/invoice.ts | 0 frontend/dashboard/src/@types/kanban.ts | 0 frontend/dashboard/src/@types/mail.ts | 0 frontend/dashboard/src/@types/member.ts | 0 frontend/dashboard/src/@types/organization.tsx | 0 frontend/dashboard/src/@types/paginated-data.ts | 0 frontend/dashboard/src/@types/product.ts | 0 frontend/dashboard/src/@types/user.ts | 0 frontend/dashboard/src/App.tsx | 0 frontend/dashboard/src/_mock/_analytics.tsx | 0 frontend/dashboard/src/_mock/_app.ts | 0 frontend/dashboard/src/_mock/_banking.ts | 0 frontend/dashboard/src/_mock/_booking.ts | 0 frontend/dashboard/src/_mock/_countries.ts | 0 frontend/dashboard/src/_mock/_ecommerce.ts | 0 frontend/dashboard/src/_mock/_mock.ts | 0 frontend/dashboard/src/_mock/_others.ts | 0 frontend/dashboard/src/_mock/_plans.tsx | 0 frontend/dashboard/src/_mock/_top100Films.ts | 0 frontend/dashboard/src/_mock/_user.ts | 0 frontend/dashboard/src/_mock/address.ts | 0 frontend/dashboard/src/_mock/boolean.ts | 0 frontend/dashboard/src/_mock/company.ts | 0 frontend/dashboard/src/_mock/email.ts | 0 frontend/dashboard/src/_mock/funcs.ts | 0 frontend/dashboard/src/_mock/index.ts | 0 frontend/dashboard/src/_mock/map/cities.ts | 0 frontend/dashboard/src/_mock/map/countries.ts | 0 .../dashboard/src/_mock/map/map-style-basic-v8.json | 0 frontend/dashboard/src/_mock/map/stations.ts | 0 frontend/dashboard/src/_mock/name.ts | 0 frontend/dashboard/src/_mock/number.ts | 0 frontend/dashboard/src/_mock/phoneNumber.ts | 0 frontend/dashboard/src/_mock/role.ts | 0 frontend/dashboard/src/_mock/text.ts | 0 frontend/dashboard/src/assets/icon_plan_free.tsx | 0 frontend/dashboard/src/assets/icon_plan_premium.tsx | 0 frontend/dashboard/src/assets/icon_plan_starter.tsx | 0 frontend/dashboard/src/assets/icon_sent.tsx | 0 frontend/dashboard/src/assets/illustration_404.tsx | 0 frontend/dashboard/src/assets/illustration_500.tsx | 0 .../dashboard/src/assets/illustration_booking.tsx | 0 .../dashboard/src/assets/illustration_checkin.tsx | 0 .../dashboard/src/assets/illustration_checkout.tsx | 0 .../src/assets/illustration_coming_soon.tsx | 0 frontend/dashboard/src/assets/illustration_doc.tsx | 0 .../src/assets/illustration_maintenance.tsx | 0 .../src/assets/illustration_motivation.tsx | 0 .../src/assets/illustration_order_complete.tsx | 0 frontend/dashboard/src/assets/illustration_seo.tsx | 0 .../dashboard/src/assets/illustration_upload.tsx | 0 frontend/dashboard/src/assets/index.ts | 0 frontend/dashboard/src/components/BadgeStatus.tsx | 0 .../dashboard/src/components/BasePagination.tsx | 0 frontend/dashboard/src/components/Breadcrumbs.tsx | 0 .../dashboard/src/components/HeaderBreadcrumbs.tsx | 0 frontend/dashboard/src/components/Iconify.tsx | 0 frontend/dashboard/src/components/Image.tsx | 0 frontend/dashboard/src/components/LaravelTable.tsx | 0 frontend/dashboard/src/components/LoadingScreen.tsx | 0 frontend/dashboard/src/components/Logo.tsx | 0 frontend/dashboard/src/components/MenuPopover.tsx | 0 frontend/dashboard/src/components/MuiDialog.tsx | 0 frontend/dashboard/src/components/MyDropzone.tsx | 0 frontend/dashboard/src/components/Page.tsx | 0 frontend/dashboard/src/components/ProgressBar.tsx | 0 frontend/dashboard/src/components/RtlLayout.tsx | 0 frontend/dashboard/src/components/ScrollToTop.ts | 0 frontend/dashboard/src/components/Scrollbar.tsx | 0 frontend/dashboard/src/components/SvgIconStyle.tsx | 0 .../dashboard/src/components/ThemeColorPresets.tsx | 0 frontend/dashboard/src/components/UploadImage.tsx | 0 .../src/components/animate/DialogAnimate.tsx | 0 .../src/components/animate/FabButtonAnimate.tsx | 0 .../src/components/animate/IconButtonAnimate.tsx | 0 .../src/components/animate/MotionContainer.tsx | 0 .../src/components/animate/MotionInView.tsx | 0 .../src/components/animate/MotionLazyContainer.tsx | 0 .../src/components/animate/TextAnimate.tsx | 0 .../dashboard/src/components/animate/features.js | 0 frontend/dashboard/src/components/animate/index.ts | 0 frontend/dashboard/src/components/animate/type.ts | 0 .../src/components/animate/variants/actions.ts | 0 .../src/components/animate/variants/background.ts | 0 .../src/components/animate/variants/bounce.ts | 0 .../src/components/animate/variants/container.ts | 0 .../src/components/animate/variants/fade.ts | 0 .../src/components/animate/variants/flip.ts | 0 .../src/components/animate/variants/index.ts | 0 .../src/components/animate/variants/path.ts | 0 .../src/components/animate/variants/rotate.ts | 0 .../src/components/animate/variants/scale.ts | 0 .../src/components/animate/variants/slide.ts | 0 .../src/components/animate/variants/transition.ts | 0 .../src/components/animate/variants/zoom.ts | 0 .../autocomplete/AutocompleteDiagnosis.tsx | 0 .../AutocompleteDiagnosisControlled.tsx | 0 .../components/autocomplete/AutocompleteDoctor.tsx | 0 .../autocomplete/AutocompleteHealthcare.tsx | 0 .../AutocompleteLinksehatHealthcare.tsx | 0 .../src/components/chart/BaseOptionChart.tsx | 0 .../dashboard/src/components/chart/ChartStyle.tsx | 0 frontend/dashboard/src/components/chart/index.ts | 0 .../src/components/dialogs/DialogDetailClaim.tsx | 0 .../src/components/dialogs/MemberSelectDialog.tsx | 0 .../src/components/editor/EditorToolbar.tsx | 0 .../src/components/editor/EditorToolbarStyle.tsx | 0 frontend/dashboard/src/components/editor/index.tsx | 0 .../src/components/hook-form/FormProvider.tsx | 0 .../src/components/hook-form/RHFAutocomplete.tsx | 0 .../src/components/hook-form/RHFCheckbox.tsx | 0 .../src/components/hook-form/RHFDatepicker.tsx | 0 .../src/components/hook-form/RHFEditor.tsx | 0 .../src/components/hook-form/RHFRadioGroup.tsx | 0 .../src/components/hook-form/RHFSelect.tsx | 0 .../src/components/hook-form/RHFSwitch.tsx | 0 .../src/components/hook-form/RHFTextField.tsx | 0 .../src/components/hook-form/RHFUpload.tsx | 0 .../dashboard/src/components/hook-form/index.ts | 0 .../components/nav-section/horizontal/NavItem.tsx | 0 .../components/nav-section/horizontal/NavList.tsx | 0 .../src/components/nav-section/horizontal/index.tsx | 0 .../src/components/nav-section/horizontal/style.ts | 0 .../dashboard/src/components/nav-section/index.ts | 0 .../dashboard/src/components/nav-section/type.ts | 0 .../src/components/nav-section/vertical/NavItem.tsx | 0 .../src/components/nav-section/vertical/NavList.tsx | 0 .../src/components/nav-section/vertical/index.tsx | 0 .../src/components/nav-section/vertical/style.ts | 0 .../src/components/settings/SettingColorPresets.tsx | 0 .../src/components/settings/SettingDirection.tsx | 0 .../src/components/settings/SettingFullscreen.tsx | 0 .../src/components/settings/SettingLayout.tsx | 0 .../src/components/settings/SettingMode.tsx | 0 .../src/components/settings/SettingStretch.tsx | 0 .../src/components/settings/ToggleButton.tsx | 0 .../dashboard/src/components/settings/index.tsx | 0 frontend/dashboard/src/components/settings/type.ts | 0 .../src/components/upload/BlockContent.tsx | 0 .../src/components/upload/MultiFilePreview.tsx | 0 .../src/components/upload/RejectionFiles.tsx | 0 .../src/components/upload/UploadAvatar.tsx | 0 .../src/components/upload/UploadMultiFile.tsx | 0 .../src/components/upload/UploadSingleFile.tsx | 0 frontend/dashboard/src/components/upload/index.ts | 0 frontend/dashboard/src/components/upload/type.ts | 0 frontend/dashboard/src/config.ts | 0 .../src/contexts/CollapseDrawerContext.tsx | 0 .../src/contexts/ConfiguredCorporateContext.tsx | 0 .../dashboard/src/contexts/LaravelAuthContext.tsx | 0 frontend/dashboard/src/contexts/SettingsContext.tsx | 0 frontend/dashboard/src/guards/AuthGuard.tsx | 0 frontend/dashboard/src/guards/GuestGuard.tsx | 0 frontend/dashboard/src/guards/RoleBasedGuard.tsx | 0 frontend/dashboard/src/hooks/useAuth.ts | 0 frontend/dashboard/src/hooks/useCollapseDrawer.ts | 0 frontend/dashboard/src/hooks/useIsMountedRef.ts | 0 frontend/dashboard/src/hooks/useLocalStorage.ts | 0 frontend/dashboard/src/hooks/useLocales.ts | 0 frontend/dashboard/src/hooks/useOffSetTop.ts | 0 frontend/dashboard/src/hooks/useResponsive.ts | 0 frontend/dashboard/src/hooks/useSettings.ts | 0 frontend/dashboard/src/hooks/useTable.ts | 0 frontend/dashboard/src/hooks/useTabs.ts | 0 frontend/dashboard/src/hooks/useToggle.ts | 0 frontend/dashboard/src/index.tsx | 0 frontend/dashboard/src/layouts/LogoOnlyLayout.tsx | 0 .../dashboard/corporate/CorporateConfigLayout.tsx | 0 .../src/layouts/dashboard/header/AccountPopover.tsx | 0 .../layouts/dashboard/header/ContactsPopover.tsx | 0 .../layouts/dashboard/header/LanguagePopover.tsx | 0 .../dashboard/header/NotificationsPopover.tsx | 0 .../src/layouts/dashboard/header/Searchbar.tsx | 0 .../src/layouts/dashboard/header/index.tsx | 0 frontend/dashboard/src/layouts/dashboard/index.tsx | 0 .../src/layouts/dashboard/navbar/CollapseButton.tsx | 0 .../src/layouts/dashboard/navbar/NavConfig.tsx | 0 .../src/layouts/dashboard/navbar/NavbarAccount.tsx | 0 .../src/layouts/dashboard/navbar/NavbarDocs.tsx | 0 .../layouts/dashboard/navbar/NavbarHorizontal.tsx | 0 .../src/layouts/dashboard/navbar/NavbarVertical.tsx | 0 .../src/pages/ClaimRequests/CreateUpdate.tsx | 0 frontend/dashboard/src/pages/ClaimRequests/Form.tsx | 0 .../dashboard/src/pages/ClaimRequests/Index.tsx | 0 frontend/dashboard/src/pages/ClaimRequests/List.tsx | 0 .../dashboard/src/pages/Claims/CreateUpdate.tsx | 0 frontend/dashboard/src/pages/Claims/Form.tsx | 0 frontend/dashboard/src/pages/Claims/Index.tsx | 0 frontend/dashboard/src/pages/Claims/List.tsx | 0 frontend/dashboard/src/pages/Claims/Show.tsx | 0 .../src/pages/Claims/components/ClaimDetail.tsx | 0 .../src/pages/Claims/components/ClaimItems.tsx | 0 .../pages/Claims/components/DiagnosisHistory.tsx | 0 .../Claims/components/DialogDocumentRequest.tsx | 0 .../Claims/components/DialogHistoryPerawatan.tsx | 0 .../pages/Claims/components/DialogMemberBenefit.tsx | 0 .../src/pages/Claims/components/Documents.tsx | 0 .../Claims/components/FormHistoryPerawatan.tsx | 0 .../src/pages/Corporates/Benefit/Create.tsx | 0 .../dashboard/src/pages/Corporates/Benefit/Form.tsx | 0 .../src/pages/Corporates/Benefit/Index.tsx | 0 .../dashboard/src/pages/Corporates/Benefit/List.tsx | 0 .../pages/Corporates/Benefit/sections/DialogLog.tsx | 0 .../pages/Corporates/ClaimHistory/CreateUpdate.tsx | 0 .../src/pages/Corporates/ClaimHistory/Form.tsx | 0 .../src/pages/Corporates/ClaimHistory/Index.tsx | 0 .../src/pages/Corporates/ClaimHistory/List.tsx | 0 .../dashboard/src/pages/Corporates/ConfigLayout.tsx | 0 .../pages/Corporates/CorporateBenefit/Create.tsx | 0 .../Corporates/CorporateBenefit/CreateUpdate.tsx | 0 .../src/pages/Corporates/CorporateBenefit/Form.tsx | 0 .../src/pages/Corporates/CorporateBenefit/Index.tsx | 0 .../src/pages/Corporates/CorporateBenefit/List.tsx | 0 .../pages/Corporates/CorporatePlan/CreateUpdate.tsx | 0 .../src/pages/Corporates/CorporatePlan/Form.tsx | 0 .../src/pages/Corporates/CorporatePlan/Index.tsx | 0 .../src/pages/Corporates/CorporatePlan/List.tsx | 0 .../pages/Corporates/CorporateTabNavigations.tsx | 0 .../dashboard/src/pages/Corporates/CreateUpdate.tsx | 0 .../pages/Corporates/DiagnosisExclusion/Create.tsx | 0 .../pages/Corporates/DiagnosisExclusion/Index.tsx | 0 .../pages/Corporates/DiagnosisExclusion/List.tsx | 0 .../src/pages/Corporates/Division/CreateUpdate.tsx | 0 .../src/pages/Corporates/Division/Form.tsx | 0 .../src/pages/Corporates/Division/Index.tsx | 0 .../src/pages/Corporates/Division/List.tsx | 0 frontend/dashboard/src/pages/Corporates/Form.tsx | 0 .../src/pages/Corporates/Formularium/Index.tsx | 0 .../src/pages/Corporates/Formularium/List.tsx | 0 .../src/pages/Corporates/Hospital/CreateUpdate.tsx | 0 .../src/pages/Corporates/Hospital/Form.tsx | 0 .../src/pages/Corporates/Hospital/Index.tsx | 0 .../src/pages/Corporates/Hospital/List.tsx | 0 frontend/dashboard/src/pages/Corporates/Index.tsx | 0 .../src/pages/Corporates/Member/Create.tsx | 0 .../dashboard/src/pages/Corporates/Member/Index.tsx | 0 .../dashboard/src/pages/Corporates/Member/List.tsx | 0 .../pages/Corporates/Member/sections/DialogLog.tsx | 0 .../dashboard/src/pages/Corporates/Plan/Create.tsx | 0 .../dashboard/src/pages/Corporates/Plan/Index.tsx | 0 .../dashboard/src/pages/Corporates/Plan/List.tsx | 0 .../pages/Corporates/Plan/sections/DialogLog.tsx | 0 .../src/pages/Corporates/Services/Create.tsx | 0 .../src/pages/Corporates/Services/Index.tsx | 0 .../src/pages/Corporates/Services/List.tsx | 0 .../Corporates/Services/sections/DialogLog.tsx | 0 frontend/dashboard/src/pages/Corporates/Show.tsx | 0 frontend/dashboard/src/pages/Dashboard.tsx | 0 .../dashboard/src/pages/Master/Diagnosis/Create.tsx | 0 .../dashboard/src/pages/Master/Diagnosis/Index.tsx | 0 .../dashboard/src/pages/Master/Diagnosis/List.tsx | 0 .../dashboard/src/pages/Master/Doctors/Create.tsx | 0 .../dashboard/src/pages/Master/Doctors/Form.tsx | 0 .../dashboard/src/pages/Master/Doctors/Index.tsx | 0 .../dashboard/src/pages/Master/Doctors/List.tsx | 0 frontend/dashboard/src/pages/Master/Drug/Create.tsx | 0 frontend/dashboard/src/pages/Master/Drug/Index.tsx | 0 frontend/dashboard/src/pages/Master/Drug/List.tsx | 0 .../src/pages/Master/Formularium/Create.tsx | 0 .../dashboard/src/pages/Master/Formularium/Form.tsx | 0 .../src/pages/Master/Formularium/Index.tsx | 0 .../dashboard/src/pages/Master/Formularium/List.tsx | 0 .../dashboard/src/pages/Master/Hospitals/Create.tsx | 0 .../dashboard/src/pages/Master/Hospitals/Form.tsx | 0 .../dashboard/src/pages/Master/Hospitals/Index.tsx | 0 .../dashboard/src/pages/Master/Hospitals/List.tsx | 0 frontend/dashboard/src/pages/Medicines/Create.tsx | 0 frontend/dashboard/src/pages/Members/Index.tsx | 0 frontend/dashboard/src/pages/Page404.tsx | 0 .../dashboard/src/pages/Profile/FormPassword.tsx | 0 frontend/dashboard/src/pages/Profile/Index.tsx | 0 .../src/pages/Report/Appointments/Create.tsx | 0 .../src/pages/Report/Appointments/Form.tsx | 0 .../src/pages/Report/Appointments/Index.tsx | 0 .../src/pages/Report/Appointments/List.tsx | 0 .../src/pages/Report/Appointments/Show.tsx | 0 .../src/pages/Report/Appointments/View.tsx | 0 .../src/pages/Report/LinksehatPayments/Create.tsx | 0 .../src/pages/Report/LinksehatPayments/Form.tsx | 0 .../src/pages/Report/LinksehatPayments/Index.tsx | 0 .../src/pages/Report/LinksehatPayments/List.tsx | 0 .../src/pages/Report/LinksehatPayments/Show.tsx | 0 .../src/pages/Report/LinksehatPayments/View.tsx | 0 .../dashboard/src/pages/Report/Livechat/Create.tsx | 0 .../dashboard/src/pages/Report/Livechat/Form.tsx | 0 .../dashboard/src/pages/Report/Livechat/Index.tsx | 0 .../dashboard/src/pages/Report/Livechat/List.tsx | 0 .../dashboard/src/pages/Report/Livechat/Show.tsx | 0 .../dashboard/src/pages/Report/Livechat/View.tsx | 0 .../dashboard/src/pages/Service/Membership/List.tsx | 0 .../dashboard/src/pages/auth/ForgetPassword.tsx | 0 frontend/dashboard/src/pages/auth/Login.tsx | 0 frontend/dashboard/src/pages/auth/Register.tsx | 0 frontend/dashboard/src/pages/auth/ResetPassword.tsx | 0 frontend/dashboard/src/pages/auth/VerifyCode.tsx | 0 frontend/dashboard/src/react-app-env.d.ts | 0 frontend/dashboard/src/routes/index.tsx | 0 frontend/dashboard/src/routes/paths.ts | 0 .../src/sections/auth/AuthFirebaseSocial.tsx | 0 .../auth/forget-password/ForgetPasswordForm.tsx | 0 .../src/sections/auth/forget-password/index.ts | 0 .../dashboard/src/sections/auth/login/LoginForm.tsx | 0 frontend/dashboard/src/sections/auth/login/index.ts | 0 .../src/sections/auth/register/RegisterForm.tsx | 0 .../dashboard/src/sections/auth/register/index.ts | 0 .../auth/reset-password/ResetPasswordForm.tsx | 0 .../src/sections/auth/reset-password/index.ts | 0 .../sections/auth/verify-code/VerifyCodeForm.tsx | 0 .../src/sections/auth/verify-code/index.ts | 0 .../src/sections/dashboard/SomethingUsage.tsx | 0 frontend/dashboard/src/theme/breakpoints.ts | 0 frontend/dashboard/src/theme/index.tsx | 0 frontend/dashboard/src/theme/overrides/Accordion.ts | 0 frontend/dashboard/src/theme/overrides/Alert.tsx | 0 .../dashboard/src/theme/overrides/Autocomplete.ts | 0 frontend/dashboard/src/theme/overrides/Avatar.ts | 0 frontend/dashboard/src/theme/overrides/Backdrop.ts | 0 frontend/dashboard/src/theme/overrides/Badge.ts | 0 .../dashboard/src/theme/overrides/Breadcrumbs.ts | 0 frontend/dashboard/src/theme/overrides/Button.ts | 0 .../dashboard/src/theme/overrides/ButtonGroup.ts | 0 frontend/dashboard/src/theme/overrides/Card.ts | 0 frontend/dashboard/src/theme/overrides/Checkbox.tsx | 0 frontend/dashboard/src/theme/overrides/Chip.tsx | 0 .../dashboard/src/theme/overrides/ControlLabel.ts | 0 .../dashboard/src/theme/overrides/CssBaseline.ts | 0 .../dashboard/src/theme/overrides/CustomIcons.tsx | 0 frontend/dashboard/src/theme/overrides/DataGrid.ts | 0 frontend/dashboard/src/theme/overrides/Dialog.ts | 0 frontend/dashboard/src/theme/overrides/Drawer.ts | 0 frontend/dashboard/src/theme/overrides/Fab.ts | 0 frontend/dashboard/src/theme/overrides/Input.ts | 0 frontend/dashboard/src/theme/overrides/Link.ts | 0 frontend/dashboard/src/theme/overrides/List.ts | 0 .../dashboard/src/theme/overrides/LoadingButton.ts | 0 frontend/dashboard/src/theme/overrides/Menu.ts | 0 .../dashboard/src/theme/overrides/Pagination.ts | 0 frontend/dashboard/src/theme/overrides/Paper.ts | 0 frontend/dashboard/src/theme/overrides/Popover.ts | 0 frontend/dashboard/src/theme/overrides/Progress.ts | 0 frontend/dashboard/src/theme/overrides/Radio.ts | 0 frontend/dashboard/src/theme/overrides/Rating.tsx | 0 frontend/dashboard/src/theme/overrides/Select.tsx | 0 frontend/dashboard/src/theme/overrides/Skeleton.ts | 0 frontend/dashboard/src/theme/overrides/Slider.ts | 0 frontend/dashboard/src/theme/overrides/Stepper.ts | 0 frontend/dashboard/src/theme/overrides/SvgIcon.ts | 0 frontend/dashboard/src/theme/overrides/Switch.ts | 0 frontend/dashboard/src/theme/overrides/Table.ts | 0 frontend/dashboard/src/theme/overrides/Tabs.ts | 0 frontend/dashboard/src/theme/overrides/Timeline.ts | 0 .../dashboard/src/theme/overrides/ToggleButton.ts | 0 frontend/dashboard/src/theme/overrides/Tooltip.ts | 0 frontend/dashboard/src/theme/overrides/TreeView.tsx | 0 .../dashboard/src/theme/overrides/Typography.ts | 0 frontend/dashboard/src/theme/overrides/index.ts | 0 frontend/dashboard/src/theme/palette.ts | 0 frontend/dashboard/src/theme/shadows.ts | 0 frontend/dashboard/src/theme/typography.ts | 0 frontend/dashboard/src/utils/axios.ts | 0 frontend/dashboard/src/utils/cssStyles.ts | 0 frontend/dashboard/src/utils/formatNumber.ts | 0 frontend/dashboard/src/utils/formatString.ts | 0 frontend/dashboard/src/utils/formatTime.ts | 0 frontend/dashboard/src/utils/getColorPresets.ts | 0 frontend/dashboard/src/utils/getFontValue.ts | 0 frontend/dashboard/src/utils/token.ts | 0 frontend/dashboard/tsconfig.json | 0 frontend/dashboard/vite.config.ts | 0 frontend/dashboard/yarn.lock | 0 frontend/hospital-portal/.env.development | 0 frontend/hospital-portal/.env.staging | 0 frontend/hospital-portal/.eslintignore | 0 frontend/hospital-portal/.eslintrc | 0 frontend/hospital-portal/.gitignore | 0 frontend/hospital-portal/.htaccess | 0 frontend/hospital-portal/.pnpm-debug.log | 0 frontend/hospital-portal/.prettierrc | 0 frontend/hospital-portal/index.html | 0 frontend/hospital-portal/package-lock.json | 0 frontend/hospital-portal/package.json | 0 frontend/hospital-portal/pnpm-lock.yaml | 0 frontend/hospital-portal/public/_redirects | 0 .../public/favicon/android-chrome-192x192.png | Bin .../public/favicon/android-chrome-512x512.png | Bin .../public/favicon/apple-touch-icon.png | Bin .../public/favicon/favicon-16x16.png | Bin .../public/favicon/favicon-32x32.png | Bin frontend/hospital-portal/public/favicon/favicon.ico | Bin .../public/fonts/CircularStd-Bold.otf | Bin .../public/fonts/CircularStd-Book.otf | Bin .../public/fonts/CircularStd-Medium.otf | Bin .../hospital-portal/public/fonts/Roboto-Bold.ttf | Bin .../hospital-portal/public/fonts/Roboto-Regular.ttf | Bin frontend/hospital-portal/public/fonts/index.css | 0 .../hospital-portal/public/icons/ic_analytics.svg | 0 .../hospital-portal/public/icons/ic_banking.svg | 0 frontend/hospital-portal/public/icons/ic_blog.svg | 0 .../hospital-portal/public/icons/ic_booking.svg | 0 .../hospital-portal/public/icons/ic_calendar.svg | 0 frontend/hospital-portal/public/icons/ic_cart.svg | 0 frontend/hospital-portal/public/icons/ic_chat.svg | 0 .../hospital-portal/public/icons/ic_dashboard.svg | 0 .../hospital-portal/public/icons/ic_ecommerce.svg | 0 frontend/hospital-portal/public/icons/ic_kanban.svg | 0 frontend/hospital-portal/public/icons/ic_mail.svg | 0 frontend/hospital-portal/public/icons/ic_user.svg | 0 frontend/hospital-portal/public/image/overlay.png | Bin .../hospital-portal/public/logo/logo-linksehat.png | Bin frontend/hospital-portal/public/logo/logo_full.jpg | Bin frontend/hospital-portal/public/logo/logo_full.svg | 0 .../hospital-portal/public/logo/logo_single.svg | 0 frontend/hospital-portal/public/manifest.json | 0 frontend/hospital-portal/public/robots.txt | 0 frontend/hospital-portal/src/@types/auth.ts | 0 frontend/hospital-portal/src/@types/blog.ts | 0 frontend/hospital-portal/src/@types/calendar.ts | 0 frontend/hospital-portal/src/@types/chat.ts | 0 frontend/hospital-portal/src/@types/corporates.ts | 0 frontend/hospital-portal/src/@types/diagnosis.ts | 0 frontend/hospital-portal/src/@types/doctor.tsx | 0 frontend/hospital-portal/src/@types/invoice.ts | 0 frontend/hospital-portal/src/@types/kanban.ts | 0 frontend/hospital-portal/src/@types/mail.ts | 0 frontend/hospital-portal/src/@types/member.ts | 0 .../hospital-portal/src/@types/organization.tsx | 0 .../hospital-portal/src/@types/paginated-data.ts | 0 frontend/hospital-portal/src/@types/product.ts | 0 frontend/hospital-portal/src/@types/user.ts | 0 frontend/hospital-portal/src/App.tsx | 0 frontend/hospital-portal/src/_mock/_analytics.tsx | 0 frontend/hospital-portal/src/_mock/_app.ts | 0 frontend/hospital-portal/src/_mock/_banking.ts | 0 frontend/hospital-portal/src/_mock/_booking.ts | 0 frontend/hospital-portal/src/_mock/_countries.ts | 0 frontend/hospital-portal/src/_mock/_ecommerce.ts | 0 frontend/hospital-portal/src/_mock/_mock.ts | 0 frontend/hospital-portal/src/_mock/_others.ts | 0 frontend/hospital-portal/src/_mock/_plans.tsx | 0 frontend/hospital-portal/src/_mock/_top100Films.ts | 0 frontend/hospital-portal/src/_mock/_user.ts | 0 frontend/hospital-portal/src/_mock/address.ts | 0 frontend/hospital-portal/src/_mock/boolean.ts | 0 frontend/hospital-portal/src/_mock/company.ts | 0 frontend/hospital-portal/src/_mock/email.ts | 0 frontend/hospital-portal/src/_mock/funcs.ts | 0 frontend/hospital-portal/src/_mock/index.ts | 0 frontend/hospital-portal/src/_mock/map/cities.ts | 0 frontend/hospital-portal/src/_mock/map/countries.ts | 0 .../src/_mock/map/map-style-basic-v8.json | 0 frontend/hospital-portal/src/_mock/map/stations.ts | 0 frontend/hospital-portal/src/_mock/name.ts | 0 frontend/hospital-portal/src/_mock/number.ts | 0 frontend/hospital-portal/src/_mock/phoneNumber.ts | 0 frontend/hospital-portal/src/_mock/role.ts | 0 frontend/hospital-portal/src/_mock/text.ts | 0 .../hospital-portal/src/assets/icon_plan_free.tsx | 0 .../src/assets/icon_plan_premium.tsx | 0 .../src/assets/icon_plan_starter.tsx | 0 frontend/hospital-portal/src/assets/icon_sent.tsx | 0 .../hospital-portal/src/assets/illustration_404.tsx | 0 .../hospital-portal/src/assets/illustration_500.tsx | 0 .../src/assets/illustration_booking.tsx | 0 .../src/assets/illustration_checkin.tsx | 0 .../src/assets/illustration_checkout.tsx | 0 .../src/assets/illustration_coming_soon.tsx | 0 .../hospital-portal/src/assets/illustration_doc.tsx | 0 .../src/assets/illustration_maintenance.tsx | 0 .../src/assets/illustration_motivation.tsx | 0 .../src/assets/illustration_order_complete.tsx | 0 .../hospital-portal/src/assets/illustration_seo.tsx | 0 .../src/assets/illustration_upload.tsx | 0 frontend/hospital-portal/src/assets/index.ts | 0 .../hospital-portal/src/components/BadgeStatus.tsx | 0 .../src/components/BasePagination.tsx | 0 .../src/components/BaseTablePagination.tsx | 0 .../hospital-portal/src/components/Breadcrumbs.tsx | 0 .../src/components/HeaderBreadcrumbs.tsx | 0 frontend/hospital-portal/src/components/Iconify.tsx | 0 frontend/hospital-portal/src/components/Image.tsx | 0 .../hospital-portal/src/components/LaravelTable.tsx | 0 .../src/components/LoadingScreen.tsx | 0 frontend/hospital-portal/src/components/Logo.tsx | 0 .../hospital-portal/src/components/MenuPopover.tsx | 0 .../hospital-portal/src/components/MuiDialog.tsx | 0 .../hospital-portal/src/components/MyDropzone.tsx | 0 frontend/hospital-portal/src/components/Page.tsx | 0 .../hospital-portal/src/components/ProgressBar.tsx | 0 .../hospital-portal/src/components/RtlLayout.tsx | 0 .../hospital-portal/src/components/ScrollToTop.ts | 0 .../hospital-portal/src/components/Scrollbar.tsx | 0 .../hospital-portal/src/components/SvgIconStyle.tsx | 0 .../src/components/ThemeColorPresets.tsx | 0 .../hospital-portal/src/components/UploadImage.tsx | 0 .../src/components/animate/DialogAnimate.tsx | 0 .../src/components/animate/FabButtonAnimate.tsx | 0 .../src/components/animate/IconButtonAnimate.tsx | 0 .../src/components/animate/MotionContainer.tsx | 0 .../src/components/animate/MotionInView.tsx | 0 .../src/components/animate/MotionLazyContainer.tsx | 0 .../src/components/animate/TextAnimate.tsx | 0 .../src/components/animate/features.js | 0 .../hospital-portal/src/components/animate/index.ts | 0 .../hospital-portal/src/components/animate/type.ts | 0 .../src/components/animate/variants/actions.ts | 0 .../src/components/animate/variants/background.ts | 0 .../src/components/animate/variants/bounce.ts | 0 .../src/components/animate/variants/container.ts | 0 .../src/components/animate/variants/fade.ts | 0 .../src/components/animate/variants/flip.ts | 0 .../src/components/animate/variants/index.ts | 0 .../src/components/animate/variants/path.ts | 0 .../src/components/animate/variants/rotate.ts | 0 .../src/components/animate/variants/scale.ts | 0 .../src/components/animate/variants/slide.ts | 0 .../src/components/animate/variants/transition.ts | 0 .../src/components/animate/variants/zoom.ts | 0 .../src/components/chart/BaseOptionChart.tsx | 0 .../src/components/chart/ChartStyle.tsx | 0 .../hospital-portal/src/components/chart/index.ts | 0 .../src/components/dialogs/DialogDetailClaim.tsx | 0 .../src/components/dialogs/MemberSelectDialog.tsx | 0 .../src/components/editor/EditorToolbar.tsx | 0 .../src/components/editor/EditorToolbarStyle.tsx | 0 .../hospital-portal/src/components/editor/index.tsx | 0 .../src/components/hook-form/FormProvider.tsx | 0 .../src/components/hook-form/RHFAutocomplete.tsx | 0 .../src/components/hook-form/RHFCheckbox.tsx | 0 .../src/components/hook-form/RHFDatepicker.tsx | 0 .../src/components/hook-form/RHFEditor.tsx | 0 .../src/components/hook-form/RHFRadioGroup.tsx | 0 .../src/components/hook-form/RHFSelect.tsx | 0 .../src/components/hook-form/RHFSwitch.tsx | 0 .../src/components/hook-form/RHFTextField.tsx | 0 .../src/components/hook-form/RHFUpload.tsx | 0 .../src/components/hook-form/index.ts | 0 .../components/nav-section/horizontal/NavItem.tsx | 0 .../components/nav-section/horizontal/NavList.tsx | 0 .../src/components/nav-section/horizontal/index.tsx | 0 .../src/components/nav-section/horizontal/style.ts | 0 .../src/components/nav-section/index.ts | 0 .../src/components/nav-section/type.ts | 0 .../src/components/nav-section/vertical/NavItem.tsx | 0 .../src/components/nav-section/vertical/NavList.tsx | 0 .../src/components/nav-section/vertical/index.tsx | 0 .../src/components/nav-section/vertical/style.ts | 0 .../src/components/settings/SettingColorPresets.tsx | 0 .../src/components/settings/SettingDirection.tsx | 0 .../src/components/settings/SettingFullscreen.tsx | 0 .../src/components/settings/SettingLayout.tsx | 0 .../src/components/settings/SettingMode.tsx | 0 .../src/components/settings/SettingStretch.tsx | 0 .../src/components/settings/ToggleButton.tsx | 0 .../src/components/settings/index.tsx | 0 .../hospital-portal/src/components/settings/type.ts | 0 .../src/components/upload/BlockContent.tsx | 0 .../src/components/upload/MultiFilePreview.tsx | 0 .../src/components/upload/RejectionFiles.tsx | 0 .../src/components/upload/UploadAvatar.tsx | 0 .../src/components/upload/UploadMultiFile.tsx | 0 .../src/components/upload/UploadSingleFile.tsx | 0 .../hospital-portal/src/components/upload/index.ts | 0 .../hospital-portal/src/components/upload/type.ts | 0 frontend/hospital-portal/src/config.ts | 0 .../src/contexts/CollapseDrawerContext.tsx | 0 .../src/contexts/ConfiguredCorporateContext.tsx | 0 .../src/contexts/LaravelAuthContext.tsx | 0 .../src/contexts/SettingsContext.tsx | 0 frontend/hospital-portal/src/guards/AuthGuard.tsx | 0 frontend/hospital-portal/src/guards/GuestGuard.tsx | 0 .../hospital-portal/src/guards/RoleBasedGuard.tsx | 0 frontend/hospital-portal/src/hooks/useAuth.ts | 0 .../hospital-portal/src/hooks/useCollapseDrawer.ts | 0 .../hospital-portal/src/hooks/useIsMountedRef.ts | 0 .../hospital-portal/src/hooks/useLocalStorage.ts | 0 frontend/hospital-portal/src/hooks/useLocales.ts | 0 frontend/hospital-portal/src/hooks/useOffSetTop.ts | 0 frontend/hospital-portal/src/hooks/useResponsive.ts | 0 frontend/hospital-portal/src/hooks/useSettings.ts | 0 frontend/hospital-portal/src/hooks/useTable.ts | 0 frontend/hospital-portal/src/hooks/useTabs.ts | 0 frontend/hospital-portal/src/hooks/useToggle.ts | 0 frontend/hospital-portal/src/index.tsx | 0 .../hospital-portal/src/layouts/LogoOnlyLayout.tsx | 0 .../dashboard/corporate/CorporateConfigLayout.tsx | 0 .../src/layouts/dashboard/header/AccountPopover.tsx | 0 .../layouts/dashboard/header/ContactsPopover.tsx | 0 .../layouts/dashboard/header/LanguagePopover.tsx | 0 .../dashboard/header/NotificationsPopover.tsx | 0 .../src/layouts/dashboard/header/Searchbar.tsx | 0 .../src/layouts/dashboard/header/index.tsx | 0 .../hospital-portal/src/layouts/dashboard/index.tsx | 0 .../src/layouts/dashboard/navbar/CollapseButton.tsx | 0 .../src/layouts/dashboard/navbar/NavConfig.tsx | 0 .../src/layouts/dashboard/navbar/NavbarAccount.tsx | 0 .../src/layouts/dashboard/navbar/NavbarDocs.tsx | 0 .../layouts/dashboard/navbar/NavbarHorizontal.tsx | 0 .../src/layouts/dashboard/navbar/NavbarVertical.tsx | 0 frontend/hospital-portal/src/pages/Dashboard.tsx | 0 frontend/hospital-portal/src/pages/Page404.tsx | 0 .../src/pages/auth/ForgetPassword.tsx | 0 frontend/hospital-portal/src/pages/auth/Login.tsx | 0 .../hospital-portal/src/pages/auth/Register.tsx | 0 .../src/pages/auth/ResetPassword.tsx | 0 .../hospital-portal/src/pages/auth/VerifyCode.tsx | 0 frontend/hospital-portal/src/react-app-env.d.ts | 0 frontend/hospital-portal/src/routes/index.tsx | 0 frontend/hospital-portal/src/routes/paths.ts | 0 .../src/sections/auth/AuthFirebaseSocial.tsx | 0 .../auth/forget-password/ForgetPasswordForm.tsx | 0 .../src/sections/auth/forget-password/index.ts | 0 .../src/sections/auth/login/LoginForm.tsx | 0 .../src/sections/auth/login/index.ts | 0 .../src/sections/auth/register/RegisterForm.tsx | 0 .../src/sections/auth/register/index.ts | 0 .../auth/reset-password/ResetPasswordForm.tsx | 0 .../src/sections/auth/reset-password/index.ts | 0 .../sections/auth/verify-code/VerifyCodeForm.tsx | 0 .../src/sections/auth/verify-code/index.ts | 0 .../src/sections/dashboard/CardNotification.tsx | 0 .../src/sections/dashboard/CardSearchMember.tsx | 0 .../src/sections/dashboard/DashboardTable.tsx | 0 .../src/sections/dashboard/DialogMember.tsx | 0 .../src/sections/dashboard/DialogNotification.tsx | 0 .../src/sections/dashboard/FormRequestClaim.tsx | 0 .../src/sections/dashboard/NotificationCard.tsx | 0 .../src/sections/dashboard/TableList.tsx | 0 .../dashboard/asdasdasdDialogDetailClaim.tsx | 0 frontend/hospital-portal/src/theme/breakpoints.ts | 0 frontend/hospital-portal/src/theme/index.tsx | 0 .../src/theme/overrides/Accordion.ts | 0 .../hospital-portal/src/theme/overrides/Alert.tsx | 0 .../src/theme/overrides/Autocomplete.ts | 0 .../hospital-portal/src/theme/overrides/Avatar.ts | 0 .../hospital-portal/src/theme/overrides/Backdrop.ts | 0 .../hospital-portal/src/theme/overrides/Badge.ts | 0 .../src/theme/overrides/Breadcrumbs.ts | 0 .../hospital-portal/src/theme/overrides/Button.ts | 0 .../src/theme/overrides/ButtonGroup.ts | 0 .../hospital-portal/src/theme/overrides/Card.ts | 0 .../src/theme/overrides/Checkbox.tsx | 0 .../hospital-portal/src/theme/overrides/Chip.tsx | 0 .../src/theme/overrides/ControlLabel.ts | 0 .../src/theme/overrides/CssBaseline.ts | 0 .../src/theme/overrides/CustomIcons.tsx | 0 .../hospital-portal/src/theme/overrides/DataGrid.ts | 0 .../hospital-portal/src/theme/overrides/Dialog.ts | 0 .../hospital-portal/src/theme/overrides/Drawer.ts | 0 frontend/hospital-portal/src/theme/overrides/Fab.ts | 0 .../hospital-portal/src/theme/overrides/Input.ts | 0 .../hospital-portal/src/theme/overrides/Link.ts | 0 .../hospital-portal/src/theme/overrides/List.ts | 0 .../src/theme/overrides/LoadingButton.ts | 0 .../hospital-portal/src/theme/overrides/Menu.ts | 0 .../src/theme/overrides/Pagination.ts | 0 .../hospital-portal/src/theme/overrides/Paper.ts | 0 .../hospital-portal/src/theme/overrides/Popover.ts | 0 .../hospital-portal/src/theme/overrides/Progress.ts | 0 .../hospital-portal/src/theme/overrides/Radio.ts | 0 .../hospital-portal/src/theme/overrides/Rating.tsx | 0 .../hospital-portal/src/theme/overrides/Select.tsx | 0 .../hospital-portal/src/theme/overrides/Skeleton.ts | 0 .../hospital-portal/src/theme/overrides/Slider.ts | 0 .../hospital-portal/src/theme/overrides/Stepper.ts | 0 .../hospital-portal/src/theme/overrides/SvgIcon.ts | 0 .../hospital-portal/src/theme/overrides/Switch.ts | 0 .../hospital-portal/src/theme/overrides/Table.ts | 0 .../hospital-portal/src/theme/overrides/Tabs.ts | 0 .../hospital-portal/src/theme/overrides/Timeline.ts | 0 .../src/theme/overrides/ToggleButton.ts | 0 .../hospital-portal/src/theme/overrides/Tooltip.ts | 0 .../src/theme/overrides/TreeView.tsx | 0 .../src/theme/overrides/Typography.ts | 0 .../hospital-portal/src/theme/overrides/index.ts | 0 frontend/hospital-portal/src/theme/palette.ts | 0 frontend/hospital-portal/src/theme/shadows.ts | 0 frontend/hospital-portal/src/theme/typography.ts | 0 frontend/hospital-portal/src/utils/axios.ts | 0 frontend/hospital-portal/src/utils/cssStyles.ts | 0 frontend/hospital-portal/src/utils/formatNumber.ts | 0 frontend/hospital-portal/src/utils/formatString.ts | 0 frontend/hospital-portal/src/utils/formatTime.ts | 0 .../hospital-portal/src/utils/getColorPresets.ts | 0 frontend/hospital-portal/src/utils/getFontValue.ts | 0 .../hospital-portal/src/utils/jsonToFormData.ts | 0 frontend/hospital-portal/src/utils/token.ts | 0 frontend/hospital-portal/tsconfig.json | 0 frontend/hospital-portal/vite.config.ts | 0 frontend/hospital-portal/yarn.lock | 0 lang/en/auth.php | 0 lang/en/enrollment.php | 0 lang/en/pagination.php | 0 lang/en/passwords.php | 0 lang/en/validation.php | 0 modules_statuses.json | 0 package-lock.json | 0 package.json | 0 phpunit.xml | 0 pnpm-lock.yaml | 0 public/.htaccess | 0 public/build/assets/app-179954eb.css | 0 public/build/assets/app-c3828592.js | 0 public/build/manifest.json | 0 public/client-portal/.htaccess | 0 public/client-portal/_redirects | 0 .../favicon/android-chrome-192x192.png | Bin .../favicon/android-chrome-512x512.png | Bin public/client-portal/favicon/apple-touch-icon.png | Bin public/client-portal/favicon/favicon-16x16.png | Bin public/client-portal/favicon/favicon-32x32.png | Bin public/client-portal/favicon/favicon.ico | Bin public/client-portal/fonts/CircularStd-Bold.otf | Bin public/client-portal/fonts/CircularStd-Book.otf | Bin public/client-portal/fonts/CircularStd-Medium.otf | Bin public/client-portal/fonts/Roboto-Bold.ttf | Bin public/client-portal/fonts/Roboto-Regular.ttf | Bin public/client-portal/fonts/index.css | 0 public/client-portal/icons/ic_analytics.svg | 0 public/client-portal/icons/ic_banking.svg | 0 public/client-portal/icons/ic_blog.svg | 0 public/client-portal/icons/ic_booking.svg | 0 public/client-portal/icons/ic_calendar.svg | 0 public/client-portal/icons/ic_cart.svg | 0 public/client-portal/icons/ic_chat.svg | 0 public/client-portal/icons/ic_dashboard.svg | 0 public/client-portal/icons/ic_ecommerce.svg | 0 public/client-portal/icons/ic_kanban.svg | 0 public/client-portal/icons/ic_mail.svg | 0 public/client-portal/icons/ic_user.svg | 0 .../client-portal/images/husband-user-profile.png | Bin public/client-portal/images/login-image.mp4 | Bin public/client-portal/images/login-image.webm | Bin public/client-portal/images/member.png | Bin public/client-portal/images/user-profile.png | Bin public/client-portal/logo/logo-linksehat.png | Bin public/client-portal/logo/logo_full.jpg | Bin public/client-portal/logo/logo_full.svg | 0 public/client-portal/logo/logo_single.svg | 0 public/client-portal/manifest.json | 0 public/client-portal/robots.txt | 0 public/dashboard-staging/.htaccess | 0 public/dashboard-staging/_redirects | 0 .../favicon/android-chrome-192x192.png | Bin .../favicon/android-chrome-512x512.png | Bin .../dashboard-staging/favicon/apple-touch-icon.png | Bin public/dashboard-staging/favicon/favicon-16x16.png | Bin public/dashboard-staging/favicon/favicon-32x32.png | Bin public/dashboard-staging/favicon/favicon.ico | Bin public/dashboard-staging/fonts/CircularStd-Bold.otf | Bin public/dashboard-staging/fonts/CircularStd-Book.otf | Bin .../dashboard-staging/fonts/CircularStd-Medium.otf | Bin public/dashboard-staging/fonts/Roboto-Bold.ttf | Bin public/dashboard-staging/fonts/Roboto-Regular.ttf | Bin public/dashboard-staging/fonts/index.css | 0 public/dashboard-staging/icons/ic_analytics.svg | 0 public/dashboard-staging/icons/ic_banking.svg | 0 public/dashboard-staging/icons/ic_blog.svg | 0 public/dashboard-staging/icons/ic_booking.svg | 0 public/dashboard-staging/icons/ic_calendar.svg | 0 public/dashboard-staging/icons/ic_cart.svg | 0 public/dashboard-staging/icons/ic_chat.svg | 0 public/dashboard-staging/icons/ic_dashboard.svg | 0 public/dashboard-staging/icons/ic_ecommerce.svg | 0 public/dashboard-staging/icons/ic_kanban.svg | 0 public/dashboard-staging/icons/ic_mail.svg | 0 public/dashboard-staging/icons/ic_user.svg | 0 public/dashboard-staging/image/overlay.png | Bin public/dashboard-staging/logo/logo-linksehat.png | Bin public/dashboard-staging/logo/logo_full.jpg | Bin public/dashboard-staging/logo/logo_full.svg | 0 public/dashboard-staging/logo/logo_single.svg | 0 public/dashboard-staging/manifest.json | 0 public/dashboard-staging/robots.txt | 0 public/dashboard/.htaccess | 0 public/dashboard/_redirects | 0 public/dashboard/assets/index.c91e36b5.css | 0 public/dashboard/assets/paths.3971dbe6.js | 0 public/dashboard/favicon/android-chrome-192x192.png | Bin public/dashboard/favicon/android-chrome-512x512.png | Bin public/dashboard/favicon/apple-touch-icon.png | Bin public/dashboard/favicon/favicon-16x16.png | Bin public/dashboard/favicon/favicon-32x32.png | Bin public/dashboard/favicon/favicon.ico | Bin public/dashboard/fonts/CircularStd-Bold.otf | Bin public/dashboard/fonts/CircularStd-Book.otf | Bin public/dashboard/fonts/CircularStd-Medium.otf | Bin public/dashboard/fonts/Roboto-Bold.ttf | Bin public/dashboard/fonts/Roboto-Regular.ttf | Bin public/dashboard/fonts/index.css | 0 public/dashboard/icons/ic_analytics.svg | 0 public/dashboard/icons/ic_banking.svg | 0 public/dashboard/icons/ic_blog.svg | 0 public/dashboard/icons/ic_booking.svg | 0 public/dashboard/icons/ic_calendar.svg | 0 public/dashboard/icons/ic_cart.svg | 0 public/dashboard/icons/ic_chat.svg | 0 public/dashboard/icons/ic_dashboard.svg | 0 public/dashboard/icons/ic_ecommerce.svg | 0 public/dashboard/icons/ic_kanban.svg | 0 public/dashboard/icons/ic_mail.svg | 0 public/dashboard/icons/ic_user.svg | 0 public/dashboard/image/overlay.png | Bin public/dashboard/index.html | 0 public/dashboard/logo/logo-linksehat.png | Bin public/dashboard/logo/logo_full.jpg | Bin public/dashboard/logo/logo_full.svg | 0 public/dashboard/logo/logo_single.svg | 0 public/dashboard/manifest.json | 0 public/dashboard/manifest.webmanifest | 0 public/dashboard/registerSW.js | 0 public/dashboard/robots.txt | 0 public/dashboard/sw.js | 0 public/dashboard/workbox-e0782b83.js | 0 public/favicon.ico | 0 public/files/Corporate Exclusion Import.xlsx | Bin public/files/Corporate Membership Import List.xlsx | 0 public/files/Tarif Konsultasi Primaya 2023.csv | 0 public/fonts/PublicSans-Black.ttf | Bin public/fonts/PublicSans-BlackItalic.ttf | Bin public/fonts/PublicSans-Bold.ttf | Bin public/fonts/PublicSans-BoldItalic.ttf | Bin public/fonts/PublicSans-ExtraBold.ttf | Bin public/fonts/PublicSans-ExtraBoldItalic.ttf | Bin public/fonts/PublicSans-ExtraLight.ttf | Bin public/fonts/PublicSans-ExtraLightItalic.ttf | Bin public/fonts/PublicSans-Italic.ttf | Bin public/fonts/PublicSans-Light.ttf | Bin public/fonts/PublicSans-LightItalic.ttf | Bin public/fonts/PublicSans-Medium.ttf | Bin public/fonts/PublicSans-MediumItalic.ttf | Bin public/fonts/PublicSans-Regular.ttf | Bin public/fonts/PublicSans-SemiBold.ttf | Bin public/fonts/PublicSans-SemiBoldItalic.ttf | Bin public/fonts/PublicSans-Thin.ttf | Bin public/fonts/PublicSans-ThinItalic.ttf | Bin public/hospital-portal-staging/.htaccess | 0 public/hospital-portal-staging/_redirects | 0 .../hospital-portal-staging/assets/Card.636ec64c.js | 0 .../assets/Dashboard.6320ce33.js | 0 .../assets/ForgetPassword.7bc09f84.js | 0 .../assets/Login.1016850a.js | 0 .../hospital-portal-staging/assets/Page.54724e9a.js | 0 .../assets/Page404.14781eaa.js | 0 .../assets/ResetPassword.efa619da.js | 0 .../assets/index.93207066.js | 0 .../assets/index.c91e36b5.css | 0 .../assets/paths.3971dbe6.js | 0 .../favicon/android-chrome-192x192.png | Bin .../favicon/android-chrome-512x512.png | Bin .../favicon/apple-touch-icon.png | Bin .../favicon/favicon-16x16.png | Bin .../favicon/favicon-32x32.png | Bin public/hospital-portal-staging/favicon/favicon.ico | Bin .../fonts/CircularStd-Bold.otf | Bin .../fonts/CircularStd-Book.otf | Bin .../fonts/CircularStd-Medium.otf | Bin .../hospital-portal-staging/fonts/Roboto-Bold.ttf | Bin .../fonts/Roboto-Regular.ttf | Bin public/hospital-portal-staging/fonts/index.css | 0 .../hospital-portal-staging/icons/ic_analytics.svg | 0 public/hospital-portal-staging/icons/ic_banking.svg | 0 public/hospital-portal-staging/icons/ic_blog.svg | 0 public/hospital-portal-staging/icons/ic_booking.svg | 0 .../hospital-portal-staging/icons/ic_calendar.svg | 0 public/hospital-portal-staging/icons/ic_cart.svg | 0 public/hospital-portal-staging/icons/ic_chat.svg | 0 .../hospital-portal-staging/icons/ic_dashboard.svg | 0 .../hospital-portal-staging/icons/ic_ecommerce.svg | 0 public/hospital-portal-staging/icons/ic_kanban.svg | 0 public/hospital-portal-staging/icons/ic_mail.svg | 0 public/hospital-portal-staging/icons/ic_user.svg | 0 public/hospital-portal-staging/image/overlay.png | Bin public/hospital-portal-staging/index.html | 0 .../hospital-portal-staging/logo/logo-linksehat.png | Bin public/hospital-portal-staging/logo/logo_full.jpg | Bin public/hospital-portal-staging/logo/logo_full.svg | 0 public/hospital-portal-staging/logo/logo_single.svg | 0 public/hospital-portal-staging/manifest.json | 0 public/hospital-portal-staging/manifest.webmanifest | 0 public/hospital-portal-staging/registerSW.js | 0 public/hospital-portal-staging/robots.txt | 0 public/hospital-portal-staging/sw.js | 0 public/hospital-portal-staging/workbox-e0782b83.js | 0 public/images/default-doctor-avatar.png | Bin public/images/default-hospital-image.png | Bin public/images/logo-linksehat-vertical-default.png | Bin public/images/specialities/akupunktur.png | Bin public/images/specialities/anak.png | Bin public/images/specialities/andrologi.png | Bin public/images/specialities/anestesi.png | Bin .../images/specialities/bedah-plastik-estetik.png | Bin public/images/specialities/bedah-umum.png | Bin .../images/specialities/dokter-layanan-primer.png | Bin public/images/specialities/emergency-medicine.png | Bin public/images/specialities/farmakologi-klinik.png | Bin public/images/specialities/fisioterapi.png | Bin .../specialities/forensik-dan-Medikolegal.png | Bin public/images/specialities/gizi-klinik.png | Bin public/images/specialities/hd.png | Bin public/images/specialities/igd.png | Bin .../images/specialities/jantung-pembuluh-darah.png | Bin public/images/specialities/kardio-vaskuler.png | Bin public/images/specialities/kebidanan-kandungan.png | Bin .../kedokteran-fisik-dan-rehabilitasi.png | Bin public/images/specialities/kedokteran-kelautan.png | Bin public/images/specialities/kedokteran-nuklir.png | Bin public/images/specialities/kedokteran-olahraga.png | Bin .../images/specialities/kedokteran-penerbangan.png | Bin public/images/specialities/kesehatan-jiwa.png | Bin public/images/specialities/kulit-kelamin.png | Bin public/images/specialities/laboratorium.png | Bin public/images/specialities/mata.png | Bin public/images/specialities/onkologi-Radiasi-1.png | Bin public/images/specialities/onkologi-radiasi.png | Bin .../specialities/ortopedi-dan-traumatologi.png | Bin public/images/specialities/parasitologi-klinik.png | Bin public/images/specialities/patologi-anatomi.png | Bin public/images/specialities/patologi-klinik.png | Bin public/images/specialities/penyakit-dalam.png | Bin public/images/specialities/psikolog.png | Bin public/images/specialities/radiologi.png | Bin public/images/specialities/saraf.png | Bin public/images/specialities/teeth.png | Bin public/images/specialities/tht.png | Bin public/images/specialities/urologi.png | Bin public/index.php | 0 public/robots.txt | 0 resources/css/app.css | 0 resources/files/ICD-X-Halodoc.csv | 0 resources/files/city.csv | 0 .../files/daftar_masteritem_ccp_14-06-2022.xlsx | Bin resources/files/district.csv | 0 resources/files/providers.csv | 0 resources/files/providers.csv:Zone.Identifier | 0 resources/files/province.csv | 0 resources/files/village.csv | 0 resources/js/app.js | 0 resources/js/bootstrap.js | 0 resources/views/pdf/final_log.blade.php | 0 resources/views/pdf/guaranted_leter.blade.php | 0 resources/views/vendor/mail/html/button.blade.php | 0 resources/views/vendor/mail/html/footer.blade.php | 0 resources/views/vendor/mail/html/header.blade.php | 0 resources/views/vendor/mail/html/layout.blade.php | 0 resources/views/vendor/mail/html/message.blade.php | 0 resources/views/vendor/mail/html/panel.blade.php | 0 resources/views/vendor/mail/html/subcopy.blade.php | 0 resources/views/vendor/mail/html/table.blade.php | 0 resources/views/vendor/mail/html/themes/default.css | 0 resources/views/vendor/mail/text/button.blade.php | 0 resources/views/vendor/mail/text/footer.blade.php | 0 resources/views/vendor/mail/text/header.blade.php | 0 resources/views/vendor/mail/text/layout.blade.php | 0 resources/views/vendor/mail/text/message.blade.php | 0 resources/views/vendor/mail/text/panel.blade.php | 0 resources/views/vendor/mail/text/subcopy.blade.php | 0 resources/views/vendor/mail/text/table.blade.php | 0 resources/views/verify_email.blade.php | 0 resources/views/welcome.blade.php | 0 routes/api.php | 0 routes/channels.php | 0 routes/console.php | 0 routes/web.php | 0 stubs/nwidart-stubs/assets/js/app.stub | 0 stubs/nwidart-stubs/assets/sass/app.stub | 0 stubs/nwidart-stubs/command.stub | 0 stubs/nwidart-stubs/component-class.stub | 0 stubs/nwidart-stubs/component-view.stub | 0 stubs/nwidart-stubs/composer.stub | 0 stubs/nwidart-stubs/controller-api.stub | 0 stubs/nwidart-stubs/controller-plain.stub | 0 stubs/nwidart-stubs/controller.stub | 0 stubs/nwidart-stubs/event.stub | 0 stubs/nwidart-stubs/factory.stub | 0 stubs/nwidart-stubs/feature-test.stub | 0 stubs/nwidart-stubs/job-queued.stub | 0 stubs/nwidart-stubs/job.stub | 0 stubs/nwidart-stubs/json.stub | 0 stubs/nwidart-stubs/listener-duck.stub | 0 stubs/nwidart-stubs/listener-queued-duck.stub | 0 stubs/nwidart-stubs/listener-queued.stub | 0 stubs/nwidart-stubs/listener.stub | 0 stubs/nwidart-stubs/mail.stub | 0 stubs/nwidart-stubs/middleware.stub | 0 stubs/nwidart-stubs/migration/add.stub | 0 stubs/nwidart-stubs/migration/create.stub | 0 stubs/nwidart-stubs/migration/delete.stub | 0 stubs/nwidart-stubs/migration/drop.stub | 0 stubs/nwidart-stubs/migration/plain.stub | 0 stubs/nwidart-stubs/model.stub | 0 stubs/nwidart-stubs/notification.stub | 0 stubs/nwidart-stubs/package.stub | 0 stubs/nwidart-stubs/policy.plain.stub | 0 stubs/nwidart-stubs/provider.stub | 0 stubs/nwidart-stubs/request.stub | 0 stubs/nwidart-stubs/resource-collection.stub | 0 stubs/nwidart-stubs/resource.stub | 0 stubs/nwidart-stubs/route-provider.stub | 0 stubs/nwidart-stubs/routes/api.stub | 0 stubs/nwidart-stubs/routes/web.stub | 0 stubs/nwidart-stubs/rule.stub | 0 stubs/nwidart-stubs/scaffold/config.stub | 0 stubs/nwidart-stubs/scaffold/provider.stub | 0 stubs/nwidart-stubs/seeder.stub | 0 stubs/nwidart-stubs/unit-test.stub | 0 stubs/nwidart-stubs/views/index.stub | 0 stubs/nwidart-stubs/views/master.stub | 0 stubs/nwidart-stubs/webpack.stub | 0 tailwind.config.js | 0 tests/CreatesApplication.php | 0 tests/Feature/ExampleTest.php | 0 tests/TestCase.php | 0 tests/Unit/ExampleTest.php | 0 vite.config.js | 0 webpack.mix.js | 0 1898 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 .DS_Store mode change 100755 => 100644 .editorconfig mode change 100755 => 100644 .gitattributes mode change 100755 => 100644 .gitignore mode change 100755 => 100644 .styleci.yml mode change 100755 => 100644 Modules/Client/Config/.gitkeep mode change 100755 => 100644 Modules/Client/Config/config.php mode change 100755 => 100644 Modules/Client/Console/.gitkeep mode change 100755 => 100644 Modules/Client/Database/Migrations/.gitkeep mode change 100755 => 100644 Modules/Client/Database/Seeders/.gitkeep mode change 100755 => 100644 Modules/Client/Database/Seeders/ClientDatabaseSeeder.php mode change 100755 => 100644 Modules/Client/Database/factories/.gitkeep mode change 100755 => 100644 Modules/Client/Entities/.gitkeep mode change 100755 => 100644 Modules/Client/Http/Controllers/.gitkeep mode change 100755 => 100644 Modules/Client/Http/Controllers/Api/AuthController.php mode change 100755 => 100644 Modules/Client/Http/Controllers/Api/ClaimController.php mode change 100755 => 100644 Modules/Client/Http/Controllers/Api/ClaimReportController.php mode change 100755 => 100644 Modules/Client/Http/Controllers/Api/CorporateDivisionController.php mode change 100755 => 100644 Modules/Client/Http/Controllers/Api/CorporateManageController.php mode change 100755 => 100644 Modules/Client/Http/Controllers/Api/CorporateMemberController.php mode change 100755 => 100644 Modules/Client/Http/Controllers/Api/CorporatePolicyController.php mode change 100755 => 100644 Modules/Client/Http/Controllers/Api/TopUpController.php mode change 100755 => 100644 Modules/Client/Http/Controllers/Api/UserController.php mode change 100755 => 100644 Modules/Client/Http/Controllers/ClientController.php mode change 100755 => 100644 Modules/Client/Http/Middleware/.gitkeep mode change 100755 => 100644 Modules/Client/Http/Requests/.gitkeep mode change 100755 => 100644 Modules/Client/Providers/.gitkeep mode change 100755 => 100644 Modules/Client/Providers/ClientServiceProvider.php mode change 100755 => 100644 Modules/Client/Providers/RouteServiceProvider.php mode change 100755 => 100644 Modules/Client/Resources/assets/.gitkeep mode change 100755 => 100644 Modules/Client/Resources/assets/js/app.js mode change 100755 => 100644 Modules/Client/Resources/assets/sass/app.scss mode change 100755 => 100644 Modules/Client/Resources/lang/.gitkeep mode change 100755 => 100644 Modules/Client/Resources/views/.gitkeep mode change 100755 => 100644 Modules/Client/Resources/views/index.blade.php mode change 100755 => 100644 Modules/Client/Resources/views/layouts/master.blade.php mode change 100755 => 100644 Modules/Client/Routes/.gitkeep mode change 100755 => 100644 Modules/Client/Routes/api.php mode change 100755 => 100644 Modules/Client/Routes/web.php mode change 100755 => 100644 Modules/Client/Tests/Feature/.gitkeep mode change 100755 => 100644 Modules/Client/Tests/Unit/.gitkeep mode change 100755 => 100644 Modules/Client/Transformers/ClaimReport/MemberResources.php mode change 100755 => 100644 Modules/Client/Transformers/ClaimShowResource.php mode change 100755 => 100644 Modules/Client/Transformers/Dashboard/LimitResources.php mode change 100755 => 100644 Modules/Client/Transformers/Dashboard/MemberAlarmCenterResources.php mode change 100755 => 100644 Modules/Client/Transformers/Dashboard/MemberResources.php mode change 100755 => 100644 Modules/Client/Transformers/Dashboard/TopUpLimitResources.php mode change 100755 => 100644 Modules/Client/composer.json mode change 100755 => 100644 Modules/Client/module.json mode change 100755 => 100644 Modules/Client/package.json mode change 100755 => 100644 Modules/Client/webpack.mix.js mode change 100755 => 100644 Modules/HospitalPortal/Config/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Config/config.php mode change 100755 => 100644 Modules/HospitalPortal/Console/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Database/Migrations/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Database/Seeders/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Database/Seeders/HospitalPortalDatabaseSeeder.php mode change 100755 => 100644 Modules/HospitalPortal/Database/factories/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Entities/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Http/Controllers/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Http/Controllers/Api/AuthController.php mode change 100755 => 100644 Modules/HospitalPortal/Http/Controllers/Api/ClaimRequestController.php mode change 100755 => 100644 Modules/HospitalPortal/Http/Controllers/Api/MemberController.php mode change 100755 => 100644 Modules/HospitalPortal/Http/Controllers/ClaimController.php mode change 100755 => 100644 Modules/HospitalPortal/Http/Controllers/HospitalPortalController.php mode change 100755 => 100644 Modules/HospitalPortal/Http/Middleware/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Http/Requests/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Providers/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Providers/HospitalPortalServiceProvider.php mode change 100755 => 100644 Modules/HospitalPortal/Providers/RouteServiceProvider.php mode change 100755 => 100644 Modules/HospitalPortal/Resources/assets/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Resources/assets/js/app.js mode change 100755 => 100644 Modules/HospitalPortal/Resources/assets/sass/app.scss mode change 100755 => 100644 Modules/HospitalPortal/Resources/lang/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Resources/views/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Resources/views/index.blade.php mode change 100755 => 100644 Modules/HospitalPortal/Resources/views/layouts/master.blade.php mode change 100755 => 100644 Modules/HospitalPortal/Routes/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Routes/api.php mode change 100755 => 100644 Modules/HospitalPortal/Routes/web.php mode change 100755 => 100644 Modules/HospitalPortal/Tests/Feature/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Tests/Unit/.gitkeep mode change 100755 => 100644 Modules/HospitalPortal/Transformers/ClaimRequestResource.php mode change 100755 => 100644 Modules/HospitalPortal/Transformers/ClaimRequestShowResource.php mode change 100755 => 100644 Modules/HospitalPortal/composer.json mode change 100755 => 100644 Modules/HospitalPortal/module.json mode change 100755 => 100644 Modules/HospitalPortal/package.json mode change 100755 => 100644 Modules/HospitalPortal/webpack.mix.js mode change 100755 => 100644 Modules/Internal/Config/.gitkeep mode change 100755 => 100644 Modules/Internal/Config/config.php mode change 100755 => 100644 Modules/Internal/Console/.gitkeep mode change 100755 => 100644 Modules/Internal/Database/Migrations/.gitkeep mode change 100755 => 100644 Modules/Internal/Database/Seeders/.gitkeep mode change 100755 => 100644 Modules/Internal/Database/Seeders/InternalDatabaseSeeder.php mode change 100755 => 100644 Modules/Internal/Database/factories/.gitkeep mode change 100755 => 100644 Modules/Internal/Emails/SendVerifyEmail.php mode change 100755 => 100644 Modules/Internal/Entities/.gitkeep mode change 100755 => 100644 Modules/Internal/Events/ForgetPassword.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/.gitkeep mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/AppointmentController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/AuthController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/BenefitController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/CityController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/ClaimController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/ClaimRequestController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/CorporateBenefitController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/CorporateController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/CorporateFormulariumController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/CorporateMemberController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/CorporatePlanController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/CorporateServiceController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/DiagnosisController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/DiagnosisExclusionController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/DistrictController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/DivisionController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/DoctorController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/DrugController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/FormulariumController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/Linksehat/PaymentController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/LivechatController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/MemberController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/OptionController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/OrganizationController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/PlanController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/ProvinceController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/SpecialityController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/Api/VillageController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/ClaimEncounterController.php mode change 100755 => 100644 Modules/Internal/Http/Controllers/InternalController.php mode change 100755 => 100644 Modules/Internal/Http/Middleware/.gitkeep mode change 100755 => 100644 Modules/Internal/Http/Requests/.gitkeep mode change 100755 => 100644 Modules/Internal/Listeners/SendVerifyEmail.php mode change 100755 => 100644 Modules/Internal/Notifications/NotifyVerifyEmail.php mode change 100755 => 100644 Modules/Internal/Providers/.gitkeep mode change 100755 => 100644 Modules/Internal/Providers/EventServiceProvider.php mode change 100755 => 100644 Modules/Internal/Providers/InternalServiceProvider.php mode change 100755 => 100644 Modules/Internal/Providers/RouteServiceProvider.php mode change 100755 => 100644 Modules/Internal/Resources/assets/.gitkeep mode change 100755 => 100644 Modules/Internal/Resources/assets/js/app.js mode change 100755 => 100644 Modules/Internal/Resources/assets/sass/app.scss mode change 100755 => 100644 Modules/Internal/Resources/lang/.gitkeep mode change 100755 => 100644 Modules/Internal/Resources/views/.gitkeep mode change 100755 => 100644 Modules/Internal/Resources/views/index.blade.php mode change 100755 => 100644 Modules/Internal/Resources/views/layouts/master.blade.php mode change 100755 => 100644 Modules/Internal/Routes/.gitkeep mode change 100755 => 100644 Modules/Internal/Routes/api.php mode change 100755 => 100644 Modules/Internal/Routes/web.php mode change 100755 => 100644 Modules/Internal/Services/CorporateService.php mode change 100755 => 100644 Modules/Internal/Services/ExclusionService.php mode change 100755 => 100644 Modules/Internal/Services/FormulariumService.php mode change 100755 => 100644 Modules/Internal/Services/MemberEnrollmentService.php mode change 100755 => 100644 Modules/Internal/Tests/Feature/.gitkeep mode change 100755 => 100644 Modules/Internal/Tests/Unit/.gitkeep mode change 100755 => 100644 Modules/Internal/Transformers/AppointmentResource.php mode change 100755 => 100644 Modules/Internal/Transformers/ClaimRequestResource.php mode change 100755 => 100644 Modules/Internal/Transformers/ClaimRequestShowResource.php mode change 100755 => 100644 Modules/Internal/Transformers/ClaimResource.php mode change 100755 => 100644 Modules/Internal/Transformers/ClaimShowResource.php mode change 100755 => 100644 Modules/Internal/Transformers/CorporateFormulariumResource.php mode change 100755 => 100644 Modules/Internal/Transformers/CorporateServiceConfigResource.php mode change 100755 => 100644 Modules/Internal/Transformers/DiagnosisExclusionResource.php mode change 100755 => 100644 Modules/Internal/Transformers/DoctorResource.php mode change 100755 => 100644 Modules/Internal/Transformers/EncounterResource.php mode change 100755 => 100644 Modules/Internal/Transformers/LinksehatPaymentResource.php mode change 100755 => 100644 Modules/Internal/Transformers/LivechatResource.php mode change 100755 => 100644 Modules/Internal/Transformers/OrganizationResource.php mode change 100755 => 100644 Modules/Internal/composer.json mode change 100755 => 100644 Modules/Internal/module.json mode change 100755 => 100644 Modules/Internal/package.json mode change 100755 => 100644 Modules/Internal/webpack.mix.js mode change 100755 => 100644 Modules/Linksehat/Config/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Config/config.php mode change 100755 => 100644 Modules/Linksehat/Console/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Database/Migrations/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Database/Seeders/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Database/Seeders/LinksehatDatabaseSeeder.php mode change 100755 => 100644 Modules/Linksehat/Database/factories/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Entities/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Http/Controllers/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Http/Controllers/Api/AppointmentController.php mode change 100755 => 100644 Modules/Linksehat/Http/Controllers/Api/ArticleController.php mode change 100755 => 100644 Modules/Linksehat/Http/Controllers/Api/AuthController.php mode change 100755 => 100644 Modules/Linksehat/Http/Controllers/Api/DashboardController.php mode change 100755 => 100644 Modules/Linksehat/Http/Controllers/Api/DoctorController.php mode change 100755 => 100644 Modules/Linksehat/Http/Controllers/Api/HospitalController.php mode change 100755 => 100644 Modules/Linksehat/Http/Controllers/Api/NotificationTokenController.php mode change 100755 => 100644 Modules/Linksehat/Http/Controllers/Api/PersonController.php mode change 100755 => 100644 Modules/Linksehat/Http/Controllers/Api/ProfileController.php mode change 100755 => 100644 Modules/Linksehat/Http/Controllers/Api/SearchController.php mode change 100755 => 100644 Modules/Linksehat/Http/Controllers/Api/SpecialityController.php mode change 100755 => 100644 Modules/Linksehat/Http/Controllers/LinksehatController.php mode change 100755 => 100644 Modules/Linksehat/Http/Middleware/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Http/Requests/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Http/Requests/PersonRequest.php mode change 100755 => 100644 Modules/Linksehat/Providers/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Providers/LinksehatServiceProvider.php mode change 100755 => 100644 Modules/Linksehat/Providers/RouteServiceProvider.php mode change 100755 => 100644 Modules/Linksehat/Resources/assets/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Resources/assets/js/app.js mode change 100755 => 100644 Modules/Linksehat/Resources/assets/sass/app.scss mode change 100755 => 100644 Modules/Linksehat/Resources/lang/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Resources/views/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Resources/views/index.blade.php mode change 100755 => 100644 Modules/Linksehat/Resources/views/layouts/master.blade.php mode change 100755 => 100644 Modules/Linksehat/Routes/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Routes/api.php mode change 100755 => 100644 Modules/Linksehat/Routes/web.php mode change 100755 => 100644 Modules/Linksehat/Tests/Feature/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Tests/Unit/.gitkeep mode change 100755 => 100644 Modules/Linksehat/Transformers/Appointment/AppointmentDetailResource.php mode change 100755 => 100644 Modules/Linksehat/Transformers/Article/ArticleResource.php mode change 100755 => 100644 Modules/Linksehat/Transformers/Doctor/DoctorResource.php mode change 100755 => 100644 Modules/Linksehat/Transformers/Doctor/DoctorResourceDetail.php mode change 100755 => 100644 Modules/Linksehat/Transformers/DoctorResource.php mode change 100755 => 100644 Modules/Linksehat/Transformers/Hospital/HospitalResource.php mode change 100755 => 100644 Modules/Linksehat/Transformers/HospitalResource.php mode change 100755 => 100644 Modules/Linksehat/Transformers/Person/PersonResource.php mode change 100755 => 100644 Modules/Linksehat/Transformers/PractitionerRoleToDoctorDetailResource.php mode change 100755 => 100644 Modules/Linksehat/Transformers/PractitionerRoleToDoctorResource.php mode change 100755 => 100644 Modules/Linksehat/Transformers/Speciality/SpecialityForHospitalDetailResource.php mode change 100755 => 100644 Modules/Linksehat/Transformers/Speciality/SpecialityResource.php mode change 100755 => 100644 Modules/Linksehat/Transformers/UserProfileResource.php mode change 100755 => 100644 Modules/Linksehat/composer.json mode change 100755 => 100644 Modules/Linksehat/module.json mode change 100755 => 100644 Modules/Linksehat/package.json mode change 100755 => 100644 Modules/Linksehat/webpack.mix.js mode change 100755 => 100644 README.md mode change 100755 => 100644 _ide_helper.php mode change 100755 => 100644 app/Builders/MemberBuilder.php mode change 100755 => 100644 app/Console/Kernel.php mode change 100755 => 100644 app/Events/ClaimApproved.php mode change 100755 => 100644 app/Events/ClaimDeclined.php mode change 100755 => 100644 app/Events/ClaimPaid.php mode change 100755 => 100644 app/Events/ClaimPostpone.php mode change 100755 => 100644 app/Events/ClaimReceived.php mode change 100755 => 100644 app/Events/ClaimRequested.php mode change 100755 => 100644 app/Exceptions/Handler.php mode change 100755 => 100644 app/Exceptions/ImportRowException.php mode change 100755 => 100644 app/Helpers/Helper.php mode change 100755 => 100644 app/Http/Controllers/Api/AuthController.php mode change 100755 => 100644 app/Http/Controllers/Api/OLDLMS/ClaimController.php mode change 100755 => 100644 app/Http/Controllers/Api/OLDLMS/MembershipController.php mode change 100755 => 100644 app/Http/Controllers/Api/OLDLMS/PaymentController.php mode change 100755 => 100644 app/Http/Controllers/Controller.php mode change 100755 => 100644 app/Http/Controllers/GeneratedDocumentController.php mode change 100755 => 100644 app/Http/Kernel.php mode change 100755 => 100644 app/Http/Middleware/Authenticate.php mode change 100755 => 100644 app/Http/Middleware/EncryptCookies.php mode change 100755 => 100644 app/Http/Middleware/LinksehatOldAuthMiddleware.php mode change 100755 => 100644 app/Http/Middleware/PreventRequestsDuringMaintenance.php mode change 100755 => 100644 app/Http/Middleware/RedirectIfAuthenticated.php mode change 100755 => 100644 app/Http/Middleware/TrimStrings.php mode change 100755 => 100644 app/Http/Middleware/TrustHosts.php mode change 100755 => 100644 app/Http/Middleware/TrustProxies.php mode change 100755 => 100644 app/Http/Middleware/VerifyCsrfToken.php mode change 100755 => 100644 app/Http/Resources/MemberDataTableResource.php mode change 100755 => 100644 app/Http/Resources/OLDLMS/MemberLimitResource.php mode change 100755 => 100644 app/Http/Resources/OLDLMS/MemberResource.php mode change 100755 => 100644 app/Imports/PlansImport.php mode change 100755 => 100644 app/Jobs/ProcessImport.php mode change 100755 => 100644 app/Jobs/TestJob.php mode change 100755 => 100644 app/Listeners/LogClaimJournal.php mode change 100755 => 100644 app/Listeners/NotifyClaimRequested.php mode change 100755 => 100644 app/Models/Address.php mode change 100755 => 100644 app/Models/Appointment.php mode change 100755 => 100644 app/Models/AppointmentParticipant.php mode change 100755 => 100644 app/Models/AppointmentType.php mode change 100755 => 100644 app/Models/Benefit.php mode change 100755 => 100644 app/Models/Brand.php mode change 100755 => 100644 app/Models/Category.php mode change 100755 => 100644 app/Models/City.php mode change 100755 => 100644 app/Models/Claim.php mode change 100755 => 100644 app/Models/ClaimDiagnosis.php mode change 100755 => 100644 app/Models/ClaimHistory.php mode change 100755 => 100644 app/Models/ClaimItem.php mode change 100755 => 100644 app/Models/ClaimRequest.php mode change 100755 => 100644 app/Models/Corporate.php mode change 100755 => 100644 app/Models/CorporateBenefit.php mode change 100755 => 100644 app/Models/CorporateDivision.php mode change 100755 => 100644 app/Models/CorporateEmployee.php mode change 100755 => 100644 app/Models/CorporateFormularium.php mode change 100755 => 100644 app/Models/CorporateManager.php mode change 100755 => 100644 app/Models/CorporatePlan.php mode change 100755 => 100644 app/Models/CorporatePolicy.php mode change 100755 => 100644 app/Models/CorporateService.php mode change 100755 => 100644 app/Models/CorporateServiceConfig.php mode change 100755 => 100644 app/Models/CorporateServiceSpeciality.php mode change 100755 => 100644 app/Models/District.php mode change 100755 => 100644 app/Models/Drug.php mode change 100755 => 100644 app/Models/DrugAtc.php mode change 100755 => 100644 app/Models/DrugCategory.php mode change 100755 => 100644 app/Models/DrugComposition.php mode change 100755 => 100644 app/Models/DrugExternalIdentifier.php mode change 100755 => 100644 app/Models/DrugIdentifier.php mode change 100755 => 100644 app/Models/DrugSellingUnit.php mode change 100755 => 100644 app/Models/DrugUnit.php mode change 100755 => 100644 app/Models/Encounter.php mode change 100755 => 100644 app/Models/EncounterDiagnosis.php mode change 100755 => 100644 app/Models/EncounterParticipant.php mode change 100755 => 100644 app/Models/Exclusion.php mode change 100755 => 100644 app/Models/ExclusionRules.php mode change 100755 => 100644 app/Models/Family.php mode change 100755 => 100644 app/Models/File.php mode change 100755 => 100644 app/Models/Formularium.php mode change 100755 => 100644 app/Models/FormulariumItem.php mode change 100755 => 100644 app/Models/GeneratedDocument.php mode change 100755 => 100644 app/Models/Icd.php mode change 100755 => 100644 app/Models/Identifier.php mode change 100755 => 100644 app/Models/ImportLog.php mode change 100755 => 100644 app/Models/Ingredient.php mode change 100755 => 100644 app/Models/LimitJournal.php mode change 100755 => 100644 app/Models/Member.php mode change 100755 => 100644 app/Models/MemberPlan.php mode change 100755 => 100644 app/Models/MemberPolicy.php mode change 100755 => 100644 app/Models/Meta.php mode change 100755 => 100644 app/Models/NotificationToken.php mode change 100755 => 100644 app/Models/OLDLMS/Appointment.php mode change 100755 => 100644 app/Models/OLDLMS/AppointmentDetail.php mode change 100755 => 100644 app/Models/OLDLMS/Dokter.php mode change 100755 => 100644 app/Models/OLDLMS/Healthcare.php mode change 100755 => 100644 app/Models/OLDLMS/HealthcareCommission.php mode change 100755 => 100644 app/Models/OLDLMS/Insurance.php mode change 100755 => 100644 app/Models/OLDLMS/JadwalDokter.php mode change 100755 => 100644 app/Models/OLDLMS/JadwalDokterDay.php mode change 100755 => 100644 app/Models/OLDLMS/Kota.php mode change 100755 => 100644 app/Models/OLDLMS/Livechat.php mode change 100755 => 100644 app/Models/OLDLMS/Provinsi.php mode change 100755 => 100644 app/Models/OLDLMS/Speciality.php mode change 100755 => 100644 app/Models/OLDLMS/User.php mode change 100755 => 100644 app/Models/OLDLMS/UserDetail.php mode change 100755 => 100644 app/Models/OLDLMS/UserInsurance.php mode change 100755 => 100644 app/Models/OLDLMS/UserInsuranceDetail.php mode change 100755 => 100644 app/Models/Organization.php mode change 100755 => 100644 app/Models/Person.php mode change 100755 => 100644 app/Models/Plan.php mode change 100755 => 100644 app/Models/Practice.php mode change 100755 => 100644 app/Models/Practitioner.php mode change 100755 => 100644 app/Models/PractitionerRole.php mode change 100755 => 100644 app/Models/PractitionerRoleAvailability.php mode change 100755 => 100644 app/Models/PractitionerRoleAvailabilityDay.php mode change 100755 => 100644 app/Models/Price.php mode change 100755 => 100644 app/Models/Province.php mode change 100755 => 100644 app/Models/Service.php mode change 100755 => 100644 app/Models/Speciality.php mode change 100755 => 100644 app/Models/StatusHistory.php mode change 100755 => 100644 app/Models/Unit.php mode change 100755 => 100644 app/Models/User.php mode change 100755 => 100644 app/Models/Village.php mode change 100755 => 100644 app/Notifications/ClaimRequestedNotification.php mode change 100755 => 100644 app/Providers/AppServiceProvider.php mode change 100755 => 100644 app/Providers/AuthServiceProvider.php mode change 100755 => 100644 app/Providers/BroadcastServiceProvider.php mode change 100755 => 100644 app/Providers/ClaimRequested.php mode change 100755 => 100644 app/Providers/DuitkuServiceProvider.php mode change 100755 => 100644 app/Providers/EventServiceProvider.php mode change 100755 => 100644 app/Providers/RouteServiceProvider.php mode change 100755 => 100644 app/Rules/NikRule.php mode change 100755 => 100644 app/Services/ClaimRequestService.php mode change 100755 => 100644 app/Services/ClaimService.php mode change 100755 => 100644 app/Services/CorporateMemberService.php mode change 100755 => 100644 app/Services/DoctorService.php mode change 100755 => 100644 app/Services/Duitku.php mode change 100755 => 100644 app/Services/ImportService.php mode change 100755 => 100644 app/Services/LmsApi.php mode change 100755 => 100644 app/Services/PrimayaApi.php mode change 100755 => 100644 app/Traits/Blameable.php mode change 100755 => 100644 artisan mode change 100755 => 100644 bootstrap/app.php mode change 100755 => 100644 composer.json mode change 100755 => 100644 composer.lock mode change 100755 => 100644 config/app.php mode change 100755 => 100644 config/aso.php mode change 100755 => 100644 config/auth.php mode change 100755 => 100644 config/broadcasting.php mode change 100755 => 100644 config/cache.php mode change 100755 => 100644 config/cors.php mode change 100755 => 100644 config/database.php mode change 100755 => 100644 config/excel.php mode change 100755 => 100644 config/filesystems.php mode change 100755 => 100644 config/hashing.php mode change 100755 => 100644 config/logging.php mode change 100755 => 100644 config/mail.php mode change 100755 => 100644 config/modules.php mode change 100755 => 100644 config/permission.php mode change 100755 => 100644 config/queue.php mode change 100755 => 100644 config/sanctum.php mode change 100755 => 100644 config/services.php mode change 100755 => 100644 config/session.php mode change 100755 => 100644 config/snappy.php mode change 100755 => 100644 config/view.php mode change 100755 => 100644 database/.gitignore mode change 100755 => 100644 database/factories/UserFactory.php mode change 100755 => 100644 database/migrations/2014_10_12_000000_create_users_table.php mode change 100755 => 100644 database/migrations/2014_10_12_100000_create_password_resets_table.php mode change 100755 => 100644 database/migrations/2019_08_19_000000_create_failed_jobs_table.php mode change 100755 => 100644 database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php mode change 100755 => 100644 database/migrations/2022_05_23_073350_create_members_table.php mode change 100755 => 100644 database/migrations/2022_06_16_045414_create_corporates_table.php mode change 100755 => 100644 database/migrations/2022_06_16_045441_create_corporate_divisions_table.php mode change 100755 => 100644 database/migrations/2022_06_17_024432_create_corporate_employees_table.php mode change 100755 => 100644 database/migrations/2022_06_21_042321_create_corporate_policies_table.php mode change 100755 => 100644 database/migrations/2022_06_23_070847_create_benefits_table.php mode change 100755 => 100644 database/migrations/2022_06_23_083834_create_plans_table.php mode change 100755 => 100644 database/migrations/2022_06_23_093107_create_services_table.php mode change 100755 => 100644 database/migrations/2022_07_04_074656_create_import_logs_table.php mode change 100755 => 100644 database/migrations/2022_07_04_075238_create_files_table.php mode change 100755 => 100644 database/migrations/2022_07_07_040543_create_corporate_plans_table.php mode change 100755 => 100644 database/migrations/2022_07_12_025440_create_corporate_benefits_table.php mode change 100755 => 100644 database/migrations/2022_07_21_121346_create_member_policies_table.php mode change 100755 => 100644 database/migrations/2022_07_25_050001_create_member_plans_table.php mode change 100755 => 100644 database/migrations/2022_07_28_032235_create_icd_table.php mode change 100755 => 100644 database/migrations/2022_08_02_061122_create_exclusions_table.php mode change 100755 => 100644 database/migrations/2022_08_02_061127_create_exclusion_rules_table.php mode change 100755 => 100644 database/migrations/2022_08_03_114155_create_jobs_table.php mode change 100755 => 100644 database/migrations/2022_08_05_035511_create_corporate_services_table.php mode change 100755 => 100644 database/migrations/2022_08_08_042246_create_corporate_service_configs_table.php mode change 100755 => 100644 database/migrations/2022_08_09_043235_create_drugs_table.php mode change 100755 => 100644 database/migrations/2022_08_09_043243_create_brands_table.php mode change 100755 => 100644 database/migrations/2022_08_09_092811_create_categories_table.php mode change 100755 => 100644 database/migrations/2022_08_09_092845_create_drug_categories_table.php mode change 100755 => 100644 database/migrations/2022_08_09_095513_create_organizations_table.php mode change 100755 => 100644 database/migrations/2022_08_11_024030_create_drug_compositions_table.php mode change 100755 => 100644 database/migrations/2022_08_11_025942_create_drug_atcs_table.php mode change 100755 => 100644 database/migrations/2022_08_11_030815_create_identifiers_table.php mode change 100755 => 100644 database/migrations/2022_08_11_031728_create_ingredients_table.php mode change 100755 => 100644 database/migrations/2022_08_12_020643_create_drug_manufacturers_table.php mode change 100755 => 100644 database/migrations/2022_08_12_025718_create_units_table.php mode change 100755 => 100644 database/migrations/2022_08_12_041455_create_formulariums_table.php mode change 100755 => 100644 database/migrations/2022_08_12_042229_create_formularium_items_table.php mode change 100755 => 100644 database/migrations/2022_08_15_043309_create_corporate_formulariums_table.php mode change 100755 => 100644 database/migrations/2022_08_24_024003_create_specialities_table.php mode change 100755 => 100644 database/migrations/2022_08_24_225705_create_corporate_service_specialities_table.php mode change 100755 => 100644 database/migrations/2022_08_26_064247_create_corporate_manager_table.php mode change 100755 => 100644 database/migrations/2022_09_14_095154_create_addresses_table.php mode change 100755 => 100644 database/migrations/2022_09_16_045129_create_metas_table.php mode change 100755 => 100644 database/migrations/2022_09_16_082408_create_practitioners_table.php mode change 100755 => 100644 database/migrations/2022_09_16_082630_create_persons_table.php mode change 100755 => 100644 database/migrations/2022_09_16_084111_create_practitioner_roles_table.php mode change 100755 => 100644 database/migrations/2022_09_20_014237_add_person_id_in_users_table.php mode change 100755 => 100644 database/migrations/2022_09_21_074815_create_practices_table.php mode change 100755 => 100644 database/migrations/2022_09_22_024244_create_prices_table.php mode change 100755 => 100644 database/migrations/2022_09_22_031814_create_practitioner_role_availabilities_table.php mode change 100755 => 100644 database/migrations/2022_09_22_035131_create_practitioner_role_availability_days_table.php mode change 100755 => 100644 database/migrations/2022_09_22_071909_create_provinces_table.php mode change 100755 => 100644 database/migrations/2022_09_22_071941_create_cities_table.php mode change 100755 => 100644 database/migrations/2022_09_22_072029_create_districts_table.php mode change 100755 => 100644 database/migrations/2022_09_22_072153_create_villages_table.php mode change 100755 => 100644 database/migrations/2022_09_26_083719_add_person_details_for_lms_api.php mode change 100755 => 100644 database/migrations/2022_11_01_031045_create_family_relations_table.php mode change 100755 => 100644 database/migrations/2022_11_01_031413_add_owner_id_and_person_id_in_family_relations_table.php mode change 100755 => 100644 database/migrations/2022_11_04_084316_create_appointment_types_table.php mode change 100755 => 100644 database/migrations/2022_11_04_084333_create_appointments_table.php mode change 100755 => 100644 database/migrations/2022_11_04_084351_create_appointment_participants_table.php mode change 100755 => 100644 database/migrations/2022_11_04_093755_add_speciality_id_organization_id_appointment_id_to_table_appointments.php mode change 100755 => 100644 database/migrations/2022_11_08_103959_create_invoices_table.php mode change 100755 => 100644 database/migrations/2022_11_08_104903_create_invoice_items_table.php mode change 100755 => 100644 database/migrations/2022_11_08_105659_create_payments_table.php mode change 100755 => 100644 database/migrations/2022_11_08_110502_create_payment_methods_table.php mode change 100755 => 100644 database/migrations/2022_11_15_102019_add_height_weight_to_persons_table.php mode change 100755 => 100644 database/migrations/2022_11_22_083926_create_notification_tokens_table.php mode change 100755 => 100644 database/migrations/2022_11_22_093749_create_api_logs_table.php mode change 100755 => 100644 database/migrations/2022_11_22_135948_create_claims_table.php mode change 100755 => 100644 database/migrations/2022_11_23_140658_create_limit_journals_table.php mode change 100755 => 100644 database/migrations/2022_12_19_171824_add_active_to_plans_table.php mode change 100755 => 100644 database/migrations/2022_12_20_105712_add_person_id_to_members_table.php mode change 100755 => 100644 database/migrations/2022_12_20_151051_add_language_to_persons_table.php mode change 100755 => 100644 database/migrations/2022_12_30_132951_create_status_histories_table.php mode change 100755 => 100644 database/migrations/2022_12_30_135856_create_claim_diagnosis_table.php mode change 100755 => 100644 database/migrations/2023_02_14_102144_create_claim_requests_table.php mode change 100755 => 100644 database/migrations/2023_02_14_112255_create_permission_tables.php mode change 100755 => 100644 database/migrations/2023_02_15_115628_add_original_name_to_files_table.php mode change 100755 => 100644 database/migrations/2023_02_24_125948_create_claim_histories_table.php mode change 100755 => 100644 database/migrations/2023_02_24_134555_create_generated_documents_table.php mode change 100755 => 100644 database/migrations/2023_02_27_133120_create_notifications_table.php mode change 100755 => 100644 database/migrations/2023_03_04_173410_create_claim_items_table.php mode change 100755 => 100644 database/migrations/2023_03_15_155301_create_encounters_table.php mode change 100755 => 100644 database/migrations/2023_03_15_162138_create_encounter_participants_table.php mode change 100755 => 100644 database/migrations/2023_03_15_162148_create_encounter_diagnoses_table.php mode change 100755 => 100644 database/migrations/2023_03_16_150733_create_claim_encounter_table.php mode change 100755 => 100644 database/migrations/2023_03_21_151000_add_final_encounter_id_to_claims_table.php mode change 100755 => 100644 database/seeders/AppointmentTypesSeeder.php mode change 100755 => 100644 database/seeders/BenefitSeeder.php mode change 100755 => 100644 database/seeders/CitySeeder.php mode change 100755 => 100644 database/seeders/DatabaseSeeder.php mode change 100755 => 100644 database/seeders/DistrictSeeder.php mode change 100755 => 100644 database/seeders/DrugSeeder.php mode change 100755 => 100644 database/seeders/DummyClaimSeeder.php mode change 100755 => 100644 database/seeders/DummyCorporateSeeder.php mode change 100755 => 100644 database/seeders/DummyMemberSeeder.php mode change 100755 => 100644 database/seeders/IcdSeeder.php mode change 100755 => 100644 database/seeders/IngestProviderSeeder.php mode change 100755 => 100644 database/seeders/JadwalDokterSeeder.php mode change 100755 => 100644 database/seeders/OrganizationSeeder.php mode change 100755 => 100644 database/seeders/PractitionerRoleDummySeeder.php mode change 100755 => 100644 database/seeders/PractitionerSeeder.php mode change 100755 => 100644 database/seeders/PriceSeeder.php mode change 100755 => 100644 database/seeders/PricesJadwalDokter.php mode change 100755 => 100644 database/seeders/ProvinceSeeder.php mode change 100755 => 100644 database/seeders/RoleSeeder.php mode change 100755 => 100644 database/seeders/ServiceSeeder.php mode change 100755 => 100644 database/seeders/SpecialitiesSeeder.php mode change 100755 => 100644 database/seeders/UpdateOrganizationCities.php mode change 100755 => 100644 database/seeders/VillageSeeder.php mode change 100755 => 100644 frontend/.DS_Store mode change 100755 => 100644 frontend/client-portal/.env.development mode change 100755 => 100644 frontend/client-portal/.env.production mode change 100755 => 100644 frontend/client-portal/.eslintignore mode change 100755 => 100644 frontend/client-portal/.eslintrc mode change 100755 => 100644 frontend/client-portal/.gitignore mode change 100755 => 100644 frontend/client-portal/.htaccess mode change 100755 => 100644 frontend/client-portal/.pnpm-debug.log mode change 100755 => 100644 frontend/client-portal/.prettierrc mode change 100755 => 100644 frontend/client-portal/index.html mode change 100755 => 100644 frontend/client-portal/package-lock.json mode change 100755 => 100644 frontend/client-portal/package.json mode change 100755 => 100644 frontend/client-portal/pnpm-lock.yaml mode change 100755 => 100644 frontend/client-portal/public/_redirects mode change 100755 => 100644 frontend/client-portal/public/favicon/android-chrome-192x192.png mode change 100755 => 100644 frontend/client-portal/public/favicon/android-chrome-512x512.png mode change 100755 => 100644 frontend/client-portal/public/favicon/apple-touch-icon.png mode change 100755 => 100644 frontend/client-portal/public/favicon/favicon-16x16.png mode change 100755 => 100644 frontend/client-portal/public/favicon/favicon-32x32.png mode change 100755 => 100644 frontend/client-portal/public/favicon/favicon.ico mode change 100755 => 100644 frontend/client-portal/public/fonts/CircularStd-Bold.otf mode change 100755 => 100644 frontend/client-portal/public/fonts/CircularStd-Book.otf mode change 100755 => 100644 frontend/client-portal/public/fonts/CircularStd-Medium.otf mode change 100755 => 100644 frontend/client-portal/public/fonts/Roboto-Bold.ttf mode change 100755 => 100644 frontend/client-portal/public/fonts/Roboto-Regular.ttf mode change 100755 => 100644 frontend/client-portal/public/fonts/index.css mode change 100755 => 100644 frontend/client-portal/public/icons/ic_analytics.svg mode change 100755 => 100644 frontend/client-portal/public/icons/ic_banking.svg mode change 100755 => 100644 frontend/client-portal/public/icons/ic_blog.svg mode change 100755 => 100644 frontend/client-portal/public/icons/ic_booking.svg mode change 100755 => 100644 frontend/client-portal/public/icons/ic_calendar.svg mode change 100755 => 100644 frontend/client-portal/public/icons/ic_cart.svg mode change 100755 => 100644 frontend/client-portal/public/icons/ic_chat.svg mode change 100755 => 100644 frontend/client-portal/public/icons/ic_dashboard.svg mode change 100755 => 100644 frontend/client-portal/public/icons/ic_ecommerce.svg mode change 100755 => 100644 frontend/client-portal/public/icons/ic_kanban.svg mode change 100755 => 100644 frontend/client-portal/public/icons/ic_mail.svg mode change 100755 => 100644 frontend/client-portal/public/icons/ic_user.svg mode change 100755 => 100644 frontend/client-portal/public/images/husband-user-profile.png mode change 100755 => 100644 frontend/client-portal/public/images/login-image.mp4 mode change 100755 => 100644 frontend/client-portal/public/images/login-image.webm mode change 100755 => 100644 frontend/client-portal/public/images/member.png mode change 100755 => 100644 frontend/client-portal/public/images/user-profile.png mode change 100755 => 100644 frontend/client-portal/public/logo/logo-linksehat.png mode change 100755 => 100644 frontend/client-portal/public/logo/logo_full.jpg mode change 100755 => 100644 frontend/client-portal/public/logo/logo_full.svg mode change 100755 => 100644 frontend/client-portal/public/logo/logo_single.svg mode change 100755 => 100644 frontend/client-portal/public/manifest.json mode change 100755 => 100644 frontend/client-portal/public/robots.txt mode change 100755 => 100644 frontend/client-portal/src/@types/auth.ts mode change 100755 => 100644 frontend/client-portal/src/@types/blog.ts mode change 100755 => 100644 frontend/client-portal/src/@types/calendar.ts mode change 100755 => 100644 frontend/client-portal/src/@types/chat.ts mode change 100755 => 100644 frontend/client-portal/src/@types/claim.ts mode change 100755 => 100644 frontend/client-portal/src/@types/diagnosis.ts mode change 100755 => 100644 frontend/client-portal/src/@types/invoice.ts mode change 100755 => 100644 frontend/client-portal/src/@types/kanban.ts mode change 100755 => 100644 frontend/client-portal/src/@types/mail.ts mode change 100755 => 100644 frontend/client-portal/src/@types/member.ts mode change 100755 => 100644 frontend/client-portal/src/@types/paginated-data.ts mode change 100755 => 100644 frontend/client-portal/src/@types/policy.ts mode change 100755 => 100644 frontend/client-portal/src/@types/product.ts mode change 100755 => 100644 frontend/client-portal/src/@types/table.ts mode change 100755 => 100644 frontend/client-portal/src/@types/user.ts mode change 100755 => 100644 frontend/client-portal/src/App.tsx mode change 100755 => 100644 frontend/client-portal/src/_mock/_analytics.tsx mode change 100755 => 100644 frontend/client-portal/src/_mock/_app.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/_banking.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/_booking.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/_countries.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/_ecommerce.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/_mock.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/_others.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/_plans.tsx mode change 100755 => 100644 frontend/client-portal/src/_mock/_top100Films.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/_user.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/address.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/boolean.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/company.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/email.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/funcs.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/index.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/map/cities.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/map/countries.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/map/map-style-basic-v8.json mode change 100755 => 100644 frontend/client-portal/src/_mock/map/stations.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/name.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/number.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/phoneNumber.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/role.ts mode change 100755 => 100644 frontend/client-portal/src/_mock/text.ts mode change 100755 => 100644 frontend/client-portal/src/assets/icon_plan_free.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/icon_plan_premium.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/icon_plan_starter.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/icon_sent.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/illustration_404.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/illustration_500.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/illustration_booking.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/illustration_checkin.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/illustration_checkout.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/illustration_coming_soon.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/illustration_doc.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/illustration_maintenance.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/illustration_motivation.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/illustration_order_complete.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/illustration_seo.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/illustration_upload.tsx mode change 100755 => 100644 frontend/client-portal/src/assets/index.ts mode change 100755 => 100644 frontend/client-portal/src/components/BadgeStatus.tsx mode change 100755 => 100644 frontend/client-portal/src/components/BasePagination.tsx mode change 100755 => 100644 frontend/client-portal/src/components/BaseTablePagination.tsx mode change 100755 => 100644 frontend/client-portal/src/components/Breadcrumbs.tsx mode change 100755 => 100644 frontend/client-portal/src/components/HeaderBreadcrumbs.tsx mode change 100755 => 100644 frontend/client-portal/src/components/Iconify.tsx mode change 100755 => 100644 frontend/client-portal/src/components/Image.tsx mode change 100755 => 100644 frontend/client-portal/src/components/LaravelTable.tsx mode change 100755 => 100644 frontend/client-portal/src/components/LoadingScreen.tsx mode change 100755 => 100644 frontend/client-portal/src/components/Logo.tsx mode change 100755 => 100644 frontend/client-portal/src/components/MenuPopover.tsx mode change 100755 => 100644 frontend/client-portal/src/components/MuiDialog.tsx mode change 100755 => 100644 frontend/client-portal/src/components/Page.tsx mode change 100755 => 100644 frontend/client-portal/src/components/Popup.tsx mode change 100755 => 100644 frontend/client-portal/src/components/ProgressBar.tsx mode change 100755 => 100644 frontend/client-portal/src/components/RtlLayout.tsx mode change 100755 => 100644 frontend/client-portal/src/components/ScrollToTop.ts mode change 100755 => 100644 frontend/client-portal/src/components/Scrollbar.tsx mode change 100755 => 100644 frontend/client-portal/src/components/SvgIconStyle.tsx mode change 100755 => 100644 frontend/client-portal/src/components/Table.tsx mode change 100755 => 100644 frontend/client-portal/src/components/ThemeColorPresets.tsx mode change 100755 => 100644 frontend/client-portal/src/components/animate/DialogAnimate.tsx mode change 100755 => 100644 frontend/client-portal/src/components/animate/FabButtonAnimate.tsx mode change 100755 => 100644 frontend/client-portal/src/components/animate/IconButtonAnimate.tsx mode change 100755 => 100644 frontend/client-portal/src/components/animate/MotionContainer.tsx mode change 100755 => 100644 frontend/client-portal/src/components/animate/MotionInView.tsx mode change 100755 => 100644 frontend/client-portal/src/components/animate/MotionLazyContainer.tsx mode change 100755 => 100644 frontend/client-portal/src/components/animate/TextAnimate.tsx mode change 100755 => 100644 frontend/client-portal/src/components/animate/features.js mode change 100755 => 100644 frontend/client-portal/src/components/animate/index.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/type.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/variants/actions.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/variants/background.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/variants/bounce.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/variants/container.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/variants/fade.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/variants/flip.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/variants/index.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/variants/path.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/variants/rotate.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/variants/scale.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/variants/slide.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/variants/transition.ts mode change 100755 => 100644 frontend/client-portal/src/components/animate/variants/zoom.ts mode change 100755 => 100644 frontend/client-portal/src/components/chart/BaseOptionChart.tsx mode change 100755 => 100644 frontend/client-portal/src/components/chart/ChartStyle.tsx mode change 100755 => 100644 frontend/client-portal/src/components/chart/index.ts mode change 100755 => 100644 frontend/client-portal/src/components/editor/EditorToolbar.tsx mode change 100755 => 100644 frontend/client-portal/src/components/editor/EditorToolbarStyle.tsx mode change 100755 => 100644 frontend/client-portal/src/components/editor/index.tsx mode change 100755 => 100644 frontend/client-portal/src/components/hook-form/FormProvider.tsx mode change 100755 => 100644 frontend/client-portal/src/components/hook-form/RHFCheckbox.tsx mode change 100755 => 100644 frontend/client-portal/src/components/hook-form/RHFDatepicker.tsx mode change 100755 => 100644 frontend/client-portal/src/components/hook-form/RHFEditor.tsx mode change 100755 => 100644 frontend/client-portal/src/components/hook-form/RHFRadioGroup.tsx mode change 100755 => 100644 frontend/client-portal/src/components/hook-form/RHFSelect.tsx mode change 100755 => 100644 frontend/client-portal/src/components/hook-form/RHFSwitch.tsx mode change 100755 => 100644 frontend/client-portal/src/components/hook-form/RHFTextField.tsx mode change 100755 => 100644 frontend/client-portal/src/components/hook-form/RHFUpload.tsx mode change 100755 => 100644 frontend/client-portal/src/components/hook-form/index.ts mode change 100755 => 100644 frontend/client-portal/src/components/nav-section/horizontal/NavItem.tsx mode change 100755 => 100644 frontend/client-portal/src/components/nav-section/horizontal/NavList.tsx mode change 100755 => 100644 frontend/client-portal/src/components/nav-section/horizontal/index.tsx mode change 100755 => 100644 frontend/client-portal/src/components/nav-section/horizontal/style.ts mode change 100755 => 100644 frontend/client-portal/src/components/nav-section/index.ts mode change 100755 => 100644 frontend/client-portal/src/components/nav-section/type.ts mode change 100755 => 100644 frontend/client-portal/src/components/nav-section/vertical/NavItem.tsx mode change 100755 => 100644 frontend/client-portal/src/components/nav-section/vertical/NavList.tsx mode change 100755 => 100644 frontend/client-portal/src/components/nav-section/vertical/index.tsx mode change 100755 => 100644 frontend/client-portal/src/components/nav-section/vertical/style.ts mode change 100755 => 100644 frontend/client-portal/src/components/settings/SettingColorPresets.tsx mode change 100755 => 100644 frontend/client-portal/src/components/settings/SettingDirection.tsx mode change 100755 => 100644 frontend/client-portal/src/components/settings/SettingFullscreen.tsx mode change 100755 => 100644 frontend/client-portal/src/components/settings/SettingLayout.tsx mode change 100755 => 100644 frontend/client-portal/src/components/settings/SettingMode.tsx mode change 100755 => 100644 frontend/client-portal/src/components/settings/SettingStretch.tsx mode change 100755 => 100644 frontend/client-portal/src/components/settings/ToggleButton.tsx mode change 100755 => 100644 frontend/client-portal/src/components/settings/index.tsx mode change 100755 => 100644 frontend/client-portal/src/components/settings/type.ts mode change 100755 => 100644 frontend/client-portal/src/components/upload/BlockContent.tsx mode change 100755 => 100644 frontend/client-portal/src/components/upload/MultiFilePreview.tsx mode change 100755 => 100644 frontend/client-portal/src/components/upload/RejectionFiles.tsx mode change 100755 => 100644 frontend/client-portal/src/components/upload/UploadAvatar.tsx mode change 100755 => 100644 frontend/client-portal/src/components/upload/UploadMultiFile.tsx mode change 100755 => 100644 frontend/client-portal/src/components/upload/UploadSingleFile.tsx mode change 100755 => 100644 frontend/client-portal/src/components/upload/index.ts mode change 100755 => 100644 frontend/client-portal/src/components/upload/type.ts mode change 100755 => 100644 frontend/client-portal/src/config.ts mode change 100755 => 100644 frontend/client-portal/src/contexts/CollapseDrawerContext.tsx mode change 100755 => 100644 frontend/client-portal/src/contexts/LaravelAuthContext.tsx mode change 100755 => 100644 frontend/client-portal/src/contexts/SettingsContext.tsx mode change 100755 => 100644 frontend/client-portal/src/contexts/UserCurrentCorporate.tsx mode change 100755 => 100644 frontend/client-portal/src/guards/AuthGuard.tsx mode change 100755 => 100644 frontend/client-portal/src/guards/GuestGuard.tsx mode change 100755 => 100644 frontend/client-portal/src/guards/RoleBasedGuard.tsx mode change 100755 => 100644 frontend/client-portal/src/hooks/useAuth.ts mode change 100755 => 100644 frontend/client-portal/src/hooks/useCollapseDrawer.ts mode change 100755 => 100644 frontend/client-portal/src/hooks/useIsMountedRef.ts mode change 100755 => 100644 frontend/client-portal/src/hooks/useLocalStorage.ts mode change 100755 => 100644 frontend/client-portal/src/hooks/useLocales.ts mode change 100755 => 100644 frontend/client-portal/src/hooks/useMap.ts mode change 100755 => 100644 frontend/client-portal/src/hooks/useOffSetTop.ts mode change 100755 => 100644 frontend/client-portal/src/hooks/useResponsive.ts mode change 100755 => 100644 frontend/client-portal/src/hooks/useSettings.ts mode change 100755 => 100644 frontend/client-portal/src/hooks/useTable.ts mode change 100755 => 100644 frontend/client-portal/src/hooks/useTabs.ts mode change 100755 => 100644 frontend/client-portal/src/hooks/useToggle.ts mode change 100755 => 100644 frontend/client-portal/src/index.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/LogoOnlyLayout.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/header/AccountPopover.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/header/ContactsPopover.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/header/CorporatePopover.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/header/LanguagePopover.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/header/NotificationsPopover.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/header/Searchbar.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/header/index.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/index.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/navbar/CollapseButton.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/navbar/NavConfig.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/navbar/NavbarAccount.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/navbar/NavbarDocs.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/navbar/NavbarHorizontal.tsx mode change 100755 => 100644 frontend/client-portal/src/layouts/dashboard/navbar/NavbarVertical.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/AlarmCenter/Index.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/AlarmCenter/List.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/AlarmCenter/ServiceMonitoring.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/AlarmCenter/UserProfile.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/ClaimReport/Index.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/Claims/CreateUpdate.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/Claims/Form.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/Claims/Index.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/Claims/List.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/Claims/Show.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/Claims/components/ClaimItems.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/Claims/components/DiagnosisHistory.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/Claims/components/DialogMemberBenefit.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/Claims/components/Documents.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/Dashboard/Index.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/Page404.tsx mode change 100755 => 100644 frontend/client-portal/src/pages/auth/Login.tsx mode change 100755 => 100644 frontend/client-portal/src/react-app-env.d.ts mode change 100755 => 100644 frontend/client-portal/src/routes/index.tsx mode change 100755 => 100644 frontend/client-portal/src/routes/paths.ts mode change 100755 => 100644 frontend/client-portal/src/sections/alarm-center/user-profile/CardBenefitSummary.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/alarm-center/user-profile/CardClaimHistory.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/alarm-center/user-profile/CardFamilyInformation.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/alarm-center/user-profile/CardPersonalInformation.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/alarm-center/user-profile/CardPolicyNumber.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/auth/AuthFirebaseSocial.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/auth/login/LoginEmailForm.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/auth/login/LoginPhoneForm.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/auth/login/VerifyCodeForm.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/auth/login/index.ts mode change 100755 => 100644 frontend/client-portal/src/sections/claim-report/CardClaimStatus.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/dashboard/CardNotification.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/dashboard/CardPolicy.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/dashboard/DialogClaimSubmitMember.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/dashboard/DialogClaimSubmitMemberSubmission.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/dashboard/DialogDetailClaim.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/dashboard/DialogNotification.tsx mode change 100755 => 100644 frontend/client-portal/src/sections/dashboard/DialogTopUpLimit.tsx mode change 100755 => 100644 frontend/client-portal/src/theme/breakpoints.ts mode change 100755 => 100644 frontend/client-portal/src/theme/index.tsx mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Accordion.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Alert.tsx mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Autocomplete.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Avatar.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Backdrop.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Badge.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Breadcrumbs.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Button.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/ButtonGroup.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Card.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Checkbox.tsx mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Chip.tsx mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/ControlLabel.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/CssBaseline.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/CustomIcons.tsx mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/DataGrid.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Dialog.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Drawer.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Fab.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Input.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Link.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/List.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/LoadingButton.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Menu.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Pagination.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Paper.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Popover.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Progress.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Radio.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Rating.tsx mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Select.tsx mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Skeleton.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Slider.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Stepper.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/SvgIcon.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Switch.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Table.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Tabs.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Timeline.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/ToggleButton.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Tooltip.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/TreeView.tsx mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/Typography.ts mode change 100755 => 100644 frontend/client-portal/src/theme/overrides/index.ts mode change 100755 => 100644 frontend/client-portal/src/theme/palette.ts mode change 100755 => 100644 frontend/client-portal/src/theme/shadows.ts mode change 100755 => 100644 frontend/client-portal/src/theme/typography.ts mode change 100755 => 100644 frontend/client-portal/src/utils/axios.ts mode change 100755 => 100644 frontend/client-portal/src/utils/cssStyles.ts mode change 100755 => 100644 frontend/client-portal/src/utils/formatNumber.ts mode change 100755 => 100644 frontend/client-portal/src/utils/formatTime.ts mode change 100755 => 100644 frontend/client-portal/src/utils/getColorPresets.ts mode change 100755 => 100644 frontend/client-portal/src/utils/getFontValue.ts mode change 100755 => 100644 frontend/client-portal/src/utils/token.ts mode change 100755 => 100644 frontend/client-portal/tsconfig.json mode change 100755 => 100644 frontend/client-portal/vite.config.ts mode change 100755 => 100644 frontend/client-portal/yarn.lock mode change 100755 => 100644 frontend/dashboard/.env.development mode change 100755 => 100644 frontend/dashboard/.env.production mode change 100755 => 100644 frontend/dashboard/.env.staging mode change 100755 => 100644 frontend/dashboard/.eslintignore mode change 100755 => 100644 frontend/dashboard/.eslintrc mode change 100755 => 100644 frontend/dashboard/.gitignore mode change 100755 => 100644 frontend/dashboard/.htaccess mode change 100755 => 100644 frontend/dashboard/.pnpm-debug.log mode change 100755 => 100644 frontend/dashboard/.prettierrc mode change 100755 => 100644 frontend/dashboard/index.html mode change 100755 => 100644 frontend/dashboard/package-lock.json mode change 100755 => 100644 frontend/dashboard/package.json mode change 100755 => 100644 frontend/dashboard/pnpm-lock.yaml mode change 100755 => 100644 frontend/dashboard/public/_redirects mode change 100755 => 100644 frontend/dashboard/public/favicon/android-chrome-192x192.png mode change 100755 => 100644 frontend/dashboard/public/favicon/android-chrome-512x512.png mode change 100755 => 100644 frontend/dashboard/public/favicon/apple-touch-icon.png mode change 100755 => 100644 frontend/dashboard/public/favicon/favicon-16x16.png mode change 100755 => 100644 frontend/dashboard/public/favicon/favicon-32x32.png mode change 100755 => 100644 frontend/dashboard/public/favicon/favicon.ico mode change 100755 => 100644 frontend/dashboard/public/fonts/CircularStd-Bold.otf mode change 100755 => 100644 frontend/dashboard/public/fonts/CircularStd-Book.otf mode change 100755 => 100644 frontend/dashboard/public/fonts/CircularStd-Medium.otf mode change 100755 => 100644 frontend/dashboard/public/fonts/Roboto-Bold.ttf mode change 100755 => 100644 frontend/dashboard/public/fonts/Roboto-Regular.ttf mode change 100755 => 100644 frontend/dashboard/public/fonts/index.css mode change 100755 => 100644 frontend/dashboard/public/icons/ic_analytics.svg mode change 100755 => 100644 frontend/dashboard/public/icons/ic_banking.svg mode change 100755 => 100644 frontend/dashboard/public/icons/ic_blog.svg mode change 100755 => 100644 frontend/dashboard/public/icons/ic_booking.svg mode change 100755 => 100644 frontend/dashboard/public/icons/ic_calendar.svg mode change 100755 => 100644 frontend/dashboard/public/icons/ic_cart.svg mode change 100755 => 100644 frontend/dashboard/public/icons/ic_chat.svg mode change 100755 => 100644 frontend/dashboard/public/icons/ic_dashboard.svg mode change 100755 => 100644 frontend/dashboard/public/icons/ic_ecommerce.svg mode change 100755 => 100644 frontend/dashboard/public/icons/ic_kanban.svg mode change 100755 => 100644 frontend/dashboard/public/icons/ic_mail.svg mode change 100755 => 100644 frontend/dashboard/public/icons/ic_user.svg mode change 100755 => 100644 frontend/dashboard/public/image/overlay.png mode change 100755 => 100644 frontend/dashboard/public/logo/logo-linksehat.png mode change 100755 => 100644 frontend/dashboard/public/logo/logo_full.jpg mode change 100755 => 100644 frontend/dashboard/public/logo/logo_full.svg mode change 100755 => 100644 frontend/dashboard/public/logo/logo_single.svg mode change 100755 => 100644 frontend/dashboard/public/manifest.json mode change 100755 => 100644 frontend/dashboard/public/robots.txt mode change 100755 => 100644 frontend/dashboard/src/@types/auth.ts mode change 100755 => 100644 frontend/dashboard/src/@types/blog.ts mode change 100755 => 100644 frontend/dashboard/src/@types/calendar.ts mode change 100755 => 100644 frontend/dashboard/src/@types/chat.ts mode change 100755 => 100644 frontend/dashboard/src/@types/corporates.ts mode change 100755 => 100644 frontend/dashboard/src/@types/diagnosis.ts mode change 100755 => 100644 frontend/dashboard/src/@types/doctor.tsx mode change 100755 => 100644 frontend/dashboard/src/@types/invoice.ts mode change 100755 => 100644 frontend/dashboard/src/@types/kanban.ts mode change 100755 => 100644 frontend/dashboard/src/@types/mail.ts mode change 100755 => 100644 frontend/dashboard/src/@types/member.ts mode change 100755 => 100644 frontend/dashboard/src/@types/organization.tsx mode change 100755 => 100644 frontend/dashboard/src/@types/paginated-data.ts mode change 100755 => 100644 frontend/dashboard/src/@types/product.ts mode change 100755 => 100644 frontend/dashboard/src/@types/user.ts mode change 100755 => 100644 frontend/dashboard/src/App.tsx mode change 100755 => 100644 frontend/dashboard/src/_mock/_analytics.tsx mode change 100755 => 100644 frontend/dashboard/src/_mock/_app.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/_banking.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/_booking.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/_countries.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/_ecommerce.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/_mock.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/_others.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/_plans.tsx mode change 100755 => 100644 frontend/dashboard/src/_mock/_top100Films.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/_user.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/address.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/boolean.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/company.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/email.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/funcs.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/index.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/map/cities.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/map/countries.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/map/map-style-basic-v8.json mode change 100755 => 100644 frontend/dashboard/src/_mock/map/stations.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/name.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/number.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/phoneNumber.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/role.ts mode change 100755 => 100644 frontend/dashboard/src/_mock/text.ts mode change 100755 => 100644 frontend/dashboard/src/assets/icon_plan_free.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/icon_plan_premium.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/icon_plan_starter.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/icon_sent.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/illustration_404.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/illustration_500.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/illustration_booking.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/illustration_checkin.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/illustration_checkout.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/illustration_coming_soon.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/illustration_doc.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/illustration_maintenance.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/illustration_motivation.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/illustration_order_complete.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/illustration_seo.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/illustration_upload.tsx mode change 100755 => 100644 frontend/dashboard/src/assets/index.ts mode change 100755 => 100644 frontend/dashboard/src/components/BadgeStatus.tsx mode change 100755 => 100644 frontend/dashboard/src/components/BasePagination.tsx mode change 100755 => 100644 frontend/dashboard/src/components/Breadcrumbs.tsx mode change 100755 => 100644 frontend/dashboard/src/components/HeaderBreadcrumbs.tsx mode change 100755 => 100644 frontend/dashboard/src/components/Iconify.tsx mode change 100755 => 100644 frontend/dashboard/src/components/Image.tsx mode change 100755 => 100644 frontend/dashboard/src/components/LaravelTable.tsx mode change 100755 => 100644 frontend/dashboard/src/components/LoadingScreen.tsx mode change 100755 => 100644 frontend/dashboard/src/components/Logo.tsx mode change 100755 => 100644 frontend/dashboard/src/components/MenuPopover.tsx mode change 100755 => 100644 frontend/dashboard/src/components/MuiDialog.tsx mode change 100755 => 100644 frontend/dashboard/src/components/MyDropzone.tsx mode change 100755 => 100644 frontend/dashboard/src/components/Page.tsx mode change 100755 => 100644 frontend/dashboard/src/components/ProgressBar.tsx mode change 100755 => 100644 frontend/dashboard/src/components/RtlLayout.tsx mode change 100755 => 100644 frontend/dashboard/src/components/ScrollToTop.ts mode change 100755 => 100644 frontend/dashboard/src/components/Scrollbar.tsx mode change 100755 => 100644 frontend/dashboard/src/components/SvgIconStyle.tsx mode change 100755 => 100644 frontend/dashboard/src/components/ThemeColorPresets.tsx mode change 100755 => 100644 frontend/dashboard/src/components/UploadImage.tsx mode change 100755 => 100644 frontend/dashboard/src/components/animate/DialogAnimate.tsx mode change 100755 => 100644 frontend/dashboard/src/components/animate/FabButtonAnimate.tsx mode change 100755 => 100644 frontend/dashboard/src/components/animate/IconButtonAnimate.tsx mode change 100755 => 100644 frontend/dashboard/src/components/animate/MotionContainer.tsx mode change 100755 => 100644 frontend/dashboard/src/components/animate/MotionInView.tsx mode change 100755 => 100644 frontend/dashboard/src/components/animate/MotionLazyContainer.tsx mode change 100755 => 100644 frontend/dashboard/src/components/animate/TextAnimate.tsx mode change 100755 => 100644 frontend/dashboard/src/components/animate/features.js mode change 100755 => 100644 frontend/dashboard/src/components/animate/index.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/type.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/variants/actions.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/variants/background.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/variants/bounce.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/variants/container.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/variants/fade.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/variants/flip.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/variants/index.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/variants/path.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/variants/rotate.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/variants/scale.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/variants/slide.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/variants/transition.ts mode change 100755 => 100644 frontend/dashboard/src/components/animate/variants/zoom.ts mode change 100755 => 100644 frontend/dashboard/src/components/autocomplete/AutocompleteDiagnosis.tsx mode change 100755 => 100644 frontend/dashboard/src/components/autocomplete/AutocompleteDiagnosisControlled.tsx mode change 100755 => 100644 frontend/dashboard/src/components/autocomplete/AutocompleteDoctor.tsx mode change 100755 => 100644 frontend/dashboard/src/components/autocomplete/AutocompleteHealthcare.tsx mode change 100755 => 100644 frontend/dashboard/src/components/autocomplete/AutocompleteLinksehatHealthcare.tsx mode change 100755 => 100644 frontend/dashboard/src/components/chart/BaseOptionChart.tsx mode change 100755 => 100644 frontend/dashboard/src/components/chart/ChartStyle.tsx mode change 100755 => 100644 frontend/dashboard/src/components/chart/index.ts mode change 100755 => 100644 frontend/dashboard/src/components/dialogs/DialogDetailClaim.tsx mode change 100755 => 100644 frontend/dashboard/src/components/dialogs/MemberSelectDialog.tsx mode change 100755 => 100644 frontend/dashboard/src/components/editor/EditorToolbar.tsx mode change 100755 => 100644 frontend/dashboard/src/components/editor/EditorToolbarStyle.tsx mode change 100755 => 100644 frontend/dashboard/src/components/editor/index.tsx mode change 100755 => 100644 frontend/dashboard/src/components/hook-form/FormProvider.tsx mode change 100755 => 100644 frontend/dashboard/src/components/hook-form/RHFAutocomplete.tsx mode change 100755 => 100644 frontend/dashboard/src/components/hook-form/RHFCheckbox.tsx mode change 100755 => 100644 frontend/dashboard/src/components/hook-form/RHFDatepicker.tsx mode change 100755 => 100644 frontend/dashboard/src/components/hook-form/RHFEditor.tsx mode change 100755 => 100644 frontend/dashboard/src/components/hook-form/RHFRadioGroup.tsx mode change 100755 => 100644 frontend/dashboard/src/components/hook-form/RHFSelect.tsx mode change 100755 => 100644 frontend/dashboard/src/components/hook-form/RHFSwitch.tsx mode change 100755 => 100644 frontend/dashboard/src/components/hook-form/RHFTextField.tsx mode change 100755 => 100644 frontend/dashboard/src/components/hook-form/RHFUpload.tsx mode change 100755 => 100644 frontend/dashboard/src/components/hook-form/index.ts mode change 100755 => 100644 frontend/dashboard/src/components/nav-section/horizontal/NavItem.tsx mode change 100755 => 100644 frontend/dashboard/src/components/nav-section/horizontal/NavList.tsx mode change 100755 => 100644 frontend/dashboard/src/components/nav-section/horizontal/index.tsx mode change 100755 => 100644 frontend/dashboard/src/components/nav-section/horizontal/style.ts mode change 100755 => 100644 frontend/dashboard/src/components/nav-section/index.ts mode change 100755 => 100644 frontend/dashboard/src/components/nav-section/type.ts mode change 100755 => 100644 frontend/dashboard/src/components/nav-section/vertical/NavItem.tsx mode change 100755 => 100644 frontend/dashboard/src/components/nav-section/vertical/NavList.tsx mode change 100755 => 100644 frontend/dashboard/src/components/nav-section/vertical/index.tsx mode change 100755 => 100644 frontend/dashboard/src/components/nav-section/vertical/style.ts mode change 100755 => 100644 frontend/dashboard/src/components/settings/SettingColorPresets.tsx mode change 100755 => 100644 frontend/dashboard/src/components/settings/SettingDirection.tsx mode change 100755 => 100644 frontend/dashboard/src/components/settings/SettingFullscreen.tsx mode change 100755 => 100644 frontend/dashboard/src/components/settings/SettingLayout.tsx mode change 100755 => 100644 frontend/dashboard/src/components/settings/SettingMode.tsx mode change 100755 => 100644 frontend/dashboard/src/components/settings/SettingStretch.tsx mode change 100755 => 100644 frontend/dashboard/src/components/settings/ToggleButton.tsx mode change 100755 => 100644 frontend/dashboard/src/components/settings/index.tsx mode change 100755 => 100644 frontend/dashboard/src/components/settings/type.ts mode change 100755 => 100644 frontend/dashboard/src/components/upload/BlockContent.tsx mode change 100755 => 100644 frontend/dashboard/src/components/upload/MultiFilePreview.tsx mode change 100755 => 100644 frontend/dashboard/src/components/upload/RejectionFiles.tsx mode change 100755 => 100644 frontend/dashboard/src/components/upload/UploadAvatar.tsx mode change 100755 => 100644 frontend/dashboard/src/components/upload/UploadMultiFile.tsx mode change 100755 => 100644 frontend/dashboard/src/components/upload/UploadSingleFile.tsx mode change 100755 => 100644 frontend/dashboard/src/components/upload/index.ts mode change 100755 => 100644 frontend/dashboard/src/components/upload/type.ts mode change 100755 => 100644 frontend/dashboard/src/config.ts mode change 100755 => 100644 frontend/dashboard/src/contexts/CollapseDrawerContext.tsx mode change 100755 => 100644 frontend/dashboard/src/contexts/ConfiguredCorporateContext.tsx mode change 100755 => 100644 frontend/dashboard/src/contexts/LaravelAuthContext.tsx mode change 100755 => 100644 frontend/dashboard/src/contexts/SettingsContext.tsx mode change 100755 => 100644 frontend/dashboard/src/guards/AuthGuard.tsx mode change 100755 => 100644 frontend/dashboard/src/guards/GuestGuard.tsx mode change 100755 => 100644 frontend/dashboard/src/guards/RoleBasedGuard.tsx mode change 100755 => 100644 frontend/dashboard/src/hooks/useAuth.ts mode change 100755 => 100644 frontend/dashboard/src/hooks/useCollapseDrawer.ts mode change 100755 => 100644 frontend/dashboard/src/hooks/useIsMountedRef.ts mode change 100755 => 100644 frontend/dashboard/src/hooks/useLocalStorage.ts mode change 100755 => 100644 frontend/dashboard/src/hooks/useLocales.ts mode change 100755 => 100644 frontend/dashboard/src/hooks/useOffSetTop.ts mode change 100755 => 100644 frontend/dashboard/src/hooks/useResponsive.ts mode change 100755 => 100644 frontend/dashboard/src/hooks/useSettings.ts mode change 100755 => 100644 frontend/dashboard/src/hooks/useTable.ts mode change 100755 => 100644 frontend/dashboard/src/hooks/useTabs.ts mode change 100755 => 100644 frontend/dashboard/src/hooks/useToggle.ts mode change 100755 => 100644 frontend/dashboard/src/index.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/LogoOnlyLayout.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/corporate/CorporateConfigLayout.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/header/AccountPopover.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/header/ContactsPopover.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/header/LanguagePopover.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/header/NotificationsPopover.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/header/Searchbar.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/header/index.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/index.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/navbar/CollapseButton.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/navbar/NavConfig.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/navbar/NavbarAccount.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/navbar/NavbarDocs.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/navbar/NavbarHorizontal.tsx mode change 100755 => 100644 frontend/dashboard/src/layouts/dashboard/navbar/NavbarVertical.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/ClaimRequests/CreateUpdate.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/ClaimRequests/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/ClaimRequests/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/ClaimRequests/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Claims/CreateUpdate.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Claims/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Claims/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Claims/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Claims/Show.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Claims/components/ClaimDetail.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Claims/components/ClaimItems.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Claims/components/DiagnosisHistory.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Claims/components/DialogDocumentRequest.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Claims/components/DialogHistoryPerawatan.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Claims/components/DialogMemberBenefit.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Claims/components/Documents.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Claims/components/FormHistoryPerawatan.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Benefit/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Benefit/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Benefit/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Benefit/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Benefit/sections/DialogLog.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/ClaimHistory/CreateUpdate.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/ClaimHistory/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/ClaimHistory/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/ClaimHistory/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/ConfigLayout.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/CorporateBenefit/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/CorporateBenefit/CreateUpdate.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/CorporateBenefit/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/CorporateBenefit/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/CorporateBenefit/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/CorporatePlan/CreateUpdate.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/CorporatePlan/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/CorporatePlan/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/CorporatePlan/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/CorporateTabNavigations.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/CreateUpdate.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Division/CreateUpdate.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Division/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Division/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Division/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Formularium/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Formularium/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Hospital/CreateUpdate.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Hospital/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Hospital/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Hospital/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Member/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Member/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Member/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Member/sections/DialogLog.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Plan/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Plan/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Plan/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Plan/sections/DialogLog.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Services/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Services/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Services/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Services/sections/DialogLog.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Corporates/Show.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Dashboard.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Diagnosis/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Diagnosis/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Diagnosis/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Doctors/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Doctors/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Doctors/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Doctors/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Drug/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Drug/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Drug/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Formularium/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Formularium/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Formularium/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Formularium/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Hospitals/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Hospitals/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Hospitals/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Master/Hospitals/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Medicines/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Members/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Page404.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Profile/FormPassword.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Profile/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/Appointments/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/Appointments/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/Appointments/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/Appointments/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/Appointments/Show.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/Appointments/View.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/LinksehatPayments/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/LinksehatPayments/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/LinksehatPayments/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/LinksehatPayments/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/LinksehatPayments/Show.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/LinksehatPayments/View.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/Livechat/Create.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/Livechat/Form.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/Livechat/Index.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/Livechat/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/Livechat/Show.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Report/Livechat/View.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/Service/Membership/List.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/auth/ForgetPassword.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/auth/Login.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/auth/Register.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/auth/ResetPassword.tsx mode change 100755 => 100644 frontend/dashboard/src/pages/auth/VerifyCode.tsx mode change 100755 => 100644 frontend/dashboard/src/react-app-env.d.ts mode change 100755 => 100644 frontend/dashboard/src/routes/index.tsx mode change 100755 => 100644 frontend/dashboard/src/routes/paths.ts mode change 100755 => 100644 frontend/dashboard/src/sections/auth/AuthFirebaseSocial.tsx mode change 100755 => 100644 frontend/dashboard/src/sections/auth/forget-password/ForgetPasswordForm.tsx mode change 100755 => 100644 frontend/dashboard/src/sections/auth/forget-password/index.ts mode change 100755 => 100644 frontend/dashboard/src/sections/auth/login/LoginForm.tsx mode change 100755 => 100644 frontend/dashboard/src/sections/auth/login/index.ts mode change 100755 => 100644 frontend/dashboard/src/sections/auth/register/RegisterForm.tsx mode change 100755 => 100644 frontend/dashboard/src/sections/auth/register/index.ts mode change 100755 => 100644 frontend/dashboard/src/sections/auth/reset-password/ResetPasswordForm.tsx mode change 100755 => 100644 frontend/dashboard/src/sections/auth/reset-password/index.ts mode change 100755 => 100644 frontend/dashboard/src/sections/auth/verify-code/VerifyCodeForm.tsx mode change 100755 => 100644 frontend/dashboard/src/sections/auth/verify-code/index.ts mode change 100755 => 100644 frontend/dashboard/src/sections/dashboard/SomethingUsage.tsx mode change 100755 => 100644 frontend/dashboard/src/theme/breakpoints.ts mode change 100755 => 100644 frontend/dashboard/src/theme/index.tsx mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Accordion.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Alert.tsx mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Autocomplete.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Avatar.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Backdrop.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Badge.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Breadcrumbs.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Button.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/ButtonGroup.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Card.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Checkbox.tsx mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Chip.tsx mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/ControlLabel.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/CssBaseline.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/CustomIcons.tsx mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/DataGrid.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Dialog.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Drawer.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Fab.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Input.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Link.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/List.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/LoadingButton.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Menu.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Pagination.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Paper.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Popover.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Progress.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Radio.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Rating.tsx mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Select.tsx mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Skeleton.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Slider.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Stepper.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/SvgIcon.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Switch.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Table.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Tabs.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Timeline.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/ToggleButton.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Tooltip.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/TreeView.tsx mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/Typography.ts mode change 100755 => 100644 frontend/dashboard/src/theme/overrides/index.ts mode change 100755 => 100644 frontend/dashboard/src/theme/palette.ts mode change 100755 => 100644 frontend/dashboard/src/theme/shadows.ts mode change 100755 => 100644 frontend/dashboard/src/theme/typography.ts mode change 100755 => 100644 frontend/dashboard/src/utils/axios.ts mode change 100755 => 100644 frontend/dashboard/src/utils/cssStyles.ts mode change 100755 => 100644 frontend/dashboard/src/utils/formatNumber.ts mode change 100755 => 100644 frontend/dashboard/src/utils/formatString.ts mode change 100755 => 100644 frontend/dashboard/src/utils/formatTime.ts mode change 100755 => 100644 frontend/dashboard/src/utils/getColorPresets.ts mode change 100755 => 100644 frontend/dashboard/src/utils/getFontValue.ts mode change 100755 => 100644 frontend/dashboard/src/utils/token.ts mode change 100755 => 100644 frontend/dashboard/tsconfig.json mode change 100755 => 100644 frontend/dashboard/vite.config.ts mode change 100755 => 100644 frontend/dashboard/yarn.lock mode change 100755 => 100644 frontend/hospital-portal/.env.development mode change 100755 => 100644 frontend/hospital-portal/.env.staging mode change 100755 => 100644 frontend/hospital-portal/.eslintignore mode change 100755 => 100644 frontend/hospital-portal/.eslintrc mode change 100755 => 100644 frontend/hospital-portal/.gitignore mode change 100755 => 100644 frontend/hospital-portal/.htaccess mode change 100755 => 100644 frontend/hospital-portal/.pnpm-debug.log mode change 100755 => 100644 frontend/hospital-portal/.prettierrc mode change 100755 => 100644 frontend/hospital-portal/index.html mode change 100755 => 100644 frontend/hospital-portal/package-lock.json mode change 100755 => 100644 frontend/hospital-portal/package.json mode change 100755 => 100644 frontend/hospital-portal/pnpm-lock.yaml mode change 100755 => 100644 frontend/hospital-portal/public/_redirects mode change 100755 => 100644 frontend/hospital-portal/public/favicon/android-chrome-192x192.png mode change 100755 => 100644 frontend/hospital-portal/public/favicon/android-chrome-512x512.png mode change 100755 => 100644 frontend/hospital-portal/public/favicon/apple-touch-icon.png mode change 100755 => 100644 frontend/hospital-portal/public/favicon/favicon-16x16.png mode change 100755 => 100644 frontend/hospital-portal/public/favicon/favicon-32x32.png mode change 100755 => 100644 frontend/hospital-portal/public/favicon/favicon.ico mode change 100755 => 100644 frontend/hospital-portal/public/fonts/CircularStd-Bold.otf mode change 100755 => 100644 frontend/hospital-portal/public/fonts/CircularStd-Book.otf mode change 100755 => 100644 frontend/hospital-portal/public/fonts/CircularStd-Medium.otf mode change 100755 => 100644 frontend/hospital-portal/public/fonts/Roboto-Bold.ttf mode change 100755 => 100644 frontend/hospital-portal/public/fonts/Roboto-Regular.ttf mode change 100755 => 100644 frontend/hospital-portal/public/fonts/index.css mode change 100755 => 100644 frontend/hospital-portal/public/icons/ic_analytics.svg mode change 100755 => 100644 frontend/hospital-portal/public/icons/ic_banking.svg mode change 100755 => 100644 frontend/hospital-portal/public/icons/ic_blog.svg mode change 100755 => 100644 frontend/hospital-portal/public/icons/ic_booking.svg mode change 100755 => 100644 frontend/hospital-portal/public/icons/ic_calendar.svg mode change 100755 => 100644 frontend/hospital-portal/public/icons/ic_cart.svg mode change 100755 => 100644 frontend/hospital-portal/public/icons/ic_chat.svg mode change 100755 => 100644 frontend/hospital-portal/public/icons/ic_dashboard.svg mode change 100755 => 100644 frontend/hospital-portal/public/icons/ic_ecommerce.svg mode change 100755 => 100644 frontend/hospital-portal/public/icons/ic_kanban.svg mode change 100755 => 100644 frontend/hospital-portal/public/icons/ic_mail.svg mode change 100755 => 100644 frontend/hospital-portal/public/icons/ic_user.svg mode change 100755 => 100644 frontend/hospital-portal/public/image/overlay.png mode change 100755 => 100644 frontend/hospital-portal/public/logo/logo-linksehat.png mode change 100755 => 100644 frontend/hospital-portal/public/logo/logo_full.jpg mode change 100755 => 100644 frontend/hospital-portal/public/logo/logo_full.svg mode change 100755 => 100644 frontend/hospital-portal/public/logo/logo_single.svg mode change 100755 => 100644 frontend/hospital-portal/public/manifest.json mode change 100755 => 100644 frontend/hospital-portal/public/robots.txt mode change 100755 => 100644 frontend/hospital-portal/src/@types/auth.ts mode change 100755 => 100644 frontend/hospital-portal/src/@types/blog.ts mode change 100755 => 100644 frontend/hospital-portal/src/@types/calendar.ts mode change 100755 => 100644 frontend/hospital-portal/src/@types/chat.ts mode change 100755 => 100644 frontend/hospital-portal/src/@types/corporates.ts mode change 100755 => 100644 frontend/hospital-portal/src/@types/diagnosis.ts mode change 100755 => 100644 frontend/hospital-portal/src/@types/doctor.tsx mode change 100755 => 100644 frontend/hospital-portal/src/@types/invoice.ts mode change 100755 => 100644 frontend/hospital-portal/src/@types/kanban.ts mode change 100755 => 100644 frontend/hospital-portal/src/@types/mail.ts mode change 100755 => 100644 frontend/hospital-portal/src/@types/member.ts mode change 100755 => 100644 frontend/hospital-portal/src/@types/organization.tsx mode change 100755 => 100644 frontend/hospital-portal/src/@types/paginated-data.ts mode change 100755 => 100644 frontend/hospital-portal/src/@types/product.ts mode change 100755 => 100644 frontend/hospital-portal/src/@types/user.ts mode change 100755 => 100644 frontend/hospital-portal/src/App.tsx mode change 100755 => 100644 frontend/hospital-portal/src/_mock/_analytics.tsx mode change 100755 => 100644 frontend/hospital-portal/src/_mock/_app.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/_banking.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/_booking.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/_countries.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/_ecommerce.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/_mock.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/_others.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/_plans.tsx mode change 100755 => 100644 frontend/hospital-portal/src/_mock/_top100Films.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/_user.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/address.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/boolean.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/company.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/email.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/funcs.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/map/cities.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/map/countries.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/map/map-style-basic-v8.json mode change 100755 => 100644 frontend/hospital-portal/src/_mock/map/stations.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/name.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/number.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/phoneNumber.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/role.ts mode change 100755 => 100644 frontend/hospital-portal/src/_mock/text.ts mode change 100755 => 100644 frontend/hospital-portal/src/assets/icon_plan_free.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/icon_plan_premium.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/icon_plan_starter.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/icon_sent.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/illustration_404.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/illustration_500.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/illustration_booking.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/illustration_checkin.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/illustration_checkout.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/illustration_coming_soon.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/illustration_doc.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/illustration_maintenance.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/illustration_motivation.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/illustration_order_complete.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/illustration_seo.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/illustration_upload.tsx mode change 100755 => 100644 frontend/hospital-portal/src/assets/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/BadgeStatus.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/BasePagination.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/BaseTablePagination.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/Breadcrumbs.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/HeaderBreadcrumbs.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/Iconify.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/Image.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/LaravelTable.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/LoadingScreen.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/Logo.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/MenuPopover.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/MuiDialog.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/MyDropzone.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/Page.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/ProgressBar.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/RtlLayout.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/ScrollToTop.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/Scrollbar.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/SvgIconStyle.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/ThemeColorPresets.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/UploadImage.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/DialogAnimate.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/FabButtonAnimate.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/IconButtonAnimate.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/MotionContainer.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/MotionInView.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/MotionLazyContainer.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/TextAnimate.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/features.js mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/type.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/variants/actions.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/variants/background.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/variants/bounce.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/variants/container.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/variants/fade.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/variants/flip.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/variants/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/variants/path.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/variants/rotate.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/variants/scale.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/variants/slide.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/variants/transition.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/animate/variants/zoom.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/chart/BaseOptionChart.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/chart/ChartStyle.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/chart/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/dialogs/DialogDetailClaim.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/dialogs/MemberSelectDialog.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/editor/EditorToolbar.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/editor/EditorToolbarStyle.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/editor/index.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/hook-form/FormProvider.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/hook-form/RHFAutocomplete.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/hook-form/RHFCheckbox.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/hook-form/RHFDatepicker.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/hook-form/RHFEditor.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/hook-form/RHFRadioGroup.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/hook-form/RHFSelect.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/hook-form/RHFSwitch.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/hook-form/RHFTextField.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/hook-form/RHFUpload.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/hook-form/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/nav-section/horizontal/NavItem.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/nav-section/horizontal/NavList.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/nav-section/horizontal/index.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/nav-section/horizontal/style.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/nav-section/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/nav-section/type.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/nav-section/vertical/NavItem.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/nav-section/vertical/NavList.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/nav-section/vertical/index.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/nav-section/vertical/style.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/settings/SettingColorPresets.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/settings/SettingDirection.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/settings/SettingFullscreen.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/settings/SettingLayout.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/settings/SettingMode.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/settings/SettingStretch.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/settings/ToggleButton.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/settings/index.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/settings/type.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/upload/BlockContent.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/upload/MultiFilePreview.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/upload/RejectionFiles.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/upload/UploadAvatar.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/upload/UploadMultiFile.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/upload/UploadSingleFile.tsx mode change 100755 => 100644 frontend/hospital-portal/src/components/upload/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/components/upload/type.ts mode change 100755 => 100644 frontend/hospital-portal/src/config.ts mode change 100755 => 100644 frontend/hospital-portal/src/contexts/CollapseDrawerContext.tsx mode change 100755 => 100644 frontend/hospital-portal/src/contexts/ConfiguredCorporateContext.tsx mode change 100755 => 100644 frontend/hospital-portal/src/contexts/LaravelAuthContext.tsx mode change 100755 => 100644 frontend/hospital-portal/src/contexts/SettingsContext.tsx mode change 100755 => 100644 frontend/hospital-portal/src/guards/AuthGuard.tsx mode change 100755 => 100644 frontend/hospital-portal/src/guards/GuestGuard.tsx mode change 100755 => 100644 frontend/hospital-portal/src/guards/RoleBasedGuard.tsx mode change 100755 => 100644 frontend/hospital-portal/src/hooks/useAuth.ts mode change 100755 => 100644 frontend/hospital-portal/src/hooks/useCollapseDrawer.ts mode change 100755 => 100644 frontend/hospital-portal/src/hooks/useIsMountedRef.ts mode change 100755 => 100644 frontend/hospital-portal/src/hooks/useLocalStorage.ts mode change 100755 => 100644 frontend/hospital-portal/src/hooks/useLocales.ts mode change 100755 => 100644 frontend/hospital-portal/src/hooks/useOffSetTop.ts mode change 100755 => 100644 frontend/hospital-portal/src/hooks/useResponsive.ts mode change 100755 => 100644 frontend/hospital-portal/src/hooks/useSettings.ts mode change 100755 => 100644 frontend/hospital-portal/src/hooks/useTable.ts mode change 100755 => 100644 frontend/hospital-portal/src/hooks/useTabs.ts mode change 100755 => 100644 frontend/hospital-portal/src/hooks/useToggle.ts mode change 100755 => 100644 frontend/hospital-portal/src/index.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/LogoOnlyLayout.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/corporate/CorporateConfigLayout.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/header/AccountPopover.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/header/ContactsPopover.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/header/LanguagePopover.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/header/NotificationsPopover.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/header/Searchbar.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/header/index.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/index.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/navbar/CollapseButton.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/navbar/NavConfig.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/navbar/NavbarAccount.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/navbar/NavbarDocs.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/navbar/NavbarHorizontal.tsx mode change 100755 => 100644 frontend/hospital-portal/src/layouts/dashboard/navbar/NavbarVertical.tsx mode change 100755 => 100644 frontend/hospital-portal/src/pages/Dashboard.tsx mode change 100755 => 100644 frontend/hospital-portal/src/pages/Page404.tsx mode change 100755 => 100644 frontend/hospital-portal/src/pages/auth/ForgetPassword.tsx mode change 100755 => 100644 frontend/hospital-portal/src/pages/auth/Login.tsx mode change 100755 => 100644 frontend/hospital-portal/src/pages/auth/Register.tsx mode change 100755 => 100644 frontend/hospital-portal/src/pages/auth/ResetPassword.tsx mode change 100755 => 100644 frontend/hospital-portal/src/pages/auth/VerifyCode.tsx mode change 100755 => 100644 frontend/hospital-portal/src/react-app-env.d.ts mode change 100755 => 100644 frontend/hospital-portal/src/routes/index.tsx mode change 100755 => 100644 frontend/hospital-portal/src/routes/paths.ts mode change 100755 => 100644 frontend/hospital-portal/src/sections/auth/AuthFirebaseSocial.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/auth/forget-password/ForgetPasswordForm.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/auth/forget-password/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/sections/auth/login/LoginForm.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/auth/login/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/sections/auth/register/RegisterForm.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/auth/register/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/sections/auth/reset-password/ResetPasswordForm.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/auth/reset-password/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/sections/auth/verify-code/VerifyCodeForm.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/auth/verify-code/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/sections/dashboard/CardNotification.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/dashboard/CardSearchMember.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/dashboard/DashboardTable.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/dashboard/DialogMember.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/dashboard/DialogNotification.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/dashboard/FormRequestClaim.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/dashboard/NotificationCard.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/dashboard/TableList.tsx mode change 100755 => 100644 frontend/hospital-portal/src/sections/dashboard/asdasdasdDialogDetailClaim.tsx mode change 100755 => 100644 frontend/hospital-portal/src/theme/breakpoints.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/index.tsx mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Accordion.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Alert.tsx mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Autocomplete.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Avatar.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Backdrop.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Badge.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Breadcrumbs.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Button.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/ButtonGroup.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Card.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Checkbox.tsx mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Chip.tsx mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/ControlLabel.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/CssBaseline.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/CustomIcons.tsx mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/DataGrid.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Dialog.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Drawer.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Fab.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Input.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Link.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/List.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/LoadingButton.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Menu.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Pagination.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Paper.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Popover.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Progress.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Radio.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Rating.tsx mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Select.tsx mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Skeleton.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Slider.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Stepper.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/SvgIcon.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Switch.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Table.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Tabs.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Timeline.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/ToggleButton.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Tooltip.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/TreeView.tsx mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/Typography.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/overrides/index.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/palette.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/shadows.ts mode change 100755 => 100644 frontend/hospital-portal/src/theme/typography.ts mode change 100755 => 100644 frontend/hospital-portal/src/utils/axios.ts mode change 100755 => 100644 frontend/hospital-portal/src/utils/cssStyles.ts mode change 100755 => 100644 frontend/hospital-portal/src/utils/formatNumber.ts mode change 100755 => 100644 frontend/hospital-portal/src/utils/formatString.ts mode change 100755 => 100644 frontend/hospital-portal/src/utils/formatTime.ts mode change 100755 => 100644 frontend/hospital-portal/src/utils/getColorPresets.ts mode change 100755 => 100644 frontend/hospital-portal/src/utils/getFontValue.ts mode change 100755 => 100644 frontend/hospital-portal/src/utils/jsonToFormData.ts mode change 100755 => 100644 frontend/hospital-portal/src/utils/token.ts mode change 100755 => 100644 frontend/hospital-portal/tsconfig.json mode change 100755 => 100644 frontend/hospital-portal/vite.config.ts mode change 100755 => 100644 frontend/hospital-portal/yarn.lock mode change 100755 => 100644 lang/en/auth.php mode change 100755 => 100644 lang/en/enrollment.php mode change 100755 => 100644 lang/en/pagination.php mode change 100755 => 100644 lang/en/passwords.php mode change 100755 => 100644 lang/en/validation.php mode change 100755 => 100644 modules_statuses.json mode change 100755 => 100644 package-lock.json mode change 100755 => 100644 package.json mode change 100755 => 100644 phpunit.xml mode change 100755 => 100644 pnpm-lock.yaml mode change 100755 => 100644 public/.htaccess mode change 100755 => 100644 public/build/assets/app-179954eb.css mode change 100755 => 100644 public/build/assets/app-c3828592.js mode change 100755 => 100644 public/build/manifest.json mode change 100755 => 100644 public/client-portal/.htaccess mode change 100755 => 100644 public/client-portal/_redirects mode change 100755 => 100644 public/client-portal/favicon/android-chrome-192x192.png mode change 100755 => 100644 public/client-portal/favicon/android-chrome-512x512.png mode change 100755 => 100644 public/client-portal/favicon/apple-touch-icon.png mode change 100755 => 100644 public/client-portal/favicon/favicon-16x16.png mode change 100755 => 100644 public/client-portal/favicon/favicon-32x32.png mode change 100755 => 100644 public/client-portal/favicon/favicon.ico mode change 100755 => 100644 public/client-portal/fonts/CircularStd-Bold.otf mode change 100755 => 100644 public/client-portal/fonts/CircularStd-Book.otf mode change 100755 => 100644 public/client-portal/fonts/CircularStd-Medium.otf mode change 100755 => 100644 public/client-portal/fonts/Roboto-Bold.ttf mode change 100755 => 100644 public/client-portal/fonts/Roboto-Regular.ttf mode change 100755 => 100644 public/client-portal/fonts/index.css mode change 100755 => 100644 public/client-portal/icons/ic_analytics.svg mode change 100755 => 100644 public/client-portal/icons/ic_banking.svg mode change 100755 => 100644 public/client-portal/icons/ic_blog.svg mode change 100755 => 100644 public/client-portal/icons/ic_booking.svg mode change 100755 => 100644 public/client-portal/icons/ic_calendar.svg mode change 100755 => 100644 public/client-portal/icons/ic_cart.svg mode change 100755 => 100644 public/client-portal/icons/ic_chat.svg mode change 100755 => 100644 public/client-portal/icons/ic_dashboard.svg mode change 100755 => 100644 public/client-portal/icons/ic_ecommerce.svg mode change 100755 => 100644 public/client-portal/icons/ic_kanban.svg mode change 100755 => 100644 public/client-portal/icons/ic_mail.svg mode change 100755 => 100644 public/client-portal/icons/ic_user.svg mode change 100755 => 100644 public/client-portal/images/husband-user-profile.png mode change 100755 => 100644 public/client-portal/images/login-image.mp4 mode change 100755 => 100644 public/client-portal/images/login-image.webm mode change 100755 => 100644 public/client-portal/images/member.png mode change 100755 => 100644 public/client-portal/images/user-profile.png mode change 100755 => 100644 public/client-portal/logo/logo-linksehat.png mode change 100755 => 100644 public/client-portal/logo/logo_full.jpg mode change 100755 => 100644 public/client-portal/logo/logo_full.svg mode change 100755 => 100644 public/client-portal/logo/logo_single.svg mode change 100755 => 100644 public/client-portal/manifest.json mode change 100755 => 100644 public/client-portal/robots.txt mode change 100755 => 100644 public/dashboard-staging/.htaccess mode change 100755 => 100644 public/dashboard-staging/_redirects mode change 100755 => 100644 public/dashboard-staging/favicon/android-chrome-192x192.png mode change 100755 => 100644 public/dashboard-staging/favicon/android-chrome-512x512.png mode change 100755 => 100644 public/dashboard-staging/favicon/apple-touch-icon.png mode change 100755 => 100644 public/dashboard-staging/favicon/favicon-16x16.png mode change 100755 => 100644 public/dashboard-staging/favicon/favicon-32x32.png mode change 100755 => 100644 public/dashboard-staging/favicon/favicon.ico mode change 100755 => 100644 public/dashboard-staging/fonts/CircularStd-Bold.otf mode change 100755 => 100644 public/dashboard-staging/fonts/CircularStd-Book.otf mode change 100755 => 100644 public/dashboard-staging/fonts/CircularStd-Medium.otf mode change 100755 => 100644 public/dashboard-staging/fonts/Roboto-Bold.ttf mode change 100755 => 100644 public/dashboard-staging/fonts/Roboto-Regular.ttf mode change 100755 => 100644 public/dashboard-staging/fonts/index.css mode change 100755 => 100644 public/dashboard-staging/icons/ic_analytics.svg mode change 100755 => 100644 public/dashboard-staging/icons/ic_banking.svg mode change 100755 => 100644 public/dashboard-staging/icons/ic_blog.svg mode change 100755 => 100644 public/dashboard-staging/icons/ic_booking.svg mode change 100755 => 100644 public/dashboard-staging/icons/ic_calendar.svg mode change 100755 => 100644 public/dashboard-staging/icons/ic_cart.svg mode change 100755 => 100644 public/dashboard-staging/icons/ic_chat.svg mode change 100755 => 100644 public/dashboard-staging/icons/ic_dashboard.svg mode change 100755 => 100644 public/dashboard-staging/icons/ic_ecommerce.svg mode change 100755 => 100644 public/dashboard-staging/icons/ic_kanban.svg mode change 100755 => 100644 public/dashboard-staging/icons/ic_mail.svg mode change 100755 => 100644 public/dashboard-staging/icons/ic_user.svg mode change 100755 => 100644 public/dashboard-staging/image/overlay.png mode change 100755 => 100644 public/dashboard-staging/logo/logo-linksehat.png mode change 100755 => 100644 public/dashboard-staging/logo/logo_full.jpg mode change 100755 => 100644 public/dashboard-staging/logo/logo_full.svg mode change 100755 => 100644 public/dashboard-staging/logo/logo_single.svg mode change 100755 => 100644 public/dashboard-staging/manifest.json mode change 100755 => 100644 public/dashboard-staging/robots.txt mode change 100755 => 100644 public/dashboard/.htaccess mode change 100755 => 100644 public/dashboard/_redirects mode change 100755 => 100644 public/dashboard/assets/index.c91e36b5.css mode change 100755 => 100644 public/dashboard/assets/paths.3971dbe6.js mode change 100755 => 100644 public/dashboard/favicon/android-chrome-192x192.png mode change 100755 => 100644 public/dashboard/favicon/android-chrome-512x512.png mode change 100755 => 100644 public/dashboard/favicon/apple-touch-icon.png mode change 100755 => 100644 public/dashboard/favicon/favicon-16x16.png mode change 100755 => 100644 public/dashboard/favicon/favicon-32x32.png mode change 100755 => 100644 public/dashboard/favicon/favicon.ico mode change 100755 => 100644 public/dashboard/fonts/CircularStd-Bold.otf mode change 100755 => 100644 public/dashboard/fonts/CircularStd-Book.otf mode change 100755 => 100644 public/dashboard/fonts/CircularStd-Medium.otf mode change 100755 => 100644 public/dashboard/fonts/Roboto-Bold.ttf mode change 100755 => 100644 public/dashboard/fonts/Roboto-Regular.ttf mode change 100755 => 100644 public/dashboard/fonts/index.css mode change 100755 => 100644 public/dashboard/icons/ic_analytics.svg mode change 100755 => 100644 public/dashboard/icons/ic_banking.svg mode change 100755 => 100644 public/dashboard/icons/ic_blog.svg mode change 100755 => 100644 public/dashboard/icons/ic_booking.svg mode change 100755 => 100644 public/dashboard/icons/ic_calendar.svg mode change 100755 => 100644 public/dashboard/icons/ic_cart.svg mode change 100755 => 100644 public/dashboard/icons/ic_chat.svg mode change 100755 => 100644 public/dashboard/icons/ic_dashboard.svg mode change 100755 => 100644 public/dashboard/icons/ic_ecommerce.svg mode change 100755 => 100644 public/dashboard/icons/ic_kanban.svg mode change 100755 => 100644 public/dashboard/icons/ic_mail.svg mode change 100755 => 100644 public/dashboard/icons/ic_user.svg mode change 100755 => 100644 public/dashboard/image/overlay.png mode change 100755 => 100644 public/dashboard/index.html mode change 100755 => 100644 public/dashboard/logo/logo-linksehat.png mode change 100755 => 100644 public/dashboard/logo/logo_full.jpg mode change 100755 => 100644 public/dashboard/logo/logo_full.svg mode change 100755 => 100644 public/dashboard/logo/logo_single.svg mode change 100755 => 100644 public/dashboard/manifest.json mode change 100755 => 100644 public/dashboard/manifest.webmanifest mode change 100755 => 100644 public/dashboard/registerSW.js mode change 100755 => 100644 public/dashboard/robots.txt mode change 100755 => 100644 public/dashboard/sw.js mode change 100755 => 100644 public/dashboard/workbox-e0782b83.js mode change 100755 => 100644 public/favicon.ico mode change 100755 => 100644 public/files/Corporate Exclusion Import.xlsx mode change 100755 => 100644 public/files/Corporate Membership Import List.xlsx mode change 100755 => 100644 public/files/Tarif Konsultasi Primaya 2023.csv mode change 100755 => 100644 public/fonts/PublicSans-Black.ttf mode change 100755 => 100644 public/fonts/PublicSans-BlackItalic.ttf mode change 100755 => 100644 public/fonts/PublicSans-Bold.ttf mode change 100755 => 100644 public/fonts/PublicSans-BoldItalic.ttf mode change 100755 => 100644 public/fonts/PublicSans-ExtraBold.ttf mode change 100755 => 100644 public/fonts/PublicSans-ExtraBoldItalic.ttf mode change 100755 => 100644 public/fonts/PublicSans-ExtraLight.ttf mode change 100755 => 100644 public/fonts/PublicSans-ExtraLightItalic.ttf mode change 100755 => 100644 public/fonts/PublicSans-Italic.ttf mode change 100755 => 100644 public/fonts/PublicSans-Light.ttf mode change 100755 => 100644 public/fonts/PublicSans-LightItalic.ttf mode change 100755 => 100644 public/fonts/PublicSans-Medium.ttf mode change 100755 => 100644 public/fonts/PublicSans-MediumItalic.ttf mode change 100755 => 100644 public/fonts/PublicSans-Regular.ttf mode change 100755 => 100644 public/fonts/PublicSans-SemiBold.ttf mode change 100755 => 100644 public/fonts/PublicSans-SemiBoldItalic.ttf mode change 100755 => 100644 public/fonts/PublicSans-Thin.ttf mode change 100755 => 100644 public/fonts/PublicSans-ThinItalic.ttf mode change 100755 => 100644 public/hospital-portal-staging/.htaccess mode change 100755 => 100644 public/hospital-portal-staging/_redirects mode change 100755 => 100644 public/hospital-portal-staging/assets/Card.636ec64c.js mode change 100755 => 100644 public/hospital-portal-staging/assets/Dashboard.6320ce33.js mode change 100755 => 100644 public/hospital-portal-staging/assets/ForgetPassword.7bc09f84.js mode change 100755 => 100644 public/hospital-portal-staging/assets/Login.1016850a.js mode change 100755 => 100644 public/hospital-portal-staging/assets/Page.54724e9a.js mode change 100755 => 100644 public/hospital-portal-staging/assets/Page404.14781eaa.js mode change 100755 => 100644 public/hospital-portal-staging/assets/ResetPassword.efa619da.js mode change 100755 => 100644 public/hospital-portal-staging/assets/index.93207066.js mode change 100755 => 100644 public/hospital-portal-staging/assets/index.c91e36b5.css mode change 100755 => 100644 public/hospital-portal-staging/assets/paths.3971dbe6.js mode change 100755 => 100644 public/hospital-portal-staging/favicon/android-chrome-192x192.png mode change 100755 => 100644 public/hospital-portal-staging/favicon/android-chrome-512x512.png mode change 100755 => 100644 public/hospital-portal-staging/favicon/apple-touch-icon.png mode change 100755 => 100644 public/hospital-portal-staging/favicon/favicon-16x16.png mode change 100755 => 100644 public/hospital-portal-staging/favicon/favicon-32x32.png mode change 100755 => 100644 public/hospital-portal-staging/favicon/favicon.ico mode change 100755 => 100644 public/hospital-portal-staging/fonts/CircularStd-Bold.otf mode change 100755 => 100644 public/hospital-portal-staging/fonts/CircularStd-Book.otf mode change 100755 => 100644 public/hospital-portal-staging/fonts/CircularStd-Medium.otf mode change 100755 => 100644 public/hospital-portal-staging/fonts/Roboto-Bold.ttf mode change 100755 => 100644 public/hospital-portal-staging/fonts/Roboto-Regular.ttf mode change 100755 => 100644 public/hospital-portal-staging/fonts/index.css mode change 100755 => 100644 public/hospital-portal-staging/icons/ic_analytics.svg mode change 100755 => 100644 public/hospital-portal-staging/icons/ic_banking.svg mode change 100755 => 100644 public/hospital-portal-staging/icons/ic_blog.svg mode change 100755 => 100644 public/hospital-portal-staging/icons/ic_booking.svg mode change 100755 => 100644 public/hospital-portal-staging/icons/ic_calendar.svg mode change 100755 => 100644 public/hospital-portal-staging/icons/ic_cart.svg mode change 100755 => 100644 public/hospital-portal-staging/icons/ic_chat.svg mode change 100755 => 100644 public/hospital-portal-staging/icons/ic_dashboard.svg mode change 100755 => 100644 public/hospital-portal-staging/icons/ic_ecommerce.svg mode change 100755 => 100644 public/hospital-portal-staging/icons/ic_kanban.svg mode change 100755 => 100644 public/hospital-portal-staging/icons/ic_mail.svg mode change 100755 => 100644 public/hospital-portal-staging/icons/ic_user.svg mode change 100755 => 100644 public/hospital-portal-staging/image/overlay.png mode change 100755 => 100644 public/hospital-portal-staging/index.html mode change 100755 => 100644 public/hospital-portal-staging/logo/logo-linksehat.png mode change 100755 => 100644 public/hospital-portal-staging/logo/logo_full.jpg mode change 100755 => 100644 public/hospital-portal-staging/logo/logo_full.svg mode change 100755 => 100644 public/hospital-portal-staging/logo/logo_single.svg mode change 100755 => 100644 public/hospital-portal-staging/manifest.json mode change 100755 => 100644 public/hospital-portal-staging/manifest.webmanifest mode change 100755 => 100644 public/hospital-portal-staging/registerSW.js mode change 100755 => 100644 public/hospital-portal-staging/robots.txt mode change 100755 => 100644 public/hospital-portal-staging/sw.js mode change 100755 => 100644 public/hospital-portal-staging/workbox-e0782b83.js mode change 100755 => 100644 public/images/default-doctor-avatar.png mode change 100755 => 100644 public/images/default-hospital-image.png mode change 100755 => 100644 public/images/logo-linksehat-vertical-default.png mode change 100755 => 100644 public/images/specialities/akupunktur.png mode change 100755 => 100644 public/images/specialities/anak.png mode change 100755 => 100644 public/images/specialities/andrologi.png mode change 100755 => 100644 public/images/specialities/anestesi.png mode change 100755 => 100644 public/images/specialities/bedah-plastik-estetik.png mode change 100755 => 100644 public/images/specialities/bedah-umum.png mode change 100755 => 100644 public/images/specialities/dokter-layanan-primer.png mode change 100755 => 100644 public/images/specialities/emergency-medicine.png mode change 100755 => 100644 public/images/specialities/farmakologi-klinik.png mode change 100755 => 100644 public/images/specialities/fisioterapi.png mode change 100755 => 100644 public/images/specialities/forensik-dan-Medikolegal.png mode change 100755 => 100644 public/images/specialities/gizi-klinik.png mode change 100755 => 100644 public/images/specialities/hd.png mode change 100755 => 100644 public/images/specialities/igd.png mode change 100755 => 100644 public/images/specialities/jantung-pembuluh-darah.png mode change 100755 => 100644 public/images/specialities/kardio-vaskuler.png mode change 100755 => 100644 public/images/specialities/kebidanan-kandungan.png mode change 100755 => 100644 public/images/specialities/kedokteran-fisik-dan-rehabilitasi.png mode change 100755 => 100644 public/images/specialities/kedokteran-kelautan.png mode change 100755 => 100644 public/images/specialities/kedokteran-nuklir.png mode change 100755 => 100644 public/images/specialities/kedokteran-olahraga.png mode change 100755 => 100644 public/images/specialities/kedokteran-penerbangan.png mode change 100755 => 100644 public/images/specialities/kesehatan-jiwa.png mode change 100755 => 100644 public/images/specialities/kulit-kelamin.png mode change 100755 => 100644 public/images/specialities/laboratorium.png mode change 100755 => 100644 public/images/specialities/mata.png mode change 100755 => 100644 public/images/specialities/onkologi-Radiasi-1.png mode change 100755 => 100644 public/images/specialities/onkologi-radiasi.png mode change 100755 => 100644 public/images/specialities/ortopedi-dan-traumatologi.png mode change 100755 => 100644 public/images/specialities/parasitologi-klinik.png mode change 100755 => 100644 public/images/specialities/patologi-anatomi.png mode change 100755 => 100644 public/images/specialities/patologi-klinik.png mode change 100755 => 100644 public/images/specialities/penyakit-dalam.png mode change 100755 => 100644 public/images/specialities/psikolog.png mode change 100755 => 100644 public/images/specialities/radiologi.png mode change 100755 => 100644 public/images/specialities/saraf.png mode change 100755 => 100644 public/images/specialities/teeth.png mode change 100755 => 100644 public/images/specialities/tht.png mode change 100755 => 100644 public/images/specialities/urologi.png mode change 100755 => 100644 public/index.php mode change 100755 => 100644 public/robots.txt mode change 100755 => 100644 resources/css/app.css mode change 100755 => 100644 resources/files/ICD-X-Halodoc.csv mode change 100755 => 100644 resources/files/city.csv mode change 100755 => 100644 resources/files/daftar_masteritem_ccp_14-06-2022.xlsx mode change 100755 => 100644 resources/files/district.csv mode change 100755 => 100644 resources/files/providers.csv mode change 100755 => 100644 resources/files/providers.csv:Zone.Identifier mode change 100755 => 100644 resources/files/province.csv mode change 100755 => 100644 resources/files/village.csv mode change 100755 => 100644 resources/js/app.js mode change 100755 => 100644 resources/js/bootstrap.js mode change 100755 => 100644 resources/views/pdf/final_log.blade.php mode change 100755 => 100644 resources/views/pdf/guaranted_leter.blade.php mode change 100755 => 100644 resources/views/vendor/mail/html/button.blade.php mode change 100755 => 100644 resources/views/vendor/mail/html/footer.blade.php mode change 100755 => 100644 resources/views/vendor/mail/html/header.blade.php mode change 100755 => 100644 resources/views/vendor/mail/html/layout.blade.php mode change 100755 => 100644 resources/views/vendor/mail/html/message.blade.php mode change 100755 => 100644 resources/views/vendor/mail/html/panel.blade.php mode change 100755 => 100644 resources/views/vendor/mail/html/subcopy.blade.php mode change 100755 => 100644 resources/views/vendor/mail/html/table.blade.php mode change 100755 => 100644 resources/views/vendor/mail/html/themes/default.css mode change 100755 => 100644 resources/views/vendor/mail/text/button.blade.php mode change 100755 => 100644 resources/views/vendor/mail/text/footer.blade.php mode change 100755 => 100644 resources/views/vendor/mail/text/header.blade.php mode change 100755 => 100644 resources/views/vendor/mail/text/layout.blade.php mode change 100755 => 100644 resources/views/vendor/mail/text/message.blade.php mode change 100755 => 100644 resources/views/vendor/mail/text/panel.blade.php mode change 100755 => 100644 resources/views/vendor/mail/text/subcopy.blade.php mode change 100755 => 100644 resources/views/vendor/mail/text/table.blade.php mode change 100755 => 100644 resources/views/verify_email.blade.php mode change 100755 => 100644 resources/views/welcome.blade.php mode change 100755 => 100644 routes/api.php mode change 100755 => 100644 routes/channels.php mode change 100755 => 100644 routes/console.php mode change 100755 => 100644 routes/web.php mode change 100755 => 100644 stubs/nwidart-stubs/assets/js/app.stub mode change 100755 => 100644 stubs/nwidart-stubs/assets/sass/app.stub mode change 100755 => 100644 stubs/nwidart-stubs/command.stub mode change 100755 => 100644 stubs/nwidart-stubs/component-class.stub mode change 100755 => 100644 stubs/nwidart-stubs/component-view.stub mode change 100755 => 100644 stubs/nwidart-stubs/composer.stub mode change 100755 => 100644 stubs/nwidart-stubs/controller-api.stub mode change 100755 => 100644 stubs/nwidart-stubs/controller-plain.stub mode change 100755 => 100644 stubs/nwidart-stubs/controller.stub mode change 100755 => 100644 stubs/nwidart-stubs/event.stub mode change 100755 => 100644 stubs/nwidart-stubs/factory.stub mode change 100755 => 100644 stubs/nwidart-stubs/feature-test.stub mode change 100755 => 100644 stubs/nwidart-stubs/job-queued.stub mode change 100755 => 100644 stubs/nwidart-stubs/job.stub mode change 100755 => 100644 stubs/nwidart-stubs/json.stub mode change 100755 => 100644 stubs/nwidart-stubs/listener-duck.stub mode change 100755 => 100644 stubs/nwidart-stubs/listener-queued-duck.stub mode change 100755 => 100644 stubs/nwidart-stubs/listener-queued.stub mode change 100755 => 100644 stubs/nwidart-stubs/listener.stub mode change 100755 => 100644 stubs/nwidart-stubs/mail.stub mode change 100755 => 100644 stubs/nwidart-stubs/middleware.stub mode change 100755 => 100644 stubs/nwidart-stubs/migration/add.stub mode change 100755 => 100644 stubs/nwidart-stubs/migration/create.stub mode change 100755 => 100644 stubs/nwidart-stubs/migration/delete.stub mode change 100755 => 100644 stubs/nwidart-stubs/migration/drop.stub mode change 100755 => 100644 stubs/nwidart-stubs/migration/plain.stub mode change 100755 => 100644 stubs/nwidart-stubs/model.stub mode change 100755 => 100644 stubs/nwidart-stubs/notification.stub mode change 100755 => 100644 stubs/nwidart-stubs/package.stub mode change 100755 => 100644 stubs/nwidart-stubs/policy.plain.stub mode change 100755 => 100644 stubs/nwidart-stubs/provider.stub mode change 100755 => 100644 stubs/nwidart-stubs/request.stub mode change 100755 => 100644 stubs/nwidart-stubs/resource-collection.stub mode change 100755 => 100644 stubs/nwidart-stubs/resource.stub mode change 100755 => 100644 stubs/nwidart-stubs/route-provider.stub mode change 100755 => 100644 stubs/nwidart-stubs/routes/api.stub mode change 100755 => 100644 stubs/nwidart-stubs/routes/web.stub mode change 100755 => 100644 stubs/nwidart-stubs/rule.stub mode change 100755 => 100644 stubs/nwidart-stubs/scaffold/config.stub mode change 100755 => 100644 stubs/nwidart-stubs/scaffold/provider.stub mode change 100755 => 100644 stubs/nwidart-stubs/seeder.stub mode change 100755 => 100644 stubs/nwidart-stubs/unit-test.stub mode change 100755 => 100644 stubs/nwidart-stubs/views/index.stub mode change 100755 => 100644 stubs/nwidart-stubs/views/master.stub mode change 100755 => 100644 stubs/nwidart-stubs/webpack.stub mode change 100755 => 100644 tailwind.config.js mode change 100755 => 100644 tests/CreatesApplication.php mode change 100755 => 100644 tests/Feature/ExampleTest.php mode change 100755 => 100644 tests/TestCase.php mode change 100755 => 100644 tests/Unit/ExampleTest.php mode change 100755 => 100644 vite.config.js mode change 100755 => 100644 webpack.mix.js diff --git a/.DS_Store b/.DS_Store old mode 100755 new mode 100644 diff --git a/.editorconfig b/.editorconfig old mode 100755 new mode 100644 diff --git a/.gitattributes b/.gitattributes old mode 100755 new mode 100644 diff --git a/.gitignore b/.gitignore old mode 100755 new mode 100644 diff --git a/.styleci.yml b/.styleci.yml old mode 100755 new mode 100644 diff --git a/Modules/Client/Config/.gitkeep b/Modules/Client/Config/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Config/config.php b/Modules/Client/Config/config.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Console/.gitkeep b/Modules/Client/Console/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Database/Migrations/.gitkeep b/Modules/Client/Database/Migrations/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Database/Seeders/.gitkeep b/Modules/Client/Database/Seeders/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Database/Seeders/ClientDatabaseSeeder.php b/Modules/Client/Database/Seeders/ClientDatabaseSeeder.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Database/factories/.gitkeep b/Modules/Client/Database/factories/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Entities/.gitkeep b/Modules/Client/Entities/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Http/Controllers/.gitkeep b/Modules/Client/Http/Controllers/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Http/Controllers/Api/AuthController.php b/Modules/Client/Http/Controllers/Api/AuthController.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Http/Controllers/Api/ClaimController.php b/Modules/Client/Http/Controllers/Api/ClaimController.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Http/Controllers/Api/ClaimReportController.php b/Modules/Client/Http/Controllers/Api/ClaimReportController.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Http/Controllers/Api/CorporateDivisionController.php b/Modules/Client/Http/Controllers/Api/CorporateDivisionController.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Http/Controllers/Api/CorporateManageController.php b/Modules/Client/Http/Controllers/Api/CorporateManageController.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Http/Controllers/Api/CorporateMemberController.php b/Modules/Client/Http/Controllers/Api/CorporateMemberController.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Http/Controllers/Api/CorporatePolicyController.php b/Modules/Client/Http/Controllers/Api/CorporatePolicyController.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Http/Controllers/Api/TopUpController.php b/Modules/Client/Http/Controllers/Api/TopUpController.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Http/Controllers/Api/UserController.php b/Modules/Client/Http/Controllers/Api/UserController.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Http/Controllers/ClientController.php b/Modules/Client/Http/Controllers/ClientController.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Http/Middleware/.gitkeep b/Modules/Client/Http/Middleware/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Http/Requests/.gitkeep b/Modules/Client/Http/Requests/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Providers/.gitkeep b/Modules/Client/Providers/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Providers/ClientServiceProvider.php b/Modules/Client/Providers/ClientServiceProvider.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Providers/RouteServiceProvider.php b/Modules/Client/Providers/RouteServiceProvider.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Resources/assets/.gitkeep b/Modules/Client/Resources/assets/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Resources/assets/js/app.js b/Modules/Client/Resources/assets/js/app.js old mode 100755 new mode 100644 diff --git a/Modules/Client/Resources/assets/sass/app.scss b/Modules/Client/Resources/assets/sass/app.scss old mode 100755 new mode 100644 diff --git a/Modules/Client/Resources/lang/.gitkeep b/Modules/Client/Resources/lang/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Resources/views/.gitkeep b/Modules/Client/Resources/views/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Resources/views/index.blade.php b/Modules/Client/Resources/views/index.blade.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Resources/views/layouts/master.blade.php b/Modules/Client/Resources/views/layouts/master.blade.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Routes/.gitkeep b/Modules/Client/Routes/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Routes/api.php b/Modules/Client/Routes/api.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Routes/web.php b/Modules/Client/Routes/web.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Tests/Feature/.gitkeep b/Modules/Client/Tests/Feature/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Tests/Unit/.gitkeep b/Modules/Client/Tests/Unit/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Client/Transformers/ClaimReport/MemberResources.php b/Modules/Client/Transformers/ClaimReport/MemberResources.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Transformers/ClaimShowResource.php b/Modules/Client/Transformers/ClaimShowResource.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Transformers/Dashboard/LimitResources.php b/Modules/Client/Transformers/Dashboard/LimitResources.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Transformers/Dashboard/MemberAlarmCenterResources.php b/Modules/Client/Transformers/Dashboard/MemberAlarmCenterResources.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Transformers/Dashboard/MemberResources.php b/Modules/Client/Transformers/Dashboard/MemberResources.php old mode 100755 new mode 100644 diff --git a/Modules/Client/Transformers/Dashboard/TopUpLimitResources.php b/Modules/Client/Transformers/Dashboard/TopUpLimitResources.php old mode 100755 new mode 100644 diff --git a/Modules/Client/composer.json b/Modules/Client/composer.json old mode 100755 new mode 100644 diff --git a/Modules/Client/module.json b/Modules/Client/module.json old mode 100755 new mode 100644 diff --git a/Modules/Client/package.json b/Modules/Client/package.json old mode 100755 new mode 100644 diff --git a/Modules/Client/webpack.mix.js b/Modules/Client/webpack.mix.js old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Config/.gitkeep b/Modules/HospitalPortal/Config/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Config/config.php b/Modules/HospitalPortal/Config/config.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Console/.gitkeep b/Modules/HospitalPortal/Console/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Database/Migrations/.gitkeep b/Modules/HospitalPortal/Database/Migrations/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Database/Seeders/.gitkeep b/Modules/HospitalPortal/Database/Seeders/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Database/Seeders/HospitalPortalDatabaseSeeder.php b/Modules/HospitalPortal/Database/Seeders/HospitalPortalDatabaseSeeder.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Database/factories/.gitkeep b/Modules/HospitalPortal/Database/factories/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Entities/.gitkeep b/Modules/HospitalPortal/Entities/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Http/Controllers/.gitkeep b/Modules/HospitalPortal/Http/Controllers/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Http/Controllers/Api/AuthController.php b/Modules/HospitalPortal/Http/Controllers/Api/AuthController.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Http/Controllers/Api/ClaimRequestController.php b/Modules/HospitalPortal/Http/Controllers/Api/ClaimRequestController.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Http/Controllers/Api/MemberController.php b/Modules/HospitalPortal/Http/Controllers/Api/MemberController.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Http/Controllers/ClaimController.php b/Modules/HospitalPortal/Http/Controllers/ClaimController.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Http/Controllers/HospitalPortalController.php b/Modules/HospitalPortal/Http/Controllers/HospitalPortalController.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Http/Middleware/.gitkeep b/Modules/HospitalPortal/Http/Middleware/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Http/Requests/.gitkeep b/Modules/HospitalPortal/Http/Requests/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Providers/.gitkeep b/Modules/HospitalPortal/Providers/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Providers/HospitalPortalServiceProvider.php b/Modules/HospitalPortal/Providers/HospitalPortalServiceProvider.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Providers/RouteServiceProvider.php b/Modules/HospitalPortal/Providers/RouteServiceProvider.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Resources/assets/.gitkeep b/Modules/HospitalPortal/Resources/assets/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Resources/assets/js/app.js b/Modules/HospitalPortal/Resources/assets/js/app.js old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Resources/assets/sass/app.scss b/Modules/HospitalPortal/Resources/assets/sass/app.scss old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Resources/lang/.gitkeep b/Modules/HospitalPortal/Resources/lang/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Resources/views/.gitkeep b/Modules/HospitalPortal/Resources/views/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Resources/views/index.blade.php b/Modules/HospitalPortal/Resources/views/index.blade.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Resources/views/layouts/master.blade.php b/Modules/HospitalPortal/Resources/views/layouts/master.blade.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Routes/.gitkeep b/Modules/HospitalPortal/Routes/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Routes/api.php b/Modules/HospitalPortal/Routes/api.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Routes/web.php b/Modules/HospitalPortal/Routes/web.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Tests/Feature/.gitkeep b/Modules/HospitalPortal/Tests/Feature/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Tests/Unit/.gitkeep b/Modules/HospitalPortal/Tests/Unit/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Transformers/ClaimRequestResource.php b/Modules/HospitalPortal/Transformers/ClaimRequestResource.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/Transformers/ClaimRequestShowResource.php b/Modules/HospitalPortal/Transformers/ClaimRequestShowResource.php old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/composer.json b/Modules/HospitalPortal/composer.json old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/module.json b/Modules/HospitalPortal/module.json old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/package.json b/Modules/HospitalPortal/package.json old mode 100755 new mode 100644 diff --git a/Modules/HospitalPortal/webpack.mix.js b/Modules/HospitalPortal/webpack.mix.js old mode 100755 new mode 100644 diff --git a/Modules/Internal/Config/.gitkeep b/Modules/Internal/Config/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Config/config.php b/Modules/Internal/Config/config.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Console/.gitkeep b/Modules/Internal/Console/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Database/Migrations/.gitkeep b/Modules/Internal/Database/Migrations/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Database/Seeders/.gitkeep b/Modules/Internal/Database/Seeders/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Database/Seeders/InternalDatabaseSeeder.php b/Modules/Internal/Database/Seeders/InternalDatabaseSeeder.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Database/factories/.gitkeep b/Modules/Internal/Database/factories/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Emails/SendVerifyEmail.php b/Modules/Internal/Emails/SendVerifyEmail.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Entities/.gitkeep b/Modules/Internal/Entities/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Events/ForgetPassword.php b/Modules/Internal/Events/ForgetPassword.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/.gitkeep b/Modules/Internal/Http/Controllers/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/AppointmentController.php b/Modules/Internal/Http/Controllers/Api/AppointmentController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/AuthController.php b/Modules/Internal/Http/Controllers/Api/AuthController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/BenefitController.php b/Modules/Internal/Http/Controllers/Api/BenefitController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/CityController.php b/Modules/Internal/Http/Controllers/Api/CityController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/ClaimController.php b/Modules/Internal/Http/Controllers/Api/ClaimController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/ClaimRequestController.php b/Modules/Internal/Http/Controllers/Api/ClaimRequestController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/CorporateBenefitController.php b/Modules/Internal/Http/Controllers/Api/CorporateBenefitController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/CorporateController.php b/Modules/Internal/Http/Controllers/Api/CorporateController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/CorporateFormulariumController.php b/Modules/Internal/Http/Controllers/Api/CorporateFormulariumController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/CorporateMemberController.php b/Modules/Internal/Http/Controllers/Api/CorporateMemberController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/CorporatePlanController.php b/Modules/Internal/Http/Controllers/Api/CorporatePlanController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/CorporateServiceController.php b/Modules/Internal/Http/Controllers/Api/CorporateServiceController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/DiagnosisController.php b/Modules/Internal/Http/Controllers/Api/DiagnosisController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/DiagnosisExclusionController.php b/Modules/Internal/Http/Controllers/Api/DiagnosisExclusionController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/DistrictController.php b/Modules/Internal/Http/Controllers/Api/DistrictController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/DivisionController.php b/Modules/Internal/Http/Controllers/Api/DivisionController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/DoctorController.php b/Modules/Internal/Http/Controllers/Api/DoctorController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/DrugController.php b/Modules/Internal/Http/Controllers/Api/DrugController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/FormulariumController.php b/Modules/Internal/Http/Controllers/Api/FormulariumController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/Linksehat/PaymentController.php b/Modules/Internal/Http/Controllers/Api/Linksehat/PaymentController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/LivechatController.php b/Modules/Internal/Http/Controllers/Api/LivechatController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/MemberController.php b/Modules/Internal/Http/Controllers/Api/MemberController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/OptionController.php b/Modules/Internal/Http/Controllers/Api/OptionController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/OrganizationController.php b/Modules/Internal/Http/Controllers/Api/OrganizationController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/PlanController.php b/Modules/Internal/Http/Controllers/Api/PlanController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/ProvinceController.php b/Modules/Internal/Http/Controllers/Api/ProvinceController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/SpecialityController.php b/Modules/Internal/Http/Controllers/Api/SpecialityController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/Api/VillageController.php b/Modules/Internal/Http/Controllers/Api/VillageController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/ClaimEncounterController.php b/Modules/Internal/Http/Controllers/ClaimEncounterController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Controllers/InternalController.php b/Modules/Internal/Http/Controllers/InternalController.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Middleware/.gitkeep b/Modules/Internal/Http/Middleware/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Http/Requests/.gitkeep b/Modules/Internal/Http/Requests/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Listeners/SendVerifyEmail.php b/Modules/Internal/Listeners/SendVerifyEmail.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Notifications/NotifyVerifyEmail.php b/Modules/Internal/Notifications/NotifyVerifyEmail.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Providers/.gitkeep b/Modules/Internal/Providers/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Providers/EventServiceProvider.php b/Modules/Internal/Providers/EventServiceProvider.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Providers/InternalServiceProvider.php b/Modules/Internal/Providers/InternalServiceProvider.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Providers/RouteServiceProvider.php b/Modules/Internal/Providers/RouteServiceProvider.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Resources/assets/.gitkeep b/Modules/Internal/Resources/assets/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Resources/assets/js/app.js b/Modules/Internal/Resources/assets/js/app.js old mode 100755 new mode 100644 diff --git a/Modules/Internal/Resources/assets/sass/app.scss b/Modules/Internal/Resources/assets/sass/app.scss old mode 100755 new mode 100644 diff --git a/Modules/Internal/Resources/lang/.gitkeep b/Modules/Internal/Resources/lang/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Resources/views/.gitkeep b/Modules/Internal/Resources/views/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Resources/views/index.blade.php b/Modules/Internal/Resources/views/index.blade.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Resources/views/layouts/master.blade.php b/Modules/Internal/Resources/views/layouts/master.blade.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Routes/.gitkeep b/Modules/Internal/Routes/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Routes/api.php b/Modules/Internal/Routes/api.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Routes/web.php b/Modules/Internal/Routes/web.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Services/CorporateService.php b/Modules/Internal/Services/CorporateService.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Services/ExclusionService.php b/Modules/Internal/Services/ExclusionService.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Services/FormulariumService.php b/Modules/Internal/Services/FormulariumService.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Services/MemberEnrollmentService.php b/Modules/Internal/Services/MemberEnrollmentService.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Tests/Feature/.gitkeep b/Modules/Internal/Tests/Feature/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Tests/Unit/.gitkeep b/Modules/Internal/Tests/Unit/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Internal/Transformers/AppointmentResource.php b/Modules/Internal/Transformers/AppointmentResource.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Transformers/ClaimRequestResource.php b/Modules/Internal/Transformers/ClaimRequestResource.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Transformers/ClaimRequestShowResource.php b/Modules/Internal/Transformers/ClaimRequestShowResource.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Transformers/ClaimResource.php b/Modules/Internal/Transformers/ClaimResource.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Transformers/ClaimShowResource.php b/Modules/Internal/Transformers/ClaimShowResource.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Transformers/CorporateFormulariumResource.php b/Modules/Internal/Transformers/CorporateFormulariumResource.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Transformers/CorporateServiceConfigResource.php b/Modules/Internal/Transformers/CorporateServiceConfigResource.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Transformers/DiagnosisExclusionResource.php b/Modules/Internal/Transformers/DiagnosisExclusionResource.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Transformers/DoctorResource.php b/Modules/Internal/Transformers/DoctorResource.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Transformers/EncounterResource.php b/Modules/Internal/Transformers/EncounterResource.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Transformers/LinksehatPaymentResource.php b/Modules/Internal/Transformers/LinksehatPaymentResource.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Transformers/LivechatResource.php b/Modules/Internal/Transformers/LivechatResource.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/Transformers/OrganizationResource.php b/Modules/Internal/Transformers/OrganizationResource.php old mode 100755 new mode 100644 diff --git a/Modules/Internal/composer.json b/Modules/Internal/composer.json old mode 100755 new mode 100644 diff --git a/Modules/Internal/module.json b/Modules/Internal/module.json old mode 100755 new mode 100644 diff --git a/Modules/Internal/package.json b/Modules/Internal/package.json old mode 100755 new mode 100644 diff --git a/Modules/Internal/webpack.mix.js b/Modules/Internal/webpack.mix.js old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Config/.gitkeep b/Modules/Linksehat/Config/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Config/config.php b/Modules/Linksehat/Config/config.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Console/.gitkeep b/Modules/Linksehat/Console/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Database/Migrations/.gitkeep b/Modules/Linksehat/Database/Migrations/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Database/Seeders/.gitkeep b/Modules/Linksehat/Database/Seeders/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Database/Seeders/LinksehatDatabaseSeeder.php b/Modules/Linksehat/Database/Seeders/LinksehatDatabaseSeeder.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Database/factories/.gitkeep b/Modules/Linksehat/Database/factories/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Entities/.gitkeep b/Modules/Linksehat/Entities/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Controllers/.gitkeep b/Modules/Linksehat/Http/Controllers/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Controllers/Api/AppointmentController.php b/Modules/Linksehat/Http/Controllers/Api/AppointmentController.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Controllers/Api/ArticleController.php b/Modules/Linksehat/Http/Controllers/Api/ArticleController.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Controllers/Api/AuthController.php b/Modules/Linksehat/Http/Controllers/Api/AuthController.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Controllers/Api/DashboardController.php b/Modules/Linksehat/Http/Controllers/Api/DashboardController.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Controllers/Api/DoctorController.php b/Modules/Linksehat/Http/Controllers/Api/DoctorController.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Controllers/Api/HospitalController.php b/Modules/Linksehat/Http/Controllers/Api/HospitalController.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Controllers/Api/NotificationTokenController.php b/Modules/Linksehat/Http/Controllers/Api/NotificationTokenController.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Controllers/Api/PersonController.php b/Modules/Linksehat/Http/Controllers/Api/PersonController.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Controllers/Api/ProfileController.php b/Modules/Linksehat/Http/Controllers/Api/ProfileController.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Controllers/Api/SearchController.php b/Modules/Linksehat/Http/Controllers/Api/SearchController.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Controllers/Api/SpecialityController.php b/Modules/Linksehat/Http/Controllers/Api/SpecialityController.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Controllers/LinksehatController.php b/Modules/Linksehat/Http/Controllers/LinksehatController.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Middleware/.gitkeep b/Modules/Linksehat/Http/Middleware/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Requests/.gitkeep b/Modules/Linksehat/Http/Requests/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Http/Requests/PersonRequest.php b/Modules/Linksehat/Http/Requests/PersonRequest.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Providers/.gitkeep b/Modules/Linksehat/Providers/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Providers/LinksehatServiceProvider.php b/Modules/Linksehat/Providers/LinksehatServiceProvider.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Providers/RouteServiceProvider.php b/Modules/Linksehat/Providers/RouteServiceProvider.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Resources/assets/.gitkeep b/Modules/Linksehat/Resources/assets/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Resources/assets/js/app.js b/Modules/Linksehat/Resources/assets/js/app.js old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Resources/assets/sass/app.scss b/Modules/Linksehat/Resources/assets/sass/app.scss old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Resources/lang/.gitkeep b/Modules/Linksehat/Resources/lang/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Resources/views/.gitkeep b/Modules/Linksehat/Resources/views/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Resources/views/index.blade.php b/Modules/Linksehat/Resources/views/index.blade.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Resources/views/layouts/master.blade.php b/Modules/Linksehat/Resources/views/layouts/master.blade.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Routes/.gitkeep b/Modules/Linksehat/Routes/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Routes/api.php b/Modules/Linksehat/Routes/api.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Routes/web.php b/Modules/Linksehat/Routes/web.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Tests/Feature/.gitkeep b/Modules/Linksehat/Tests/Feature/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Tests/Unit/.gitkeep b/Modules/Linksehat/Tests/Unit/.gitkeep old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Transformers/Appointment/AppointmentDetailResource.php b/Modules/Linksehat/Transformers/Appointment/AppointmentDetailResource.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Transformers/Article/ArticleResource.php b/Modules/Linksehat/Transformers/Article/ArticleResource.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Transformers/Doctor/DoctorResource.php b/Modules/Linksehat/Transformers/Doctor/DoctorResource.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Transformers/Doctor/DoctorResourceDetail.php b/Modules/Linksehat/Transformers/Doctor/DoctorResourceDetail.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Transformers/DoctorResource.php b/Modules/Linksehat/Transformers/DoctorResource.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Transformers/Hospital/HospitalResource.php b/Modules/Linksehat/Transformers/Hospital/HospitalResource.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Transformers/HospitalResource.php b/Modules/Linksehat/Transformers/HospitalResource.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Transformers/Person/PersonResource.php b/Modules/Linksehat/Transformers/Person/PersonResource.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Transformers/PractitionerRoleToDoctorDetailResource.php b/Modules/Linksehat/Transformers/PractitionerRoleToDoctorDetailResource.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Transformers/PractitionerRoleToDoctorResource.php b/Modules/Linksehat/Transformers/PractitionerRoleToDoctorResource.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Transformers/Speciality/SpecialityForHospitalDetailResource.php b/Modules/Linksehat/Transformers/Speciality/SpecialityForHospitalDetailResource.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Transformers/Speciality/SpecialityResource.php b/Modules/Linksehat/Transformers/Speciality/SpecialityResource.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/Transformers/UserProfileResource.php b/Modules/Linksehat/Transformers/UserProfileResource.php old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/composer.json b/Modules/Linksehat/composer.json old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/module.json b/Modules/Linksehat/module.json old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/package.json b/Modules/Linksehat/package.json old mode 100755 new mode 100644 diff --git a/Modules/Linksehat/webpack.mix.js b/Modules/Linksehat/webpack.mix.js old mode 100755 new mode 100644 diff --git a/README.md b/README.md old mode 100755 new mode 100644 diff --git a/_ide_helper.php b/_ide_helper.php old mode 100755 new mode 100644 diff --git a/app/Builders/MemberBuilder.php b/app/Builders/MemberBuilder.php old mode 100755 new mode 100644 diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php old mode 100755 new mode 100644 diff --git a/app/Events/ClaimApproved.php b/app/Events/ClaimApproved.php old mode 100755 new mode 100644 diff --git a/app/Events/ClaimDeclined.php b/app/Events/ClaimDeclined.php old mode 100755 new mode 100644 diff --git a/app/Events/ClaimPaid.php b/app/Events/ClaimPaid.php old mode 100755 new mode 100644 diff --git a/app/Events/ClaimPostpone.php b/app/Events/ClaimPostpone.php old mode 100755 new mode 100644 diff --git a/app/Events/ClaimReceived.php b/app/Events/ClaimReceived.php old mode 100755 new mode 100644 diff --git a/app/Events/ClaimRequested.php b/app/Events/ClaimRequested.php old mode 100755 new mode 100644 diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php old mode 100755 new mode 100644 diff --git a/app/Exceptions/ImportRowException.php b/app/Exceptions/ImportRowException.php old mode 100755 new mode 100644 diff --git a/app/Helpers/Helper.php b/app/Helpers/Helper.php old mode 100755 new mode 100644 diff --git a/app/Http/Controllers/Api/AuthController.php b/app/Http/Controllers/Api/AuthController.php old mode 100755 new mode 100644 diff --git a/app/Http/Controllers/Api/OLDLMS/ClaimController.php b/app/Http/Controllers/Api/OLDLMS/ClaimController.php old mode 100755 new mode 100644 diff --git a/app/Http/Controllers/Api/OLDLMS/MembershipController.php b/app/Http/Controllers/Api/OLDLMS/MembershipController.php old mode 100755 new mode 100644 diff --git a/app/Http/Controllers/Api/OLDLMS/PaymentController.php b/app/Http/Controllers/Api/OLDLMS/PaymentController.php old mode 100755 new mode 100644 diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php old mode 100755 new mode 100644 diff --git a/app/Http/Controllers/GeneratedDocumentController.php b/app/Http/Controllers/GeneratedDocumentController.php old mode 100755 new mode 100644 diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php old mode 100755 new mode 100644 diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php old mode 100755 new mode 100644 diff --git a/app/Http/Middleware/EncryptCookies.php b/app/Http/Middleware/EncryptCookies.php old mode 100755 new mode 100644 diff --git a/app/Http/Middleware/LinksehatOldAuthMiddleware.php b/app/Http/Middleware/LinksehatOldAuthMiddleware.php old mode 100755 new mode 100644 diff --git a/app/Http/Middleware/PreventRequestsDuringMaintenance.php b/app/Http/Middleware/PreventRequestsDuringMaintenance.php old mode 100755 new mode 100644 diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php old mode 100755 new mode 100644 diff --git a/app/Http/Middleware/TrimStrings.php b/app/Http/Middleware/TrimStrings.php old mode 100755 new mode 100644 diff --git a/app/Http/Middleware/TrustHosts.php b/app/Http/Middleware/TrustHosts.php old mode 100755 new mode 100644 diff --git a/app/Http/Middleware/TrustProxies.php b/app/Http/Middleware/TrustProxies.php old mode 100755 new mode 100644 diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php old mode 100755 new mode 100644 diff --git a/app/Http/Resources/MemberDataTableResource.php b/app/Http/Resources/MemberDataTableResource.php old mode 100755 new mode 100644 diff --git a/app/Http/Resources/OLDLMS/MemberLimitResource.php b/app/Http/Resources/OLDLMS/MemberLimitResource.php old mode 100755 new mode 100644 diff --git a/app/Http/Resources/OLDLMS/MemberResource.php b/app/Http/Resources/OLDLMS/MemberResource.php old mode 100755 new mode 100644 diff --git a/app/Imports/PlansImport.php b/app/Imports/PlansImport.php old mode 100755 new mode 100644 diff --git a/app/Jobs/ProcessImport.php b/app/Jobs/ProcessImport.php old mode 100755 new mode 100644 diff --git a/app/Jobs/TestJob.php b/app/Jobs/TestJob.php old mode 100755 new mode 100644 diff --git a/app/Listeners/LogClaimJournal.php b/app/Listeners/LogClaimJournal.php old mode 100755 new mode 100644 diff --git a/app/Listeners/NotifyClaimRequested.php b/app/Listeners/NotifyClaimRequested.php old mode 100755 new mode 100644 diff --git a/app/Models/Address.php b/app/Models/Address.php old mode 100755 new mode 100644 diff --git a/app/Models/Appointment.php b/app/Models/Appointment.php old mode 100755 new mode 100644 diff --git a/app/Models/AppointmentParticipant.php b/app/Models/AppointmentParticipant.php old mode 100755 new mode 100644 diff --git a/app/Models/AppointmentType.php b/app/Models/AppointmentType.php old mode 100755 new mode 100644 diff --git a/app/Models/Benefit.php b/app/Models/Benefit.php old mode 100755 new mode 100644 diff --git a/app/Models/Brand.php b/app/Models/Brand.php old mode 100755 new mode 100644 diff --git a/app/Models/Category.php b/app/Models/Category.php old mode 100755 new mode 100644 diff --git a/app/Models/City.php b/app/Models/City.php old mode 100755 new mode 100644 diff --git a/app/Models/Claim.php b/app/Models/Claim.php old mode 100755 new mode 100644 diff --git a/app/Models/ClaimDiagnosis.php b/app/Models/ClaimDiagnosis.php old mode 100755 new mode 100644 diff --git a/app/Models/ClaimHistory.php b/app/Models/ClaimHistory.php old mode 100755 new mode 100644 diff --git a/app/Models/ClaimItem.php b/app/Models/ClaimItem.php old mode 100755 new mode 100644 diff --git a/app/Models/ClaimRequest.php b/app/Models/ClaimRequest.php old mode 100755 new mode 100644 diff --git a/app/Models/Corporate.php b/app/Models/Corporate.php old mode 100755 new mode 100644 diff --git a/app/Models/CorporateBenefit.php b/app/Models/CorporateBenefit.php old mode 100755 new mode 100644 diff --git a/app/Models/CorporateDivision.php b/app/Models/CorporateDivision.php old mode 100755 new mode 100644 diff --git a/app/Models/CorporateEmployee.php b/app/Models/CorporateEmployee.php old mode 100755 new mode 100644 diff --git a/app/Models/CorporateFormularium.php b/app/Models/CorporateFormularium.php old mode 100755 new mode 100644 diff --git a/app/Models/CorporateManager.php b/app/Models/CorporateManager.php old mode 100755 new mode 100644 diff --git a/app/Models/CorporatePlan.php b/app/Models/CorporatePlan.php old mode 100755 new mode 100644 diff --git a/app/Models/CorporatePolicy.php b/app/Models/CorporatePolicy.php old mode 100755 new mode 100644 diff --git a/app/Models/CorporateService.php b/app/Models/CorporateService.php old mode 100755 new mode 100644 diff --git a/app/Models/CorporateServiceConfig.php b/app/Models/CorporateServiceConfig.php old mode 100755 new mode 100644 diff --git a/app/Models/CorporateServiceSpeciality.php b/app/Models/CorporateServiceSpeciality.php old mode 100755 new mode 100644 diff --git a/app/Models/District.php b/app/Models/District.php old mode 100755 new mode 100644 diff --git a/app/Models/Drug.php b/app/Models/Drug.php old mode 100755 new mode 100644 diff --git a/app/Models/DrugAtc.php b/app/Models/DrugAtc.php old mode 100755 new mode 100644 diff --git a/app/Models/DrugCategory.php b/app/Models/DrugCategory.php old mode 100755 new mode 100644 diff --git a/app/Models/DrugComposition.php b/app/Models/DrugComposition.php old mode 100755 new mode 100644 diff --git a/app/Models/DrugExternalIdentifier.php b/app/Models/DrugExternalIdentifier.php old mode 100755 new mode 100644 diff --git a/app/Models/DrugIdentifier.php b/app/Models/DrugIdentifier.php old mode 100755 new mode 100644 diff --git a/app/Models/DrugSellingUnit.php b/app/Models/DrugSellingUnit.php old mode 100755 new mode 100644 diff --git a/app/Models/DrugUnit.php b/app/Models/DrugUnit.php old mode 100755 new mode 100644 diff --git a/app/Models/Encounter.php b/app/Models/Encounter.php old mode 100755 new mode 100644 diff --git a/app/Models/EncounterDiagnosis.php b/app/Models/EncounterDiagnosis.php old mode 100755 new mode 100644 diff --git a/app/Models/EncounterParticipant.php b/app/Models/EncounterParticipant.php old mode 100755 new mode 100644 diff --git a/app/Models/Exclusion.php b/app/Models/Exclusion.php old mode 100755 new mode 100644 diff --git a/app/Models/ExclusionRules.php b/app/Models/ExclusionRules.php old mode 100755 new mode 100644 diff --git a/app/Models/Family.php b/app/Models/Family.php old mode 100755 new mode 100644 diff --git a/app/Models/File.php b/app/Models/File.php old mode 100755 new mode 100644 diff --git a/app/Models/Formularium.php b/app/Models/Formularium.php old mode 100755 new mode 100644 diff --git a/app/Models/FormulariumItem.php b/app/Models/FormulariumItem.php old mode 100755 new mode 100644 diff --git a/app/Models/GeneratedDocument.php b/app/Models/GeneratedDocument.php old mode 100755 new mode 100644 diff --git a/app/Models/Icd.php b/app/Models/Icd.php old mode 100755 new mode 100644 diff --git a/app/Models/Identifier.php b/app/Models/Identifier.php old mode 100755 new mode 100644 diff --git a/app/Models/ImportLog.php b/app/Models/ImportLog.php old mode 100755 new mode 100644 diff --git a/app/Models/Ingredient.php b/app/Models/Ingredient.php old mode 100755 new mode 100644 diff --git a/app/Models/LimitJournal.php b/app/Models/LimitJournal.php old mode 100755 new mode 100644 diff --git a/app/Models/Member.php b/app/Models/Member.php old mode 100755 new mode 100644 diff --git a/app/Models/MemberPlan.php b/app/Models/MemberPlan.php old mode 100755 new mode 100644 diff --git a/app/Models/MemberPolicy.php b/app/Models/MemberPolicy.php old mode 100755 new mode 100644 diff --git a/app/Models/Meta.php b/app/Models/Meta.php old mode 100755 new mode 100644 diff --git a/app/Models/NotificationToken.php b/app/Models/NotificationToken.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/Appointment.php b/app/Models/OLDLMS/Appointment.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/AppointmentDetail.php b/app/Models/OLDLMS/AppointmentDetail.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/Dokter.php b/app/Models/OLDLMS/Dokter.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/Healthcare.php b/app/Models/OLDLMS/Healthcare.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/HealthcareCommission.php b/app/Models/OLDLMS/HealthcareCommission.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/Insurance.php b/app/Models/OLDLMS/Insurance.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/JadwalDokter.php b/app/Models/OLDLMS/JadwalDokter.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/JadwalDokterDay.php b/app/Models/OLDLMS/JadwalDokterDay.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/Kota.php b/app/Models/OLDLMS/Kota.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/Livechat.php b/app/Models/OLDLMS/Livechat.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/Provinsi.php b/app/Models/OLDLMS/Provinsi.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/Speciality.php b/app/Models/OLDLMS/Speciality.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/User.php b/app/Models/OLDLMS/User.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/UserDetail.php b/app/Models/OLDLMS/UserDetail.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/UserInsurance.php b/app/Models/OLDLMS/UserInsurance.php old mode 100755 new mode 100644 diff --git a/app/Models/OLDLMS/UserInsuranceDetail.php b/app/Models/OLDLMS/UserInsuranceDetail.php old mode 100755 new mode 100644 diff --git a/app/Models/Organization.php b/app/Models/Organization.php old mode 100755 new mode 100644 diff --git a/app/Models/Person.php b/app/Models/Person.php old mode 100755 new mode 100644 diff --git a/app/Models/Plan.php b/app/Models/Plan.php old mode 100755 new mode 100644 diff --git a/app/Models/Practice.php b/app/Models/Practice.php old mode 100755 new mode 100644 diff --git a/app/Models/Practitioner.php b/app/Models/Practitioner.php old mode 100755 new mode 100644 diff --git a/app/Models/PractitionerRole.php b/app/Models/PractitionerRole.php old mode 100755 new mode 100644 diff --git a/app/Models/PractitionerRoleAvailability.php b/app/Models/PractitionerRoleAvailability.php old mode 100755 new mode 100644 diff --git a/app/Models/PractitionerRoleAvailabilityDay.php b/app/Models/PractitionerRoleAvailabilityDay.php old mode 100755 new mode 100644 diff --git a/app/Models/Price.php b/app/Models/Price.php old mode 100755 new mode 100644 diff --git a/app/Models/Province.php b/app/Models/Province.php old mode 100755 new mode 100644 diff --git a/app/Models/Service.php b/app/Models/Service.php old mode 100755 new mode 100644 diff --git a/app/Models/Speciality.php b/app/Models/Speciality.php old mode 100755 new mode 100644 diff --git a/app/Models/StatusHistory.php b/app/Models/StatusHistory.php old mode 100755 new mode 100644 diff --git a/app/Models/Unit.php b/app/Models/Unit.php old mode 100755 new mode 100644 diff --git a/app/Models/User.php b/app/Models/User.php old mode 100755 new mode 100644 diff --git a/app/Models/Village.php b/app/Models/Village.php old mode 100755 new mode 100644 diff --git a/app/Notifications/ClaimRequestedNotification.php b/app/Notifications/ClaimRequestedNotification.php old mode 100755 new mode 100644 diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php old mode 100755 new mode 100644 diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php old mode 100755 new mode 100644 diff --git a/app/Providers/BroadcastServiceProvider.php b/app/Providers/BroadcastServiceProvider.php old mode 100755 new mode 100644 diff --git a/app/Providers/ClaimRequested.php b/app/Providers/ClaimRequested.php old mode 100755 new mode 100644 diff --git a/app/Providers/DuitkuServiceProvider.php b/app/Providers/DuitkuServiceProvider.php old mode 100755 new mode 100644 diff --git a/app/Providers/EventServiceProvider.php b/app/Providers/EventServiceProvider.php old mode 100755 new mode 100644 diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php old mode 100755 new mode 100644 diff --git a/app/Rules/NikRule.php b/app/Rules/NikRule.php old mode 100755 new mode 100644 diff --git a/app/Services/ClaimRequestService.php b/app/Services/ClaimRequestService.php old mode 100755 new mode 100644 diff --git a/app/Services/ClaimService.php b/app/Services/ClaimService.php old mode 100755 new mode 100644 diff --git a/app/Services/CorporateMemberService.php b/app/Services/CorporateMemberService.php old mode 100755 new mode 100644 diff --git a/app/Services/DoctorService.php b/app/Services/DoctorService.php old mode 100755 new mode 100644 diff --git a/app/Services/Duitku.php b/app/Services/Duitku.php old mode 100755 new mode 100644 diff --git a/app/Services/ImportService.php b/app/Services/ImportService.php old mode 100755 new mode 100644 diff --git a/app/Services/LmsApi.php b/app/Services/LmsApi.php old mode 100755 new mode 100644 diff --git a/app/Services/PrimayaApi.php b/app/Services/PrimayaApi.php old mode 100755 new mode 100644 diff --git a/app/Traits/Blameable.php b/app/Traits/Blameable.php old mode 100755 new mode 100644 diff --git a/artisan b/artisan old mode 100755 new mode 100644 diff --git a/bootstrap/app.php b/bootstrap/app.php old mode 100755 new mode 100644 diff --git a/composer.json b/composer.json old mode 100755 new mode 100644 diff --git a/composer.lock b/composer.lock old mode 100755 new mode 100644 diff --git a/config/app.php b/config/app.php old mode 100755 new mode 100644 diff --git a/config/aso.php b/config/aso.php old mode 100755 new mode 100644 diff --git a/config/auth.php b/config/auth.php old mode 100755 new mode 100644 diff --git a/config/broadcasting.php b/config/broadcasting.php old mode 100755 new mode 100644 diff --git a/config/cache.php b/config/cache.php old mode 100755 new mode 100644 diff --git a/config/cors.php b/config/cors.php old mode 100755 new mode 100644 diff --git a/config/database.php b/config/database.php old mode 100755 new mode 100644 diff --git a/config/excel.php b/config/excel.php old mode 100755 new mode 100644 diff --git a/config/filesystems.php b/config/filesystems.php old mode 100755 new mode 100644 diff --git a/config/hashing.php b/config/hashing.php old mode 100755 new mode 100644 diff --git a/config/logging.php b/config/logging.php old mode 100755 new mode 100644 diff --git a/config/mail.php b/config/mail.php old mode 100755 new mode 100644 diff --git a/config/modules.php b/config/modules.php old mode 100755 new mode 100644 diff --git a/config/permission.php b/config/permission.php old mode 100755 new mode 100644 diff --git a/config/queue.php b/config/queue.php old mode 100755 new mode 100644 diff --git a/config/sanctum.php b/config/sanctum.php old mode 100755 new mode 100644 diff --git a/config/services.php b/config/services.php old mode 100755 new mode 100644 diff --git a/config/session.php b/config/session.php old mode 100755 new mode 100644 diff --git a/config/snappy.php b/config/snappy.php old mode 100755 new mode 100644 diff --git a/config/view.php b/config/view.php old mode 100755 new mode 100644 diff --git a/database/.gitignore b/database/.gitignore old mode 100755 new mode 100644 diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php old mode 100755 new mode 100644 diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2014_10_12_100000_create_password_resets_table.php b/database/migrations/2014_10_12_100000_create_password_resets_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2019_08_19_000000_create_failed_jobs_table.php b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_05_23_073350_create_members_table.php b/database/migrations/2022_05_23_073350_create_members_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_06_16_045414_create_corporates_table.php b/database/migrations/2022_06_16_045414_create_corporates_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_06_16_045441_create_corporate_divisions_table.php b/database/migrations/2022_06_16_045441_create_corporate_divisions_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_06_17_024432_create_corporate_employees_table.php b/database/migrations/2022_06_17_024432_create_corporate_employees_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_06_21_042321_create_corporate_policies_table.php b/database/migrations/2022_06_21_042321_create_corporate_policies_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_06_23_070847_create_benefits_table.php b/database/migrations/2022_06_23_070847_create_benefits_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_06_23_083834_create_plans_table.php b/database/migrations/2022_06_23_083834_create_plans_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_06_23_093107_create_services_table.php b/database/migrations/2022_06_23_093107_create_services_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_07_04_074656_create_import_logs_table.php b/database/migrations/2022_07_04_074656_create_import_logs_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_07_04_075238_create_files_table.php b/database/migrations/2022_07_04_075238_create_files_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_07_07_040543_create_corporate_plans_table.php b/database/migrations/2022_07_07_040543_create_corporate_plans_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_07_12_025440_create_corporate_benefits_table.php b/database/migrations/2022_07_12_025440_create_corporate_benefits_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_07_21_121346_create_member_policies_table.php b/database/migrations/2022_07_21_121346_create_member_policies_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_07_25_050001_create_member_plans_table.php b/database/migrations/2022_07_25_050001_create_member_plans_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_07_28_032235_create_icd_table.php b/database/migrations/2022_07_28_032235_create_icd_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_02_061122_create_exclusions_table.php b/database/migrations/2022_08_02_061122_create_exclusions_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_02_061127_create_exclusion_rules_table.php b/database/migrations/2022_08_02_061127_create_exclusion_rules_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_03_114155_create_jobs_table.php b/database/migrations/2022_08_03_114155_create_jobs_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_05_035511_create_corporate_services_table.php b/database/migrations/2022_08_05_035511_create_corporate_services_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_08_042246_create_corporate_service_configs_table.php b/database/migrations/2022_08_08_042246_create_corporate_service_configs_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_09_043235_create_drugs_table.php b/database/migrations/2022_08_09_043235_create_drugs_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_09_043243_create_brands_table.php b/database/migrations/2022_08_09_043243_create_brands_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_09_092811_create_categories_table.php b/database/migrations/2022_08_09_092811_create_categories_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_09_092845_create_drug_categories_table.php b/database/migrations/2022_08_09_092845_create_drug_categories_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_09_095513_create_organizations_table.php b/database/migrations/2022_08_09_095513_create_organizations_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_11_024030_create_drug_compositions_table.php b/database/migrations/2022_08_11_024030_create_drug_compositions_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_11_025942_create_drug_atcs_table.php b/database/migrations/2022_08_11_025942_create_drug_atcs_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_11_030815_create_identifiers_table.php b/database/migrations/2022_08_11_030815_create_identifiers_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_11_031728_create_ingredients_table.php b/database/migrations/2022_08_11_031728_create_ingredients_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_12_020643_create_drug_manufacturers_table.php b/database/migrations/2022_08_12_020643_create_drug_manufacturers_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_12_025718_create_units_table.php b/database/migrations/2022_08_12_025718_create_units_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_12_041455_create_formulariums_table.php b/database/migrations/2022_08_12_041455_create_formulariums_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_12_042229_create_formularium_items_table.php b/database/migrations/2022_08_12_042229_create_formularium_items_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_15_043309_create_corporate_formulariums_table.php b/database/migrations/2022_08_15_043309_create_corporate_formulariums_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_24_024003_create_specialities_table.php b/database/migrations/2022_08_24_024003_create_specialities_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_24_225705_create_corporate_service_specialities_table.php b/database/migrations/2022_08_24_225705_create_corporate_service_specialities_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_08_26_064247_create_corporate_manager_table.php b/database/migrations/2022_08_26_064247_create_corporate_manager_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_14_095154_create_addresses_table.php b/database/migrations/2022_09_14_095154_create_addresses_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_16_045129_create_metas_table.php b/database/migrations/2022_09_16_045129_create_metas_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_16_082408_create_practitioners_table.php b/database/migrations/2022_09_16_082408_create_practitioners_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_16_082630_create_persons_table.php b/database/migrations/2022_09_16_082630_create_persons_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_16_084111_create_practitioner_roles_table.php b/database/migrations/2022_09_16_084111_create_practitioner_roles_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_20_014237_add_person_id_in_users_table.php b/database/migrations/2022_09_20_014237_add_person_id_in_users_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_21_074815_create_practices_table.php b/database/migrations/2022_09_21_074815_create_practices_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_22_024244_create_prices_table.php b/database/migrations/2022_09_22_024244_create_prices_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_22_031814_create_practitioner_role_availabilities_table.php b/database/migrations/2022_09_22_031814_create_practitioner_role_availabilities_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_22_035131_create_practitioner_role_availability_days_table.php b/database/migrations/2022_09_22_035131_create_practitioner_role_availability_days_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_22_071909_create_provinces_table.php b/database/migrations/2022_09_22_071909_create_provinces_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_22_071941_create_cities_table.php b/database/migrations/2022_09_22_071941_create_cities_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_22_072029_create_districts_table.php b/database/migrations/2022_09_22_072029_create_districts_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_22_072153_create_villages_table.php b/database/migrations/2022_09_22_072153_create_villages_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_09_26_083719_add_person_details_for_lms_api.php b/database/migrations/2022_09_26_083719_add_person_details_for_lms_api.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_01_031045_create_family_relations_table.php b/database/migrations/2022_11_01_031045_create_family_relations_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_01_031413_add_owner_id_and_person_id_in_family_relations_table.php b/database/migrations/2022_11_01_031413_add_owner_id_and_person_id_in_family_relations_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_04_084316_create_appointment_types_table.php b/database/migrations/2022_11_04_084316_create_appointment_types_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_04_084333_create_appointments_table.php b/database/migrations/2022_11_04_084333_create_appointments_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_04_084351_create_appointment_participants_table.php b/database/migrations/2022_11_04_084351_create_appointment_participants_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_04_093755_add_speciality_id_organization_id_appointment_id_to_table_appointments.php b/database/migrations/2022_11_04_093755_add_speciality_id_organization_id_appointment_id_to_table_appointments.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_08_103959_create_invoices_table.php b/database/migrations/2022_11_08_103959_create_invoices_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_08_104903_create_invoice_items_table.php b/database/migrations/2022_11_08_104903_create_invoice_items_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_08_105659_create_payments_table.php b/database/migrations/2022_11_08_105659_create_payments_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_08_110502_create_payment_methods_table.php b/database/migrations/2022_11_08_110502_create_payment_methods_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_15_102019_add_height_weight_to_persons_table.php b/database/migrations/2022_11_15_102019_add_height_weight_to_persons_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_22_083926_create_notification_tokens_table.php b/database/migrations/2022_11_22_083926_create_notification_tokens_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_22_093749_create_api_logs_table.php b/database/migrations/2022_11_22_093749_create_api_logs_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_22_135948_create_claims_table.php b/database/migrations/2022_11_22_135948_create_claims_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_11_23_140658_create_limit_journals_table.php b/database/migrations/2022_11_23_140658_create_limit_journals_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_12_19_171824_add_active_to_plans_table.php b/database/migrations/2022_12_19_171824_add_active_to_plans_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_12_20_105712_add_person_id_to_members_table.php b/database/migrations/2022_12_20_105712_add_person_id_to_members_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_12_20_151051_add_language_to_persons_table.php b/database/migrations/2022_12_20_151051_add_language_to_persons_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_12_30_132951_create_status_histories_table.php b/database/migrations/2022_12_30_132951_create_status_histories_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2022_12_30_135856_create_claim_diagnosis_table.php b/database/migrations/2022_12_30_135856_create_claim_diagnosis_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2023_02_14_102144_create_claim_requests_table.php b/database/migrations/2023_02_14_102144_create_claim_requests_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2023_02_14_112255_create_permission_tables.php b/database/migrations/2023_02_14_112255_create_permission_tables.php old mode 100755 new mode 100644 diff --git a/database/migrations/2023_02_15_115628_add_original_name_to_files_table.php b/database/migrations/2023_02_15_115628_add_original_name_to_files_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2023_02_24_125948_create_claim_histories_table.php b/database/migrations/2023_02_24_125948_create_claim_histories_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2023_02_24_134555_create_generated_documents_table.php b/database/migrations/2023_02_24_134555_create_generated_documents_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2023_02_27_133120_create_notifications_table.php b/database/migrations/2023_02_27_133120_create_notifications_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2023_03_04_173410_create_claim_items_table.php b/database/migrations/2023_03_04_173410_create_claim_items_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2023_03_15_155301_create_encounters_table.php b/database/migrations/2023_03_15_155301_create_encounters_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2023_03_15_162138_create_encounter_participants_table.php b/database/migrations/2023_03_15_162138_create_encounter_participants_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2023_03_15_162148_create_encounter_diagnoses_table.php b/database/migrations/2023_03_15_162148_create_encounter_diagnoses_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2023_03_16_150733_create_claim_encounter_table.php b/database/migrations/2023_03_16_150733_create_claim_encounter_table.php old mode 100755 new mode 100644 diff --git a/database/migrations/2023_03_21_151000_add_final_encounter_id_to_claims_table.php b/database/migrations/2023_03_21_151000_add_final_encounter_id_to_claims_table.php old mode 100755 new mode 100644 diff --git a/database/seeders/AppointmentTypesSeeder.php b/database/seeders/AppointmentTypesSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/BenefitSeeder.php b/database/seeders/BenefitSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/CitySeeder.php b/database/seeders/CitySeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/DistrictSeeder.php b/database/seeders/DistrictSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/DrugSeeder.php b/database/seeders/DrugSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/DummyClaimSeeder.php b/database/seeders/DummyClaimSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/DummyCorporateSeeder.php b/database/seeders/DummyCorporateSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/DummyMemberSeeder.php b/database/seeders/DummyMemberSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/IcdSeeder.php b/database/seeders/IcdSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/IngestProviderSeeder.php b/database/seeders/IngestProviderSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/JadwalDokterSeeder.php b/database/seeders/JadwalDokterSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/OrganizationSeeder.php b/database/seeders/OrganizationSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/PractitionerRoleDummySeeder.php b/database/seeders/PractitionerRoleDummySeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/PractitionerSeeder.php b/database/seeders/PractitionerSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/PriceSeeder.php b/database/seeders/PriceSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/PricesJadwalDokter.php b/database/seeders/PricesJadwalDokter.php old mode 100755 new mode 100644 diff --git a/database/seeders/ProvinceSeeder.php b/database/seeders/ProvinceSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/RoleSeeder.php b/database/seeders/RoleSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/ServiceSeeder.php b/database/seeders/ServiceSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/SpecialitiesSeeder.php b/database/seeders/SpecialitiesSeeder.php old mode 100755 new mode 100644 diff --git a/database/seeders/UpdateOrganizationCities.php b/database/seeders/UpdateOrganizationCities.php old mode 100755 new mode 100644 diff --git a/database/seeders/VillageSeeder.php b/database/seeders/VillageSeeder.php old mode 100755 new mode 100644 diff --git a/frontend/.DS_Store b/frontend/.DS_Store old mode 100755 new mode 100644 diff --git a/frontend/client-portal/.env.development b/frontend/client-portal/.env.development old mode 100755 new mode 100644 diff --git a/frontend/client-portal/.env.production b/frontend/client-portal/.env.production old mode 100755 new mode 100644 diff --git a/frontend/client-portal/.eslintignore b/frontend/client-portal/.eslintignore old mode 100755 new mode 100644 diff --git a/frontend/client-portal/.eslintrc b/frontend/client-portal/.eslintrc old mode 100755 new mode 100644 diff --git a/frontend/client-portal/.gitignore b/frontend/client-portal/.gitignore old mode 100755 new mode 100644 diff --git a/frontend/client-portal/.htaccess b/frontend/client-portal/.htaccess old mode 100755 new mode 100644 diff --git a/frontend/client-portal/.pnpm-debug.log b/frontend/client-portal/.pnpm-debug.log old mode 100755 new mode 100644 diff --git a/frontend/client-portal/.prettierrc b/frontend/client-portal/.prettierrc old mode 100755 new mode 100644 diff --git a/frontend/client-portal/index.html b/frontend/client-portal/index.html old mode 100755 new mode 100644 diff --git a/frontend/client-portal/package-lock.json b/frontend/client-portal/package-lock.json old mode 100755 new mode 100644 diff --git a/frontend/client-portal/package.json b/frontend/client-portal/package.json old mode 100755 new mode 100644 diff --git a/frontend/client-portal/pnpm-lock.yaml b/frontend/client-portal/pnpm-lock.yaml old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/_redirects b/frontend/client-portal/public/_redirects old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/favicon/android-chrome-192x192.png b/frontend/client-portal/public/favicon/android-chrome-192x192.png old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/favicon/android-chrome-512x512.png b/frontend/client-portal/public/favicon/android-chrome-512x512.png old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/favicon/apple-touch-icon.png b/frontend/client-portal/public/favicon/apple-touch-icon.png old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/favicon/favicon-16x16.png b/frontend/client-portal/public/favicon/favicon-16x16.png old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/favicon/favicon-32x32.png b/frontend/client-portal/public/favicon/favicon-32x32.png old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/favicon/favicon.ico b/frontend/client-portal/public/favicon/favicon.ico old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/fonts/CircularStd-Bold.otf b/frontend/client-portal/public/fonts/CircularStd-Bold.otf old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/fonts/CircularStd-Book.otf b/frontend/client-portal/public/fonts/CircularStd-Book.otf old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/fonts/CircularStd-Medium.otf b/frontend/client-portal/public/fonts/CircularStd-Medium.otf old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/fonts/Roboto-Bold.ttf b/frontend/client-portal/public/fonts/Roboto-Bold.ttf old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/fonts/Roboto-Regular.ttf b/frontend/client-portal/public/fonts/Roboto-Regular.ttf old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/fonts/index.css b/frontend/client-portal/public/fonts/index.css old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/icons/ic_analytics.svg b/frontend/client-portal/public/icons/ic_analytics.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/icons/ic_banking.svg b/frontend/client-portal/public/icons/ic_banking.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/icons/ic_blog.svg b/frontend/client-portal/public/icons/ic_blog.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/icons/ic_booking.svg b/frontend/client-portal/public/icons/ic_booking.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/icons/ic_calendar.svg b/frontend/client-portal/public/icons/ic_calendar.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/icons/ic_cart.svg b/frontend/client-portal/public/icons/ic_cart.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/icons/ic_chat.svg b/frontend/client-portal/public/icons/ic_chat.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/icons/ic_dashboard.svg b/frontend/client-portal/public/icons/ic_dashboard.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/icons/ic_ecommerce.svg b/frontend/client-portal/public/icons/ic_ecommerce.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/icons/ic_kanban.svg b/frontend/client-portal/public/icons/ic_kanban.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/icons/ic_mail.svg b/frontend/client-portal/public/icons/ic_mail.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/icons/ic_user.svg b/frontend/client-portal/public/icons/ic_user.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/images/husband-user-profile.png b/frontend/client-portal/public/images/husband-user-profile.png old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/images/login-image.mp4 b/frontend/client-portal/public/images/login-image.mp4 old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/images/login-image.webm b/frontend/client-portal/public/images/login-image.webm old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/images/member.png b/frontend/client-portal/public/images/member.png old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/images/user-profile.png b/frontend/client-portal/public/images/user-profile.png old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/logo/logo-linksehat.png b/frontend/client-portal/public/logo/logo-linksehat.png old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/logo/logo_full.jpg b/frontend/client-portal/public/logo/logo_full.jpg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/logo/logo_full.svg b/frontend/client-portal/public/logo/logo_full.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/logo/logo_single.svg b/frontend/client-portal/public/logo/logo_single.svg old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/manifest.json b/frontend/client-portal/public/manifest.json old mode 100755 new mode 100644 diff --git a/frontend/client-portal/public/robots.txt b/frontend/client-portal/public/robots.txt old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/auth.ts b/frontend/client-portal/src/@types/auth.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/blog.ts b/frontend/client-portal/src/@types/blog.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/calendar.ts b/frontend/client-portal/src/@types/calendar.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/chat.ts b/frontend/client-portal/src/@types/chat.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/claim.ts b/frontend/client-portal/src/@types/claim.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/diagnosis.ts b/frontend/client-portal/src/@types/diagnosis.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/invoice.ts b/frontend/client-portal/src/@types/invoice.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/kanban.ts b/frontend/client-portal/src/@types/kanban.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/mail.ts b/frontend/client-portal/src/@types/mail.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/member.ts b/frontend/client-portal/src/@types/member.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/paginated-data.ts b/frontend/client-portal/src/@types/paginated-data.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/policy.ts b/frontend/client-portal/src/@types/policy.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/product.ts b/frontend/client-portal/src/@types/product.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/table.ts b/frontend/client-portal/src/@types/table.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/@types/user.ts b/frontend/client-portal/src/@types/user.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/App.tsx b/frontend/client-portal/src/App.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/_analytics.tsx b/frontend/client-portal/src/_mock/_analytics.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/_app.ts b/frontend/client-portal/src/_mock/_app.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/_banking.ts b/frontend/client-portal/src/_mock/_banking.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/_booking.ts b/frontend/client-portal/src/_mock/_booking.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/_countries.ts b/frontend/client-portal/src/_mock/_countries.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/_ecommerce.ts b/frontend/client-portal/src/_mock/_ecommerce.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/_mock.ts b/frontend/client-portal/src/_mock/_mock.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/_others.ts b/frontend/client-portal/src/_mock/_others.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/_plans.tsx b/frontend/client-portal/src/_mock/_plans.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/_top100Films.ts b/frontend/client-portal/src/_mock/_top100Films.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/_user.ts b/frontend/client-portal/src/_mock/_user.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/address.ts b/frontend/client-portal/src/_mock/address.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/boolean.ts b/frontend/client-portal/src/_mock/boolean.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/company.ts b/frontend/client-portal/src/_mock/company.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/email.ts b/frontend/client-portal/src/_mock/email.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/funcs.ts b/frontend/client-portal/src/_mock/funcs.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/index.ts b/frontend/client-portal/src/_mock/index.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/map/cities.ts b/frontend/client-portal/src/_mock/map/cities.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/map/countries.ts b/frontend/client-portal/src/_mock/map/countries.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/map/map-style-basic-v8.json b/frontend/client-portal/src/_mock/map/map-style-basic-v8.json old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/map/stations.ts b/frontend/client-portal/src/_mock/map/stations.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/name.ts b/frontend/client-portal/src/_mock/name.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/number.ts b/frontend/client-portal/src/_mock/number.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/phoneNumber.ts b/frontend/client-portal/src/_mock/phoneNumber.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/role.ts b/frontend/client-portal/src/_mock/role.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/_mock/text.ts b/frontend/client-portal/src/_mock/text.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/icon_plan_free.tsx b/frontend/client-portal/src/assets/icon_plan_free.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/icon_plan_premium.tsx b/frontend/client-portal/src/assets/icon_plan_premium.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/icon_plan_starter.tsx b/frontend/client-portal/src/assets/icon_plan_starter.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/icon_sent.tsx b/frontend/client-portal/src/assets/icon_sent.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/illustration_404.tsx b/frontend/client-portal/src/assets/illustration_404.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/illustration_500.tsx b/frontend/client-portal/src/assets/illustration_500.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/illustration_booking.tsx b/frontend/client-portal/src/assets/illustration_booking.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/illustration_checkin.tsx b/frontend/client-portal/src/assets/illustration_checkin.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/illustration_checkout.tsx b/frontend/client-portal/src/assets/illustration_checkout.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/illustration_coming_soon.tsx b/frontend/client-portal/src/assets/illustration_coming_soon.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/illustration_doc.tsx b/frontend/client-portal/src/assets/illustration_doc.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/illustration_maintenance.tsx b/frontend/client-portal/src/assets/illustration_maintenance.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/illustration_motivation.tsx b/frontend/client-portal/src/assets/illustration_motivation.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/illustration_order_complete.tsx b/frontend/client-portal/src/assets/illustration_order_complete.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/illustration_seo.tsx b/frontend/client-portal/src/assets/illustration_seo.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/illustration_upload.tsx b/frontend/client-portal/src/assets/illustration_upload.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/assets/index.ts b/frontend/client-portal/src/assets/index.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/BadgeStatus.tsx b/frontend/client-portal/src/components/BadgeStatus.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/BasePagination.tsx b/frontend/client-portal/src/components/BasePagination.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/BaseTablePagination.tsx b/frontend/client-portal/src/components/BaseTablePagination.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/Breadcrumbs.tsx b/frontend/client-portal/src/components/Breadcrumbs.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/HeaderBreadcrumbs.tsx b/frontend/client-portal/src/components/HeaderBreadcrumbs.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/Iconify.tsx b/frontend/client-portal/src/components/Iconify.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/Image.tsx b/frontend/client-portal/src/components/Image.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/LaravelTable.tsx b/frontend/client-portal/src/components/LaravelTable.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/LoadingScreen.tsx b/frontend/client-portal/src/components/LoadingScreen.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/Logo.tsx b/frontend/client-portal/src/components/Logo.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/MenuPopover.tsx b/frontend/client-portal/src/components/MenuPopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/MuiDialog.tsx b/frontend/client-portal/src/components/MuiDialog.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/Page.tsx b/frontend/client-portal/src/components/Page.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/Popup.tsx b/frontend/client-portal/src/components/Popup.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/ProgressBar.tsx b/frontend/client-portal/src/components/ProgressBar.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/RtlLayout.tsx b/frontend/client-portal/src/components/RtlLayout.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/ScrollToTop.ts b/frontend/client-portal/src/components/ScrollToTop.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/Scrollbar.tsx b/frontend/client-portal/src/components/Scrollbar.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/SvgIconStyle.tsx b/frontend/client-portal/src/components/SvgIconStyle.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/Table.tsx b/frontend/client-portal/src/components/Table.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/ThemeColorPresets.tsx b/frontend/client-portal/src/components/ThemeColorPresets.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/DialogAnimate.tsx b/frontend/client-portal/src/components/animate/DialogAnimate.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/FabButtonAnimate.tsx b/frontend/client-portal/src/components/animate/FabButtonAnimate.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/IconButtonAnimate.tsx b/frontend/client-portal/src/components/animate/IconButtonAnimate.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/MotionContainer.tsx b/frontend/client-portal/src/components/animate/MotionContainer.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/MotionInView.tsx b/frontend/client-portal/src/components/animate/MotionInView.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/MotionLazyContainer.tsx b/frontend/client-portal/src/components/animate/MotionLazyContainer.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/TextAnimate.tsx b/frontend/client-portal/src/components/animate/TextAnimate.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/features.js b/frontend/client-portal/src/components/animate/features.js old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/index.ts b/frontend/client-portal/src/components/animate/index.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/type.ts b/frontend/client-portal/src/components/animate/type.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/variants/actions.ts b/frontend/client-portal/src/components/animate/variants/actions.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/variants/background.ts b/frontend/client-portal/src/components/animate/variants/background.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/variants/bounce.ts b/frontend/client-portal/src/components/animate/variants/bounce.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/variants/container.ts b/frontend/client-portal/src/components/animate/variants/container.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/variants/fade.ts b/frontend/client-portal/src/components/animate/variants/fade.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/variants/flip.ts b/frontend/client-portal/src/components/animate/variants/flip.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/variants/index.ts b/frontend/client-portal/src/components/animate/variants/index.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/variants/path.ts b/frontend/client-portal/src/components/animate/variants/path.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/variants/rotate.ts b/frontend/client-portal/src/components/animate/variants/rotate.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/variants/scale.ts b/frontend/client-portal/src/components/animate/variants/scale.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/variants/slide.ts b/frontend/client-portal/src/components/animate/variants/slide.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/variants/transition.ts b/frontend/client-portal/src/components/animate/variants/transition.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/animate/variants/zoom.ts b/frontend/client-portal/src/components/animate/variants/zoom.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/chart/BaseOptionChart.tsx b/frontend/client-portal/src/components/chart/BaseOptionChart.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/chart/ChartStyle.tsx b/frontend/client-portal/src/components/chart/ChartStyle.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/chart/index.ts b/frontend/client-portal/src/components/chart/index.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/editor/EditorToolbar.tsx b/frontend/client-portal/src/components/editor/EditorToolbar.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/editor/EditorToolbarStyle.tsx b/frontend/client-portal/src/components/editor/EditorToolbarStyle.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/editor/index.tsx b/frontend/client-portal/src/components/editor/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/hook-form/FormProvider.tsx b/frontend/client-portal/src/components/hook-form/FormProvider.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/hook-form/RHFCheckbox.tsx b/frontend/client-portal/src/components/hook-form/RHFCheckbox.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/hook-form/RHFDatepicker.tsx b/frontend/client-portal/src/components/hook-form/RHFDatepicker.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/hook-form/RHFEditor.tsx b/frontend/client-portal/src/components/hook-form/RHFEditor.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/hook-form/RHFRadioGroup.tsx b/frontend/client-portal/src/components/hook-form/RHFRadioGroup.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/hook-form/RHFSelect.tsx b/frontend/client-portal/src/components/hook-form/RHFSelect.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/hook-form/RHFSwitch.tsx b/frontend/client-portal/src/components/hook-form/RHFSwitch.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/hook-form/RHFTextField.tsx b/frontend/client-portal/src/components/hook-form/RHFTextField.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/hook-form/RHFUpload.tsx b/frontend/client-portal/src/components/hook-form/RHFUpload.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/hook-form/index.ts b/frontend/client-portal/src/components/hook-form/index.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/nav-section/horizontal/NavItem.tsx b/frontend/client-portal/src/components/nav-section/horizontal/NavItem.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/nav-section/horizontal/NavList.tsx b/frontend/client-portal/src/components/nav-section/horizontal/NavList.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/nav-section/horizontal/index.tsx b/frontend/client-portal/src/components/nav-section/horizontal/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/nav-section/horizontal/style.ts b/frontend/client-portal/src/components/nav-section/horizontal/style.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/nav-section/index.ts b/frontend/client-portal/src/components/nav-section/index.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/nav-section/type.ts b/frontend/client-portal/src/components/nav-section/type.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/nav-section/vertical/NavItem.tsx b/frontend/client-portal/src/components/nav-section/vertical/NavItem.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/nav-section/vertical/NavList.tsx b/frontend/client-portal/src/components/nav-section/vertical/NavList.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/nav-section/vertical/index.tsx b/frontend/client-portal/src/components/nav-section/vertical/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/nav-section/vertical/style.ts b/frontend/client-portal/src/components/nav-section/vertical/style.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/settings/SettingColorPresets.tsx b/frontend/client-portal/src/components/settings/SettingColorPresets.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/settings/SettingDirection.tsx b/frontend/client-portal/src/components/settings/SettingDirection.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/settings/SettingFullscreen.tsx b/frontend/client-portal/src/components/settings/SettingFullscreen.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/settings/SettingLayout.tsx b/frontend/client-portal/src/components/settings/SettingLayout.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/settings/SettingMode.tsx b/frontend/client-portal/src/components/settings/SettingMode.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/settings/SettingStretch.tsx b/frontend/client-portal/src/components/settings/SettingStretch.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/settings/ToggleButton.tsx b/frontend/client-portal/src/components/settings/ToggleButton.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/settings/index.tsx b/frontend/client-portal/src/components/settings/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/settings/type.ts b/frontend/client-portal/src/components/settings/type.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/upload/BlockContent.tsx b/frontend/client-portal/src/components/upload/BlockContent.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/upload/MultiFilePreview.tsx b/frontend/client-portal/src/components/upload/MultiFilePreview.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/upload/RejectionFiles.tsx b/frontend/client-portal/src/components/upload/RejectionFiles.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/upload/UploadAvatar.tsx b/frontend/client-portal/src/components/upload/UploadAvatar.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/upload/UploadMultiFile.tsx b/frontend/client-portal/src/components/upload/UploadMultiFile.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/upload/UploadSingleFile.tsx b/frontend/client-portal/src/components/upload/UploadSingleFile.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/upload/index.ts b/frontend/client-portal/src/components/upload/index.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/components/upload/type.ts b/frontend/client-portal/src/components/upload/type.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/config.ts b/frontend/client-portal/src/config.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/contexts/CollapseDrawerContext.tsx b/frontend/client-portal/src/contexts/CollapseDrawerContext.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/contexts/LaravelAuthContext.tsx b/frontend/client-portal/src/contexts/LaravelAuthContext.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/contexts/SettingsContext.tsx b/frontend/client-portal/src/contexts/SettingsContext.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/contexts/UserCurrentCorporate.tsx b/frontend/client-portal/src/contexts/UserCurrentCorporate.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/guards/AuthGuard.tsx b/frontend/client-portal/src/guards/AuthGuard.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/guards/GuestGuard.tsx b/frontend/client-portal/src/guards/GuestGuard.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/guards/RoleBasedGuard.tsx b/frontend/client-portal/src/guards/RoleBasedGuard.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/hooks/useAuth.ts b/frontend/client-portal/src/hooks/useAuth.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/hooks/useCollapseDrawer.ts b/frontend/client-portal/src/hooks/useCollapseDrawer.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/hooks/useIsMountedRef.ts b/frontend/client-portal/src/hooks/useIsMountedRef.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/hooks/useLocalStorage.ts b/frontend/client-portal/src/hooks/useLocalStorage.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/hooks/useLocales.ts b/frontend/client-portal/src/hooks/useLocales.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/hooks/useMap.ts b/frontend/client-portal/src/hooks/useMap.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/hooks/useOffSetTop.ts b/frontend/client-portal/src/hooks/useOffSetTop.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/hooks/useResponsive.ts b/frontend/client-portal/src/hooks/useResponsive.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/hooks/useSettings.ts b/frontend/client-portal/src/hooks/useSettings.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/hooks/useTable.ts b/frontend/client-portal/src/hooks/useTable.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/hooks/useTabs.ts b/frontend/client-portal/src/hooks/useTabs.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/hooks/useToggle.ts b/frontend/client-portal/src/hooks/useToggle.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/index.tsx b/frontend/client-portal/src/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/LogoOnlyLayout.tsx b/frontend/client-portal/src/layouts/LogoOnlyLayout.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/header/AccountPopover.tsx b/frontend/client-portal/src/layouts/dashboard/header/AccountPopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/header/ContactsPopover.tsx b/frontend/client-portal/src/layouts/dashboard/header/ContactsPopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/header/CorporatePopover.tsx b/frontend/client-portal/src/layouts/dashboard/header/CorporatePopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/header/LanguagePopover.tsx b/frontend/client-portal/src/layouts/dashboard/header/LanguagePopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/header/NotificationsPopover.tsx b/frontend/client-portal/src/layouts/dashboard/header/NotificationsPopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/header/Searchbar.tsx b/frontend/client-portal/src/layouts/dashboard/header/Searchbar.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/header/index.tsx b/frontend/client-portal/src/layouts/dashboard/header/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/index.tsx b/frontend/client-portal/src/layouts/dashboard/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/navbar/CollapseButton.tsx b/frontend/client-portal/src/layouts/dashboard/navbar/CollapseButton.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/navbar/NavConfig.tsx b/frontend/client-portal/src/layouts/dashboard/navbar/NavConfig.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/navbar/NavbarAccount.tsx b/frontend/client-portal/src/layouts/dashboard/navbar/NavbarAccount.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/navbar/NavbarDocs.tsx b/frontend/client-portal/src/layouts/dashboard/navbar/NavbarDocs.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/navbar/NavbarHorizontal.tsx b/frontend/client-portal/src/layouts/dashboard/navbar/NavbarHorizontal.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/layouts/dashboard/navbar/NavbarVertical.tsx b/frontend/client-portal/src/layouts/dashboard/navbar/NavbarVertical.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/AlarmCenter/Index.tsx b/frontend/client-portal/src/pages/AlarmCenter/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/AlarmCenter/List.tsx b/frontend/client-portal/src/pages/AlarmCenter/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/AlarmCenter/ServiceMonitoring.tsx b/frontend/client-portal/src/pages/AlarmCenter/ServiceMonitoring.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/AlarmCenter/UserProfile.tsx b/frontend/client-portal/src/pages/AlarmCenter/UserProfile.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/ClaimReport/Index.tsx b/frontend/client-portal/src/pages/ClaimReport/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/Claims/CreateUpdate.tsx b/frontend/client-portal/src/pages/Claims/CreateUpdate.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/Claims/Form.tsx b/frontend/client-portal/src/pages/Claims/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/Claims/Index.tsx b/frontend/client-portal/src/pages/Claims/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/Claims/List.tsx b/frontend/client-portal/src/pages/Claims/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/Claims/Show.tsx b/frontend/client-portal/src/pages/Claims/Show.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/Claims/components/ClaimItems.tsx b/frontend/client-portal/src/pages/Claims/components/ClaimItems.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/Claims/components/DiagnosisHistory.tsx b/frontend/client-portal/src/pages/Claims/components/DiagnosisHistory.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/Claims/components/DialogMemberBenefit.tsx b/frontend/client-portal/src/pages/Claims/components/DialogMemberBenefit.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/Claims/components/Documents.tsx b/frontend/client-portal/src/pages/Claims/components/Documents.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/Dashboard/Index.tsx b/frontend/client-portal/src/pages/Dashboard/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/Page404.tsx b/frontend/client-portal/src/pages/Page404.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/pages/auth/Login.tsx b/frontend/client-portal/src/pages/auth/Login.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/react-app-env.d.ts b/frontend/client-portal/src/react-app-env.d.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/routes/index.tsx b/frontend/client-portal/src/routes/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/routes/paths.ts b/frontend/client-portal/src/routes/paths.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/alarm-center/user-profile/CardBenefitSummary.tsx b/frontend/client-portal/src/sections/alarm-center/user-profile/CardBenefitSummary.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/alarm-center/user-profile/CardClaimHistory.tsx b/frontend/client-portal/src/sections/alarm-center/user-profile/CardClaimHistory.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/alarm-center/user-profile/CardFamilyInformation.tsx b/frontend/client-portal/src/sections/alarm-center/user-profile/CardFamilyInformation.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/alarm-center/user-profile/CardPersonalInformation.tsx b/frontend/client-portal/src/sections/alarm-center/user-profile/CardPersonalInformation.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/alarm-center/user-profile/CardPolicyNumber.tsx b/frontend/client-portal/src/sections/alarm-center/user-profile/CardPolicyNumber.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/auth/AuthFirebaseSocial.tsx b/frontend/client-portal/src/sections/auth/AuthFirebaseSocial.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/auth/login/LoginEmailForm.tsx b/frontend/client-portal/src/sections/auth/login/LoginEmailForm.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/auth/login/LoginPhoneForm.tsx b/frontend/client-portal/src/sections/auth/login/LoginPhoneForm.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/auth/login/VerifyCodeForm.tsx b/frontend/client-portal/src/sections/auth/login/VerifyCodeForm.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/auth/login/index.ts b/frontend/client-portal/src/sections/auth/login/index.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/claim-report/CardClaimStatus.tsx b/frontend/client-portal/src/sections/claim-report/CardClaimStatus.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/dashboard/CardNotification.tsx b/frontend/client-portal/src/sections/dashboard/CardNotification.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/dashboard/CardPolicy.tsx b/frontend/client-portal/src/sections/dashboard/CardPolicy.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/dashboard/DialogClaimSubmitMember.tsx b/frontend/client-portal/src/sections/dashboard/DialogClaimSubmitMember.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/dashboard/DialogClaimSubmitMemberSubmission.tsx b/frontend/client-portal/src/sections/dashboard/DialogClaimSubmitMemberSubmission.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/dashboard/DialogDetailClaim.tsx b/frontend/client-portal/src/sections/dashboard/DialogDetailClaim.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/dashboard/DialogNotification.tsx b/frontend/client-portal/src/sections/dashboard/DialogNotification.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/sections/dashboard/DialogTopUpLimit.tsx b/frontend/client-portal/src/sections/dashboard/DialogTopUpLimit.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/breakpoints.ts b/frontend/client-portal/src/theme/breakpoints.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/index.tsx b/frontend/client-portal/src/theme/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Accordion.ts b/frontend/client-portal/src/theme/overrides/Accordion.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Alert.tsx b/frontend/client-portal/src/theme/overrides/Alert.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Autocomplete.ts b/frontend/client-portal/src/theme/overrides/Autocomplete.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Avatar.ts b/frontend/client-portal/src/theme/overrides/Avatar.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Backdrop.ts b/frontend/client-portal/src/theme/overrides/Backdrop.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Badge.ts b/frontend/client-portal/src/theme/overrides/Badge.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Breadcrumbs.ts b/frontend/client-portal/src/theme/overrides/Breadcrumbs.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Button.ts b/frontend/client-portal/src/theme/overrides/Button.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/ButtonGroup.ts b/frontend/client-portal/src/theme/overrides/ButtonGroup.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Card.ts b/frontend/client-portal/src/theme/overrides/Card.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Checkbox.tsx b/frontend/client-portal/src/theme/overrides/Checkbox.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Chip.tsx b/frontend/client-portal/src/theme/overrides/Chip.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/ControlLabel.ts b/frontend/client-portal/src/theme/overrides/ControlLabel.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/CssBaseline.ts b/frontend/client-portal/src/theme/overrides/CssBaseline.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/CustomIcons.tsx b/frontend/client-portal/src/theme/overrides/CustomIcons.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/DataGrid.ts b/frontend/client-portal/src/theme/overrides/DataGrid.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Dialog.ts b/frontend/client-portal/src/theme/overrides/Dialog.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Drawer.ts b/frontend/client-portal/src/theme/overrides/Drawer.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Fab.ts b/frontend/client-portal/src/theme/overrides/Fab.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Input.ts b/frontend/client-portal/src/theme/overrides/Input.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Link.ts b/frontend/client-portal/src/theme/overrides/Link.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/List.ts b/frontend/client-portal/src/theme/overrides/List.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/LoadingButton.ts b/frontend/client-portal/src/theme/overrides/LoadingButton.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Menu.ts b/frontend/client-portal/src/theme/overrides/Menu.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Pagination.ts b/frontend/client-portal/src/theme/overrides/Pagination.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Paper.ts b/frontend/client-portal/src/theme/overrides/Paper.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Popover.ts b/frontend/client-portal/src/theme/overrides/Popover.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Progress.ts b/frontend/client-portal/src/theme/overrides/Progress.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Radio.ts b/frontend/client-portal/src/theme/overrides/Radio.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Rating.tsx b/frontend/client-portal/src/theme/overrides/Rating.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Select.tsx b/frontend/client-portal/src/theme/overrides/Select.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Skeleton.ts b/frontend/client-portal/src/theme/overrides/Skeleton.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Slider.ts b/frontend/client-portal/src/theme/overrides/Slider.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Stepper.ts b/frontend/client-portal/src/theme/overrides/Stepper.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/SvgIcon.ts b/frontend/client-portal/src/theme/overrides/SvgIcon.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Switch.ts b/frontend/client-portal/src/theme/overrides/Switch.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Table.ts b/frontend/client-portal/src/theme/overrides/Table.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Tabs.ts b/frontend/client-portal/src/theme/overrides/Tabs.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Timeline.ts b/frontend/client-portal/src/theme/overrides/Timeline.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/ToggleButton.ts b/frontend/client-portal/src/theme/overrides/ToggleButton.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Tooltip.ts b/frontend/client-portal/src/theme/overrides/Tooltip.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/TreeView.tsx b/frontend/client-portal/src/theme/overrides/TreeView.tsx old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/Typography.ts b/frontend/client-portal/src/theme/overrides/Typography.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/overrides/index.ts b/frontend/client-portal/src/theme/overrides/index.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/palette.ts b/frontend/client-portal/src/theme/palette.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/shadows.ts b/frontend/client-portal/src/theme/shadows.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/theme/typography.ts b/frontend/client-portal/src/theme/typography.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/utils/axios.ts b/frontend/client-portal/src/utils/axios.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/utils/cssStyles.ts b/frontend/client-portal/src/utils/cssStyles.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/utils/formatNumber.ts b/frontend/client-portal/src/utils/formatNumber.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/utils/formatTime.ts b/frontend/client-portal/src/utils/formatTime.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/utils/getColorPresets.ts b/frontend/client-portal/src/utils/getColorPresets.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/utils/getFontValue.ts b/frontend/client-portal/src/utils/getFontValue.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/src/utils/token.ts b/frontend/client-portal/src/utils/token.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/tsconfig.json b/frontend/client-portal/tsconfig.json old mode 100755 new mode 100644 diff --git a/frontend/client-portal/vite.config.ts b/frontend/client-portal/vite.config.ts old mode 100755 new mode 100644 diff --git a/frontend/client-portal/yarn.lock b/frontend/client-portal/yarn.lock old mode 100755 new mode 100644 diff --git a/frontend/dashboard/.env.development b/frontend/dashboard/.env.development old mode 100755 new mode 100644 diff --git a/frontend/dashboard/.env.production b/frontend/dashboard/.env.production old mode 100755 new mode 100644 diff --git a/frontend/dashboard/.env.staging b/frontend/dashboard/.env.staging old mode 100755 new mode 100644 diff --git a/frontend/dashboard/.eslintignore b/frontend/dashboard/.eslintignore old mode 100755 new mode 100644 diff --git a/frontend/dashboard/.eslintrc b/frontend/dashboard/.eslintrc old mode 100755 new mode 100644 diff --git a/frontend/dashboard/.gitignore b/frontend/dashboard/.gitignore old mode 100755 new mode 100644 diff --git a/frontend/dashboard/.htaccess b/frontend/dashboard/.htaccess old mode 100755 new mode 100644 diff --git a/frontend/dashboard/.pnpm-debug.log b/frontend/dashboard/.pnpm-debug.log old mode 100755 new mode 100644 diff --git a/frontend/dashboard/.prettierrc b/frontend/dashboard/.prettierrc old mode 100755 new mode 100644 diff --git a/frontend/dashboard/index.html b/frontend/dashboard/index.html old mode 100755 new mode 100644 diff --git a/frontend/dashboard/package-lock.json b/frontend/dashboard/package-lock.json old mode 100755 new mode 100644 diff --git a/frontend/dashboard/package.json b/frontend/dashboard/package.json old mode 100755 new mode 100644 diff --git a/frontend/dashboard/pnpm-lock.yaml b/frontend/dashboard/pnpm-lock.yaml old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/_redirects b/frontend/dashboard/public/_redirects old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/favicon/android-chrome-192x192.png b/frontend/dashboard/public/favicon/android-chrome-192x192.png old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/favicon/android-chrome-512x512.png b/frontend/dashboard/public/favicon/android-chrome-512x512.png old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/favicon/apple-touch-icon.png b/frontend/dashboard/public/favicon/apple-touch-icon.png old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/favicon/favicon-16x16.png b/frontend/dashboard/public/favicon/favicon-16x16.png old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/favicon/favicon-32x32.png b/frontend/dashboard/public/favicon/favicon-32x32.png old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/favicon/favicon.ico b/frontend/dashboard/public/favicon/favicon.ico old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/fonts/CircularStd-Bold.otf b/frontend/dashboard/public/fonts/CircularStd-Bold.otf old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/fonts/CircularStd-Book.otf b/frontend/dashboard/public/fonts/CircularStd-Book.otf old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/fonts/CircularStd-Medium.otf b/frontend/dashboard/public/fonts/CircularStd-Medium.otf old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/fonts/Roboto-Bold.ttf b/frontend/dashboard/public/fonts/Roboto-Bold.ttf old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/fonts/Roboto-Regular.ttf b/frontend/dashboard/public/fonts/Roboto-Regular.ttf old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/fonts/index.css b/frontend/dashboard/public/fonts/index.css old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/icons/ic_analytics.svg b/frontend/dashboard/public/icons/ic_analytics.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/icons/ic_banking.svg b/frontend/dashboard/public/icons/ic_banking.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/icons/ic_blog.svg b/frontend/dashboard/public/icons/ic_blog.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/icons/ic_booking.svg b/frontend/dashboard/public/icons/ic_booking.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/icons/ic_calendar.svg b/frontend/dashboard/public/icons/ic_calendar.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/icons/ic_cart.svg b/frontend/dashboard/public/icons/ic_cart.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/icons/ic_chat.svg b/frontend/dashboard/public/icons/ic_chat.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/icons/ic_dashboard.svg b/frontend/dashboard/public/icons/ic_dashboard.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/icons/ic_ecommerce.svg b/frontend/dashboard/public/icons/ic_ecommerce.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/icons/ic_kanban.svg b/frontend/dashboard/public/icons/ic_kanban.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/icons/ic_mail.svg b/frontend/dashboard/public/icons/ic_mail.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/icons/ic_user.svg b/frontend/dashboard/public/icons/ic_user.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/image/overlay.png b/frontend/dashboard/public/image/overlay.png old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/logo/logo-linksehat.png b/frontend/dashboard/public/logo/logo-linksehat.png old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/logo/logo_full.jpg b/frontend/dashboard/public/logo/logo_full.jpg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/logo/logo_full.svg b/frontend/dashboard/public/logo/logo_full.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/logo/logo_single.svg b/frontend/dashboard/public/logo/logo_single.svg old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/manifest.json b/frontend/dashboard/public/manifest.json old mode 100755 new mode 100644 diff --git a/frontend/dashboard/public/robots.txt b/frontend/dashboard/public/robots.txt old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/auth.ts b/frontend/dashboard/src/@types/auth.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/blog.ts b/frontend/dashboard/src/@types/blog.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/calendar.ts b/frontend/dashboard/src/@types/calendar.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/chat.ts b/frontend/dashboard/src/@types/chat.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/corporates.ts b/frontend/dashboard/src/@types/corporates.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/diagnosis.ts b/frontend/dashboard/src/@types/diagnosis.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/doctor.tsx b/frontend/dashboard/src/@types/doctor.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/invoice.ts b/frontend/dashboard/src/@types/invoice.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/kanban.ts b/frontend/dashboard/src/@types/kanban.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/mail.ts b/frontend/dashboard/src/@types/mail.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/member.ts b/frontend/dashboard/src/@types/member.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/organization.tsx b/frontend/dashboard/src/@types/organization.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/paginated-data.ts b/frontend/dashboard/src/@types/paginated-data.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/product.ts b/frontend/dashboard/src/@types/product.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/@types/user.ts b/frontend/dashboard/src/@types/user.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/App.tsx b/frontend/dashboard/src/App.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/_analytics.tsx b/frontend/dashboard/src/_mock/_analytics.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/_app.ts b/frontend/dashboard/src/_mock/_app.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/_banking.ts b/frontend/dashboard/src/_mock/_banking.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/_booking.ts b/frontend/dashboard/src/_mock/_booking.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/_countries.ts b/frontend/dashboard/src/_mock/_countries.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/_ecommerce.ts b/frontend/dashboard/src/_mock/_ecommerce.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/_mock.ts b/frontend/dashboard/src/_mock/_mock.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/_others.ts b/frontend/dashboard/src/_mock/_others.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/_plans.tsx b/frontend/dashboard/src/_mock/_plans.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/_top100Films.ts b/frontend/dashboard/src/_mock/_top100Films.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/_user.ts b/frontend/dashboard/src/_mock/_user.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/address.ts b/frontend/dashboard/src/_mock/address.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/boolean.ts b/frontend/dashboard/src/_mock/boolean.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/company.ts b/frontend/dashboard/src/_mock/company.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/email.ts b/frontend/dashboard/src/_mock/email.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/funcs.ts b/frontend/dashboard/src/_mock/funcs.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/index.ts b/frontend/dashboard/src/_mock/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/map/cities.ts b/frontend/dashboard/src/_mock/map/cities.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/map/countries.ts b/frontend/dashboard/src/_mock/map/countries.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/map/map-style-basic-v8.json b/frontend/dashboard/src/_mock/map/map-style-basic-v8.json old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/map/stations.ts b/frontend/dashboard/src/_mock/map/stations.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/name.ts b/frontend/dashboard/src/_mock/name.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/number.ts b/frontend/dashboard/src/_mock/number.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/phoneNumber.ts b/frontend/dashboard/src/_mock/phoneNumber.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/role.ts b/frontend/dashboard/src/_mock/role.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/_mock/text.ts b/frontend/dashboard/src/_mock/text.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/icon_plan_free.tsx b/frontend/dashboard/src/assets/icon_plan_free.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/icon_plan_premium.tsx b/frontend/dashboard/src/assets/icon_plan_premium.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/icon_plan_starter.tsx b/frontend/dashboard/src/assets/icon_plan_starter.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/icon_sent.tsx b/frontend/dashboard/src/assets/icon_sent.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/illustration_404.tsx b/frontend/dashboard/src/assets/illustration_404.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/illustration_500.tsx b/frontend/dashboard/src/assets/illustration_500.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/illustration_booking.tsx b/frontend/dashboard/src/assets/illustration_booking.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/illustration_checkin.tsx b/frontend/dashboard/src/assets/illustration_checkin.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/illustration_checkout.tsx b/frontend/dashboard/src/assets/illustration_checkout.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/illustration_coming_soon.tsx b/frontend/dashboard/src/assets/illustration_coming_soon.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/illustration_doc.tsx b/frontend/dashboard/src/assets/illustration_doc.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/illustration_maintenance.tsx b/frontend/dashboard/src/assets/illustration_maintenance.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/illustration_motivation.tsx b/frontend/dashboard/src/assets/illustration_motivation.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/illustration_order_complete.tsx b/frontend/dashboard/src/assets/illustration_order_complete.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/illustration_seo.tsx b/frontend/dashboard/src/assets/illustration_seo.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/illustration_upload.tsx b/frontend/dashboard/src/assets/illustration_upload.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/assets/index.ts b/frontend/dashboard/src/assets/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/BadgeStatus.tsx b/frontend/dashboard/src/components/BadgeStatus.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/BasePagination.tsx b/frontend/dashboard/src/components/BasePagination.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/Breadcrumbs.tsx b/frontend/dashboard/src/components/Breadcrumbs.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/HeaderBreadcrumbs.tsx b/frontend/dashboard/src/components/HeaderBreadcrumbs.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/Iconify.tsx b/frontend/dashboard/src/components/Iconify.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/Image.tsx b/frontend/dashboard/src/components/Image.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/LaravelTable.tsx b/frontend/dashboard/src/components/LaravelTable.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/LoadingScreen.tsx b/frontend/dashboard/src/components/LoadingScreen.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/Logo.tsx b/frontend/dashboard/src/components/Logo.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/MenuPopover.tsx b/frontend/dashboard/src/components/MenuPopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/MuiDialog.tsx b/frontend/dashboard/src/components/MuiDialog.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/MyDropzone.tsx b/frontend/dashboard/src/components/MyDropzone.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/Page.tsx b/frontend/dashboard/src/components/Page.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/ProgressBar.tsx b/frontend/dashboard/src/components/ProgressBar.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/RtlLayout.tsx b/frontend/dashboard/src/components/RtlLayout.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/ScrollToTop.ts b/frontend/dashboard/src/components/ScrollToTop.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/Scrollbar.tsx b/frontend/dashboard/src/components/Scrollbar.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/SvgIconStyle.tsx b/frontend/dashboard/src/components/SvgIconStyle.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/ThemeColorPresets.tsx b/frontend/dashboard/src/components/ThemeColorPresets.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/UploadImage.tsx b/frontend/dashboard/src/components/UploadImage.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/DialogAnimate.tsx b/frontend/dashboard/src/components/animate/DialogAnimate.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/FabButtonAnimate.tsx b/frontend/dashboard/src/components/animate/FabButtonAnimate.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/IconButtonAnimate.tsx b/frontend/dashboard/src/components/animate/IconButtonAnimate.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/MotionContainer.tsx b/frontend/dashboard/src/components/animate/MotionContainer.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/MotionInView.tsx b/frontend/dashboard/src/components/animate/MotionInView.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/MotionLazyContainer.tsx b/frontend/dashboard/src/components/animate/MotionLazyContainer.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/TextAnimate.tsx b/frontend/dashboard/src/components/animate/TextAnimate.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/features.js b/frontend/dashboard/src/components/animate/features.js old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/index.ts b/frontend/dashboard/src/components/animate/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/type.ts b/frontend/dashboard/src/components/animate/type.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/variants/actions.ts b/frontend/dashboard/src/components/animate/variants/actions.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/variants/background.ts b/frontend/dashboard/src/components/animate/variants/background.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/variants/bounce.ts b/frontend/dashboard/src/components/animate/variants/bounce.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/variants/container.ts b/frontend/dashboard/src/components/animate/variants/container.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/variants/fade.ts b/frontend/dashboard/src/components/animate/variants/fade.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/variants/flip.ts b/frontend/dashboard/src/components/animate/variants/flip.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/variants/index.ts b/frontend/dashboard/src/components/animate/variants/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/variants/path.ts b/frontend/dashboard/src/components/animate/variants/path.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/variants/rotate.ts b/frontend/dashboard/src/components/animate/variants/rotate.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/variants/scale.ts b/frontend/dashboard/src/components/animate/variants/scale.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/variants/slide.ts b/frontend/dashboard/src/components/animate/variants/slide.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/variants/transition.ts b/frontend/dashboard/src/components/animate/variants/transition.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/animate/variants/zoom.ts b/frontend/dashboard/src/components/animate/variants/zoom.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/autocomplete/AutocompleteDiagnosis.tsx b/frontend/dashboard/src/components/autocomplete/AutocompleteDiagnosis.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/autocomplete/AutocompleteDiagnosisControlled.tsx b/frontend/dashboard/src/components/autocomplete/AutocompleteDiagnosisControlled.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/autocomplete/AutocompleteDoctor.tsx b/frontend/dashboard/src/components/autocomplete/AutocompleteDoctor.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/autocomplete/AutocompleteHealthcare.tsx b/frontend/dashboard/src/components/autocomplete/AutocompleteHealthcare.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/autocomplete/AutocompleteLinksehatHealthcare.tsx b/frontend/dashboard/src/components/autocomplete/AutocompleteLinksehatHealthcare.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/chart/BaseOptionChart.tsx b/frontend/dashboard/src/components/chart/BaseOptionChart.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/chart/ChartStyle.tsx b/frontend/dashboard/src/components/chart/ChartStyle.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/chart/index.ts b/frontend/dashboard/src/components/chart/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/dialogs/DialogDetailClaim.tsx b/frontend/dashboard/src/components/dialogs/DialogDetailClaim.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/dialogs/MemberSelectDialog.tsx b/frontend/dashboard/src/components/dialogs/MemberSelectDialog.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/editor/EditorToolbar.tsx b/frontend/dashboard/src/components/editor/EditorToolbar.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/editor/EditorToolbarStyle.tsx b/frontend/dashboard/src/components/editor/EditorToolbarStyle.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/editor/index.tsx b/frontend/dashboard/src/components/editor/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/hook-form/FormProvider.tsx b/frontend/dashboard/src/components/hook-form/FormProvider.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/hook-form/RHFAutocomplete.tsx b/frontend/dashboard/src/components/hook-form/RHFAutocomplete.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/hook-form/RHFCheckbox.tsx b/frontend/dashboard/src/components/hook-form/RHFCheckbox.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/hook-form/RHFDatepicker.tsx b/frontend/dashboard/src/components/hook-form/RHFDatepicker.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/hook-form/RHFEditor.tsx b/frontend/dashboard/src/components/hook-form/RHFEditor.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/hook-form/RHFRadioGroup.tsx b/frontend/dashboard/src/components/hook-form/RHFRadioGroup.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/hook-form/RHFSelect.tsx b/frontend/dashboard/src/components/hook-form/RHFSelect.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/hook-form/RHFSwitch.tsx b/frontend/dashboard/src/components/hook-form/RHFSwitch.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/hook-form/RHFTextField.tsx b/frontend/dashboard/src/components/hook-form/RHFTextField.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/hook-form/RHFUpload.tsx b/frontend/dashboard/src/components/hook-form/RHFUpload.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/hook-form/index.ts b/frontend/dashboard/src/components/hook-form/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/nav-section/horizontal/NavItem.tsx b/frontend/dashboard/src/components/nav-section/horizontal/NavItem.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/nav-section/horizontal/NavList.tsx b/frontend/dashboard/src/components/nav-section/horizontal/NavList.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/nav-section/horizontal/index.tsx b/frontend/dashboard/src/components/nav-section/horizontal/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/nav-section/horizontal/style.ts b/frontend/dashboard/src/components/nav-section/horizontal/style.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/nav-section/index.ts b/frontend/dashboard/src/components/nav-section/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/nav-section/type.ts b/frontend/dashboard/src/components/nav-section/type.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/nav-section/vertical/NavItem.tsx b/frontend/dashboard/src/components/nav-section/vertical/NavItem.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/nav-section/vertical/NavList.tsx b/frontend/dashboard/src/components/nav-section/vertical/NavList.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/nav-section/vertical/index.tsx b/frontend/dashboard/src/components/nav-section/vertical/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/nav-section/vertical/style.ts b/frontend/dashboard/src/components/nav-section/vertical/style.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/settings/SettingColorPresets.tsx b/frontend/dashboard/src/components/settings/SettingColorPresets.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/settings/SettingDirection.tsx b/frontend/dashboard/src/components/settings/SettingDirection.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/settings/SettingFullscreen.tsx b/frontend/dashboard/src/components/settings/SettingFullscreen.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/settings/SettingLayout.tsx b/frontend/dashboard/src/components/settings/SettingLayout.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/settings/SettingMode.tsx b/frontend/dashboard/src/components/settings/SettingMode.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/settings/SettingStretch.tsx b/frontend/dashboard/src/components/settings/SettingStretch.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/settings/ToggleButton.tsx b/frontend/dashboard/src/components/settings/ToggleButton.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/settings/index.tsx b/frontend/dashboard/src/components/settings/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/settings/type.ts b/frontend/dashboard/src/components/settings/type.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/upload/BlockContent.tsx b/frontend/dashboard/src/components/upload/BlockContent.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/upload/MultiFilePreview.tsx b/frontend/dashboard/src/components/upload/MultiFilePreview.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/upload/RejectionFiles.tsx b/frontend/dashboard/src/components/upload/RejectionFiles.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/upload/UploadAvatar.tsx b/frontend/dashboard/src/components/upload/UploadAvatar.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/upload/UploadMultiFile.tsx b/frontend/dashboard/src/components/upload/UploadMultiFile.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/upload/UploadSingleFile.tsx b/frontend/dashboard/src/components/upload/UploadSingleFile.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/upload/index.ts b/frontend/dashboard/src/components/upload/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/components/upload/type.ts b/frontend/dashboard/src/components/upload/type.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/config.ts b/frontend/dashboard/src/config.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/contexts/CollapseDrawerContext.tsx b/frontend/dashboard/src/contexts/CollapseDrawerContext.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/contexts/ConfiguredCorporateContext.tsx b/frontend/dashboard/src/contexts/ConfiguredCorporateContext.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/contexts/LaravelAuthContext.tsx b/frontend/dashboard/src/contexts/LaravelAuthContext.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/contexts/SettingsContext.tsx b/frontend/dashboard/src/contexts/SettingsContext.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/guards/AuthGuard.tsx b/frontend/dashboard/src/guards/AuthGuard.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/guards/GuestGuard.tsx b/frontend/dashboard/src/guards/GuestGuard.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/guards/RoleBasedGuard.tsx b/frontend/dashboard/src/guards/RoleBasedGuard.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/hooks/useAuth.ts b/frontend/dashboard/src/hooks/useAuth.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/hooks/useCollapseDrawer.ts b/frontend/dashboard/src/hooks/useCollapseDrawer.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/hooks/useIsMountedRef.ts b/frontend/dashboard/src/hooks/useIsMountedRef.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/hooks/useLocalStorage.ts b/frontend/dashboard/src/hooks/useLocalStorage.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/hooks/useLocales.ts b/frontend/dashboard/src/hooks/useLocales.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/hooks/useOffSetTop.ts b/frontend/dashboard/src/hooks/useOffSetTop.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/hooks/useResponsive.ts b/frontend/dashboard/src/hooks/useResponsive.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/hooks/useSettings.ts b/frontend/dashboard/src/hooks/useSettings.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/hooks/useTable.ts b/frontend/dashboard/src/hooks/useTable.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/hooks/useTabs.ts b/frontend/dashboard/src/hooks/useTabs.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/hooks/useToggle.ts b/frontend/dashboard/src/hooks/useToggle.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/index.tsx b/frontend/dashboard/src/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/LogoOnlyLayout.tsx b/frontend/dashboard/src/layouts/LogoOnlyLayout.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/corporate/CorporateConfigLayout.tsx b/frontend/dashboard/src/layouts/dashboard/corporate/CorporateConfigLayout.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/header/AccountPopover.tsx b/frontend/dashboard/src/layouts/dashboard/header/AccountPopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/header/ContactsPopover.tsx b/frontend/dashboard/src/layouts/dashboard/header/ContactsPopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/header/LanguagePopover.tsx b/frontend/dashboard/src/layouts/dashboard/header/LanguagePopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/header/NotificationsPopover.tsx b/frontend/dashboard/src/layouts/dashboard/header/NotificationsPopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/header/Searchbar.tsx b/frontend/dashboard/src/layouts/dashboard/header/Searchbar.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/header/index.tsx b/frontend/dashboard/src/layouts/dashboard/header/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/index.tsx b/frontend/dashboard/src/layouts/dashboard/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/navbar/CollapseButton.tsx b/frontend/dashboard/src/layouts/dashboard/navbar/CollapseButton.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/navbar/NavConfig.tsx b/frontend/dashboard/src/layouts/dashboard/navbar/NavConfig.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/navbar/NavbarAccount.tsx b/frontend/dashboard/src/layouts/dashboard/navbar/NavbarAccount.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/navbar/NavbarDocs.tsx b/frontend/dashboard/src/layouts/dashboard/navbar/NavbarDocs.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/navbar/NavbarHorizontal.tsx b/frontend/dashboard/src/layouts/dashboard/navbar/NavbarHorizontal.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/layouts/dashboard/navbar/NavbarVertical.tsx b/frontend/dashboard/src/layouts/dashboard/navbar/NavbarVertical.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/ClaimRequests/CreateUpdate.tsx b/frontend/dashboard/src/pages/ClaimRequests/CreateUpdate.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/ClaimRequests/Form.tsx b/frontend/dashboard/src/pages/ClaimRequests/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/ClaimRequests/Index.tsx b/frontend/dashboard/src/pages/ClaimRequests/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/ClaimRequests/List.tsx b/frontend/dashboard/src/pages/ClaimRequests/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Claims/CreateUpdate.tsx b/frontend/dashboard/src/pages/Claims/CreateUpdate.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Claims/Form.tsx b/frontend/dashboard/src/pages/Claims/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Claims/Index.tsx b/frontend/dashboard/src/pages/Claims/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Claims/List.tsx b/frontend/dashboard/src/pages/Claims/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Claims/Show.tsx b/frontend/dashboard/src/pages/Claims/Show.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Claims/components/ClaimDetail.tsx b/frontend/dashboard/src/pages/Claims/components/ClaimDetail.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Claims/components/ClaimItems.tsx b/frontend/dashboard/src/pages/Claims/components/ClaimItems.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Claims/components/DiagnosisHistory.tsx b/frontend/dashboard/src/pages/Claims/components/DiagnosisHistory.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Claims/components/DialogDocumentRequest.tsx b/frontend/dashboard/src/pages/Claims/components/DialogDocumentRequest.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Claims/components/DialogHistoryPerawatan.tsx b/frontend/dashboard/src/pages/Claims/components/DialogHistoryPerawatan.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Claims/components/DialogMemberBenefit.tsx b/frontend/dashboard/src/pages/Claims/components/DialogMemberBenefit.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Claims/components/Documents.tsx b/frontend/dashboard/src/pages/Claims/components/Documents.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Claims/components/FormHistoryPerawatan.tsx b/frontend/dashboard/src/pages/Claims/components/FormHistoryPerawatan.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Benefit/Create.tsx b/frontend/dashboard/src/pages/Corporates/Benefit/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Benefit/Form.tsx b/frontend/dashboard/src/pages/Corporates/Benefit/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Benefit/Index.tsx b/frontend/dashboard/src/pages/Corporates/Benefit/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Benefit/List.tsx b/frontend/dashboard/src/pages/Corporates/Benefit/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Benefit/sections/DialogLog.tsx b/frontend/dashboard/src/pages/Corporates/Benefit/sections/DialogLog.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/ClaimHistory/CreateUpdate.tsx b/frontend/dashboard/src/pages/Corporates/ClaimHistory/CreateUpdate.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/ClaimHistory/Form.tsx b/frontend/dashboard/src/pages/Corporates/ClaimHistory/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/ClaimHistory/Index.tsx b/frontend/dashboard/src/pages/Corporates/ClaimHistory/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/ClaimHistory/List.tsx b/frontend/dashboard/src/pages/Corporates/ClaimHistory/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/ConfigLayout.tsx b/frontend/dashboard/src/pages/Corporates/ConfigLayout.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/CorporateBenefit/Create.tsx b/frontend/dashboard/src/pages/Corporates/CorporateBenefit/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/CorporateBenefit/CreateUpdate.tsx b/frontend/dashboard/src/pages/Corporates/CorporateBenefit/CreateUpdate.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/CorporateBenefit/Form.tsx b/frontend/dashboard/src/pages/Corporates/CorporateBenefit/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/CorporateBenefit/Index.tsx b/frontend/dashboard/src/pages/Corporates/CorporateBenefit/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/CorporateBenefit/List.tsx b/frontend/dashboard/src/pages/Corporates/CorporateBenefit/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/CorporatePlan/CreateUpdate.tsx b/frontend/dashboard/src/pages/Corporates/CorporatePlan/CreateUpdate.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/CorporatePlan/Form.tsx b/frontend/dashboard/src/pages/Corporates/CorporatePlan/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/CorporatePlan/Index.tsx b/frontend/dashboard/src/pages/Corporates/CorporatePlan/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/CorporatePlan/List.tsx b/frontend/dashboard/src/pages/Corporates/CorporatePlan/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/CorporateTabNavigations.tsx b/frontend/dashboard/src/pages/Corporates/CorporateTabNavigations.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/CreateUpdate.tsx b/frontend/dashboard/src/pages/Corporates/CreateUpdate.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/Create.tsx b/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/Index.tsx b/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/List.tsx b/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Division/CreateUpdate.tsx b/frontend/dashboard/src/pages/Corporates/Division/CreateUpdate.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Division/Form.tsx b/frontend/dashboard/src/pages/Corporates/Division/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Division/Index.tsx b/frontend/dashboard/src/pages/Corporates/Division/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Division/List.tsx b/frontend/dashboard/src/pages/Corporates/Division/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Form.tsx b/frontend/dashboard/src/pages/Corporates/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Formularium/Index.tsx b/frontend/dashboard/src/pages/Corporates/Formularium/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Formularium/List.tsx b/frontend/dashboard/src/pages/Corporates/Formularium/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Hospital/CreateUpdate.tsx b/frontend/dashboard/src/pages/Corporates/Hospital/CreateUpdate.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Hospital/Form.tsx b/frontend/dashboard/src/pages/Corporates/Hospital/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Hospital/Index.tsx b/frontend/dashboard/src/pages/Corporates/Hospital/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Hospital/List.tsx b/frontend/dashboard/src/pages/Corporates/Hospital/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Index.tsx b/frontend/dashboard/src/pages/Corporates/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Member/Create.tsx b/frontend/dashboard/src/pages/Corporates/Member/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Member/Index.tsx b/frontend/dashboard/src/pages/Corporates/Member/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Member/List.tsx b/frontend/dashboard/src/pages/Corporates/Member/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Member/sections/DialogLog.tsx b/frontend/dashboard/src/pages/Corporates/Member/sections/DialogLog.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Plan/Create.tsx b/frontend/dashboard/src/pages/Corporates/Plan/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Plan/Index.tsx b/frontend/dashboard/src/pages/Corporates/Plan/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Plan/List.tsx b/frontend/dashboard/src/pages/Corporates/Plan/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Plan/sections/DialogLog.tsx b/frontend/dashboard/src/pages/Corporates/Plan/sections/DialogLog.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Services/Create.tsx b/frontend/dashboard/src/pages/Corporates/Services/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Services/Index.tsx b/frontend/dashboard/src/pages/Corporates/Services/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Services/List.tsx b/frontend/dashboard/src/pages/Corporates/Services/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Services/sections/DialogLog.tsx b/frontend/dashboard/src/pages/Corporates/Services/sections/DialogLog.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Corporates/Show.tsx b/frontend/dashboard/src/pages/Corporates/Show.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Dashboard.tsx b/frontend/dashboard/src/pages/Dashboard.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Diagnosis/Create.tsx b/frontend/dashboard/src/pages/Master/Diagnosis/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Diagnosis/Index.tsx b/frontend/dashboard/src/pages/Master/Diagnosis/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Diagnosis/List.tsx b/frontend/dashboard/src/pages/Master/Diagnosis/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Doctors/Create.tsx b/frontend/dashboard/src/pages/Master/Doctors/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Doctors/Form.tsx b/frontend/dashboard/src/pages/Master/Doctors/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Doctors/Index.tsx b/frontend/dashboard/src/pages/Master/Doctors/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Doctors/List.tsx b/frontend/dashboard/src/pages/Master/Doctors/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Drug/Create.tsx b/frontend/dashboard/src/pages/Master/Drug/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Drug/Index.tsx b/frontend/dashboard/src/pages/Master/Drug/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Drug/List.tsx b/frontend/dashboard/src/pages/Master/Drug/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Formularium/Create.tsx b/frontend/dashboard/src/pages/Master/Formularium/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Formularium/Form.tsx b/frontend/dashboard/src/pages/Master/Formularium/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Formularium/Index.tsx b/frontend/dashboard/src/pages/Master/Formularium/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Formularium/List.tsx b/frontend/dashboard/src/pages/Master/Formularium/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Hospitals/Create.tsx b/frontend/dashboard/src/pages/Master/Hospitals/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Hospitals/Form.tsx b/frontend/dashboard/src/pages/Master/Hospitals/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Hospitals/Index.tsx b/frontend/dashboard/src/pages/Master/Hospitals/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Master/Hospitals/List.tsx b/frontend/dashboard/src/pages/Master/Hospitals/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Medicines/Create.tsx b/frontend/dashboard/src/pages/Medicines/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Members/Index.tsx b/frontend/dashboard/src/pages/Members/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Page404.tsx b/frontend/dashboard/src/pages/Page404.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Profile/FormPassword.tsx b/frontend/dashboard/src/pages/Profile/FormPassword.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Profile/Index.tsx b/frontend/dashboard/src/pages/Profile/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/Appointments/Create.tsx b/frontend/dashboard/src/pages/Report/Appointments/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/Appointments/Form.tsx b/frontend/dashboard/src/pages/Report/Appointments/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/Appointments/Index.tsx b/frontend/dashboard/src/pages/Report/Appointments/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/Appointments/List.tsx b/frontend/dashboard/src/pages/Report/Appointments/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/Appointments/Show.tsx b/frontend/dashboard/src/pages/Report/Appointments/Show.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/Appointments/View.tsx b/frontend/dashboard/src/pages/Report/Appointments/View.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/LinksehatPayments/Create.tsx b/frontend/dashboard/src/pages/Report/LinksehatPayments/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/LinksehatPayments/Form.tsx b/frontend/dashboard/src/pages/Report/LinksehatPayments/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/LinksehatPayments/Index.tsx b/frontend/dashboard/src/pages/Report/LinksehatPayments/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/LinksehatPayments/List.tsx b/frontend/dashboard/src/pages/Report/LinksehatPayments/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/LinksehatPayments/Show.tsx b/frontend/dashboard/src/pages/Report/LinksehatPayments/Show.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/LinksehatPayments/View.tsx b/frontend/dashboard/src/pages/Report/LinksehatPayments/View.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/Livechat/Create.tsx b/frontend/dashboard/src/pages/Report/Livechat/Create.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/Livechat/Form.tsx b/frontend/dashboard/src/pages/Report/Livechat/Form.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/Livechat/Index.tsx b/frontend/dashboard/src/pages/Report/Livechat/Index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/Livechat/List.tsx b/frontend/dashboard/src/pages/Report/Livechat/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/Livechat/Show.tsx b/frontend/dashboard/src/pages/Report/Livechat/Show.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Report/Livechat/View.tsx b/frontend/dashboard/src/pages/Report/Livechat/View.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/Service/Membership/List.tsx b/frontend/dashboard/src/pages/Service/Membership/List.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/auth/ForgetPassword.tsx b/frontend/dashboard/src/pages/auth/ForgetPassword.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/auth/Login.tsx b/frontend/dashboard/src/pages/auth/Login.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/auth/Register.tsx b/frontend/dashboard/src/pages/auth/Register.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/auth/ResetPassword.tsx b/frontend/dashboard/src/pages/auth/ResetPassword.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/pages/auth/VerifyCode.tsx b/frontend/dashboard/src/pages/auth/VerifyCode.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/react-app-env.d.ts b/frontend/dashboard/src/react-app-env.d.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/routes/index.tsx b/frontend/dashboard/src/routes/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/routes/paths.ts b/frontend/dashboard/src/routes/paths.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/sections/auth/AuthFirebaseSocial.tsx b/frontend/dashboard/src/sections/auth/AuthFirebaseSocial.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/sections/auth/forget-password/ForgetPasswordForm.tsx b/frontend/dashboard/src/sections/auth/forget-password/ForgetPasswordForm.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/sections/auth/forget-password/index.ts b/frontend/dashboard/src/sections/auth/forget-password/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/sections/auth/login/LoginForm.tsx b/frontend/dashboard/src/sections/auth/login/LoginForm.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/sections/auth/login/index.ts b/frontend/dashboard/src/sections/auth/login/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/sections/auth/register/RegisterForm.tsx b/frontend/dashboard/src/sections/auth/register/RegisterForm.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/sections/auth/register/index.ts b/frontend/dashboard/src/sections/auth/register/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/sections/auth/reset-password/ResetPasswordForm.tsx b/frontend/dashboard/src/sections/auth/reset-password/ResetPasswordForm.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/sections/auth/reset-password/index.ts b/frontend/dashboard/src/sections/auth/reset-password/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/sections/auth/verify-code/VerifyCodeForm.tsx b/frontend/dashboard/src/sections/auth/verify-code/VerifyCodeForm.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/sections/auth/verify-code/index.ts b/frontend/dashboard/src/sections/auth/verify-code/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/sections/dashboard/SomethingUsage.tsx b/frontend/dashboard/src/sections/dashboard/SomethingUsage.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/breakpoints.ts b/frontend/dashboard/src/theme/breakpoints.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/index.tsx b/frontend/dashboard/src/theme/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Accordion.ts b/frontend/dashboard/src/theme/overrides/Accordion.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Alert.tsx b/frontend/dashboard/src/theme/overrides/Alert.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Autocomplete.ts b/frontend/dashboard/src/theme/overrides/Autocomplete.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Avatar.ts b/frontend/dashboard/src/theme/overrides/Avatar.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Backdrop.ts b/frontend/dashboard/src/theme/overrides/Backdrop.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Badge.ts b/frontend/dashboard/src/theme/overrides/Badge.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Breadcrumbs.ts b/frontend/dashboard/src/theme/overrides/Breadcrumbs.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Button.ts b/frontend/dashboard/src/theme/overrides/Button.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/ButtonGroup.ts b/frontend/dashboard/src/theme/overrides/ButtonGroup.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Card.ts b/frontend/dashboard/src/theme/overrides/Card.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Checkbox.tsx b/frontend/dashboard/src/theme/overrides/Checkbox.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Chip.tsx b/frontend/dashboard/src/theme/overrides/Chip.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/ControlLabel.ts b/frontend/dashboard/src/theme/overrides/ControlLabel.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/CssBaseline.ts b/frontend/dashboard/src/theme/overrides/CssBaseline.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/CustomIcons.tsx b/frontend/dashboard/src/theme/overrides/CustomIcons.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/DataGrid.ts b/frontend/dashboard/src/theme/overrides/DataGrid.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Dialog.ts b/frontend/dashboard/src/theme/overrides/Dialog.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Drawer.ts b/frontend/dashboard/src/theme/overrides/Drawer.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Fab.ts b/frontend/dashboard/src/theme/overrides/Fab.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Input.ts b/frontend/dashboard/src/theme/overrides/Input.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Link.ts b/frontend/dashboard/src/theme/overrides/Link.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/List.ts b/frontend/dashboard/src/theme/overrides/List.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/LoadingButton.ts b/frontend/dashboard/src/theme/overrides/LoadingButton.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Menu.ts b/frontend/dashboard/src/theme/overrides/Menu.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Pagination.ts b/frontend/dashboard/src/theme/overrides/Pagination.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Paper.ts b/frontend/dashboard/src/theme/overrides/Paper.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Popover.ts b/frontend/dashboard/src/theme/overrides/Popover.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Progress.ts b/frontend/dashboard/src/theme/overrides/Progress.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Radio.ts b/frontend/dashboard/src/theme/overrides/Radio.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Rating.tsx b/frontend/dashboard/src/theme/overrides/Rating.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Select.tsx b/frontend/dashboard/src/theme/overrides/Select.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Skeleton.ts b/frontend/dashboard/src/theme/overrides/Skeleton.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Slider.ts b/frontend/dashboard/src/theme/overrides/Slider.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Stepper.ts b/frontend/dashboard/src/theme/overrides/Stepper.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/SvgIcon.ts b/frontend/dashboard/src/theme/overrides/SvgIcon.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Switch.ts b/frontend/dashboard/src/theme/overrides/Switch.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Table.ts b/frontend/dashboard/src/theme/overrides/Table.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Tabs.ts b/frontend/dashboard/src/theme/overrides/Tabs.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Timeline.ts b/frontend/dashboard/src/theme/overrides/Timeline.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/ToggleButton.ts b/frontend/dashboard/src/theme/overrides/ToggleButton.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Tooltip.ts b/frontend/dashboard/src/theme/overrides/Tooltip.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/TreeView.tsx b/frontend/dashboard/src/theme/overrides/TreeView.tsx old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/Typography.ts b/frontend/dashboard/src/theme/overrides/Typography.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/overrides/index.ts b/frontend/dashboard/src/theme/overrides/index.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/palette.ts b/frontend/dashboard/src/theme/palette.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/shadows.ts b/frontend/dashboard/src/theme/shadows.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/theme/typography.ts b/frontend/dashboard/src/theme/typography.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/utils/axios.ts b/frontend/dashboard/src/utils/axios.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/utils/cssStyles.ts b/frontend/dashboard/src/utils/cssStyles.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/utils/formatNumber.ts b/frontend/dashboard/src/utils/formatNumber.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/utils/formatString.ts b/frontend/dashboard/src/utils/formatString.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/utils/formatTime.ts b/frontend/dashboard/src/utils/formatTime.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/utils/getColorPresets.ts b/frontend/dashboard/src/utils/getColorPresets.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/utils/getFontValue.ts b/frontend/dashboard/src/utils/getFontValue.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/src/utils/token.ts b/frontend/dashboard/src/utils/token.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/tsconfig.json b/frontend/dashboard/tsconfig.json old mode 100755 new mode 100644 diff --git a/frontend/dashboard/vite.config.ts b/frontend/dashboard/vite.config.ts old mode 100755 new mode 100644 diff --git a/frontend/dashboard/yarn.lock b/frontend/dashboard/yarn.lock old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/.env.development b/frontend/hospital-portal/.env.development old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/.env.staging b/frontend/hospital-portal/.env.staging old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/.eslintignore b/frontend/hospital-portal/.eslintignore old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/.eslintrc b/frontend/hospital-portal/.eslintrc old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/.gitignore b/frontend/hospital-portal/.gitignore old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/.htaccess b/frontend/hospital-portal/.htaccess old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/.pnpm-debug.log b/frontend/hospital-portal/.pnpm-debug.log old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/.prettierrc b/frontend/hospital-portal/.prettierrc old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/index.html b/frontend/hospital-portal/index.html old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/package-lock.json b/frontend/hospital-portal/package-lock.json old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/package.json b/frontend/hospital-portal/package.json old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/pnpm-lock.yaml b/frontend/hospital-portal/pnpm-lock.yaml old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/_redirects b/frontend/hospital-portal/public/_redirects old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/favicon/android-chrome-192x192.png b/frontend/hospital-portal/public/favicon/android-chrome-192x192.png old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/favicon/android-chrome-512x512.png b/frontend/hospital-portal/public/favicon/android-chrome-512x512.png old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/favicon/apple-touch-icon.png b/frontend/hospital-portal/public/favicon/apple-touch-icon.png old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/favicon/favicon-16x16.png b/frontend/hospital-portal/public/favicon/favicon-16x16.png old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/favicon/favicon-32x32.png b/frontend/hospital-portal/public/favicon/favicon-32x32.png old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/favicon/favicon.ico b/frontend/hospital-portal/public/favicon/favicon.ico old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/fonts/CircularStd-Bold.otf b/frontend/hospital-portal/public/fonts/CircularStd-Bold.otf old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/fonts/CircularStd-Book.otf b/frontend/hospital-portal/public/fonts/CircularStd-Book.otf old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/fonts/CircularStd-Medium.otf b/frontend/hospital-portal/public/fonts/CircularStd-Medium.otf old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/fonts/Roboto-Bold.ttf b/frontend/hospital-portal/public/fonts/Roboto-Bold.ttf old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/fonts/Roboto-Regular.ttf b/frontend/hospital-portal/public/fonts/Roboto-Regular.ttf old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/fonts/index.css b/frontend/hospital-portal/public/fonts/index.css old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/icons/ic_analytics.svg b/frontend/hospital-portal/public/icons/ic_analytics.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/icons/ic_banking.svg b/frontend/hospital-portal/public/icons/ic_banking.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/icons/ic_blog.svg b/frontend/hospital-portal/public/icons/ic_blog.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/icons/ic_booking.svg b/frontend/hospital-portal/public/icons/ic_booking.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/icons/ic_calendar.svg b/frontend/hospital-portal/public/icons/ic_calendar.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/icons/ic_cart.svg b/frontend/hospital-portal/public/icons/ic_cart.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/icons/ic_chat.svg b/frontend/hospital-portal/public/icons/ic_chat.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/icons/ic_dashboard.svg b/frontend/hospital-portal/public/icons/ic_dashboard.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/icons/ic_ecommerce.svg b/frontend/hospital-portal/public/icons/ic_ecommerce.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/icons/ic_kanban.svg b/frontend/hospital-portal/public/icons/ic_kanban.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/icons/ic_mail.svg b/frontend/hospital-portal/public/icons/ic_mail.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/icons/ic_user.svg b/frontend/hospital-portal/public/icons/ic_user.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/image/overlay.png b/frontend/hospital-portal/public/image/overlay.png old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/logo/logo-linksehat.png b/frontend/hospital-portal/public/logo/logo-linksehat.png old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/logo/logo_full.jpg b/frontend/hospital-portal/public/logo/logo_full.jpg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/logo/logo_full.svg b/frontend/hospital-portal/public/logo/logo_full.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/logo/logo_single.svg b/frontend/hospital-portal/public/logo/logo_single.svg old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/manifest.json b/frontend/hospital-portal/public/manifest.json old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/public/robots.txt b/frontend/hospital-portal/public/robots.txt old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/auth.ts b/frontend/hospital-portal/src/@types/auth.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/blog.ts b/frontend/hospital-portal/src/@types/blog.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/calendar.ts b/frontend/hospital-portal/src/@types/calendar.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/chat.ts b/frontend/hospital-portal/src/@types/chat.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/corporates.ts b/frontend/hospital-portal/src/@types/corporates.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/diagnosis.ts b/frontend/hospital-portal/src/@types/diagnosis.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/doctor.tsx b/frontend/hospital-portal/src/@types/doctor.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/invoice.ts b/frontend/hospital-portal/src/@types/invoice.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/kanban.ts b/frontend/hospital-portal/src/@types/kanban.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/mail.ts b/frontend/hospital-portal/src/@types/mail.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/member.ts b/frontend/hospital-portal/src/@types/member.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/organization.tsx b/frontend/hospital-portal/src/@types/organization.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/paginated-data.ts b/frontend/hospital-portal/src/@types/paginated-data.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/product.ts b/frontend/hospital-portal/src/@types/product.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/@types/user.ts b/frontend/hospital-portal/src/@types/user.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/App.tsx b/frontend/hospital-portal/src/App.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/_analytics.tsx b/frontend/hospital-portal/src/_mock/_analytics.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/_app.ts b/frontend/hospital-portal/src/_mock/_app.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/_banking.ts b/frontend/hospital-portal/src/_mock/_banking.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/_booking.ts b/frontend/hospital-portal/src/_mock/_booking.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/_countries.ts b/frontend/hospital-portal/src/_mock/_countries.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/_ecommerce.ts b/frontend/hospital-portal/src/_mock/_ecommerce.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/_mock.ts b/frontend/hospital-portal/src/_mock/_mock.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/_others.ts b/frontend/hospital-portal/src/_mock/_others.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/_plans.tsx b/frontend/hospital-portal/src/_mock/_plans.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/_top100Films.ts b/frontend/hospital-portal/src/_mock/_top100Films.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/_user.ts b/frontend/hospital-portal/src/_mock/_user.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/address.ts b/frontend/hospital-portal/src/_mock/address.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/boolean.ts b/frontend/hospital-portal/src/_mock/boolean.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/company.ts b/frontend/hospital-portal/src/_mock/company.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/email.ts b/frontend/hospital-portal/src/_mock/email.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/funcs.ts b/frontend/hospital-portal/src/_mock/funcs.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/index.ts b/frontend/hospital-portal/src/_mock/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/map/cities.ts b/frontend/hospital-portal/src/_mock/map/cities.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/map/countries.ts b/frontend/hospital-portal/src/_mock/map/countries.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/map/map-style-basic-v8.json b/frontend/hospital-portal/src/_mock/map/map-style-basic-v8.json old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/map/stations.ts b/frontend/hospital-portal/src/_mock/map/stations.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/name.ts b/frontend/hospital-portal/src/_mock/name.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/number.ts b/frontend/hospital-portal/src/_mock/number.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/phoneNumber.ts b/frontend/hospital-portal/src/_mock/phoneNumber.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/role.ts b/frontend/hospital-portal/src/_mock/role.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/_mock/text.ts b/frontend/hospital-portal/src/_mock/text.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/icon_plan_free.tsx b/frontend/hospital-portal/src/assets/icon_plan_free.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/icon_plan_premium.tsx b/frontend/hospital-portal/src/assets/icon_plan_premium.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/icon_plan_starter.tsx b/frontend/hospital-portal/src/assets/icon_plan_starter.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/icon_sent.tsx b/frontend/hospital-portal/src/assets/icon_sent.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/illustration_404.tsx b/frontend/hospital-portal/src/assets/illustration_404.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/illustration_500.tsx b/frontend/hospital-portal/src/assets/illustration_500.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/illustration_booking.tsx b/frontend/hospital-portal/src/assets/illustration_booking.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/illustration_checkin.tsx b/frontend/hospital-portal/src/assets/illustration_checkin.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/illustration_checkout.tsx b/frontend/hospital-portal/src/assets/illustration_checkout.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/illustration_coming_soon.tsx b/frontend/hospital-portal/src/assets/illustration_coming_soon.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/illustration_doc.tsx b/frontend/hospital-portal/src/assets/illustration_doc.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/illustration_maintenance.tsx b/frontend/hospital-portal/src/assets/illustration_maintenance.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/illustration_motivation.tsx b/frontend/hospital-portal/src/assets/illustration_motivation.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/illustration_order_complete.tsx b/frontend/hospital-portal/src/assets/illustration_order_complete.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/illustration_seo.tsx b/frontend/hospital-portal/src/assets/illustration_seo.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/illustration_upload.tsx b/frontend/hospital-portal/src/assets/illustration_upload.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/assets/index.ts b/frontend/hospital-portal/src/assets/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/BadgeStatus.tsx b/frontend/hospital-portal/src/components/BadgeStatus.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/BasePagination.tsx b/frontend/hospital-portal/src/components/BasePagination.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/BaseTablePagination.tsx b/frontend/hospital-portal/src/components/BaseTablePagination.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/Breadcrumbs.tsx b/frontend/hospital-portal/src/components/Breadcrumbs.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/HeaderBreadcrumbs.tsx b/frontend/hospital-portal/src/components/HeaderBreadcrumbs.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/Iconify.tsx b/frontend/hospital-portal/src/components/Iconify.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/Image.tsx b/frontend/hospital-portal/src/components/Image.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/LaravelTable.tsx b/frontend/hospital-portal/src/components/LaravelTable.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/LoadingScreen.tsx b/frontend/hospital-portal/src/components/LoadingScreen.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/Logo.tsx b/frontend/hospital-portal/src/components/Logo.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/MenuPopover.tsx b/frontend/hospital-portal/src/components/MenuPopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/MuiDialog.tsx b/frontend/hospital-portal/src/components/MuiDialog.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/MyDropzone.tsx b/frontend/hospital-portal/src/components/MyDropzone.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/Page.tsx b/frontend/hospital-portal/src/components/Page.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/ProgressBar.tsx b/frontend/hospital-portal/src/components/ProgressBar.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/RtlLayout.tsx b/frontend/hospital-portal/src/components/RtlLayout.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/ScrollToTop.ts b/frontend/hospital-portal/src/components/ScrollToTop.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/Scrollbar.tsx b/frontend/hospital-portal/src/components/Scrollbar.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/SvgIconStyle.tsx b/frontend/hospital-portal/src/components/SvgIconStyle.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/ThemeColorPresets.tsx b/frontend/hospital-portal/src/components/ThemeColorPresets.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/UploadImage.tsx b/frontend/hospital-portal/src/components/UploadImage.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/DialogAnimate.tsx b/frontend/hospital-portal/src/components/animate/DialogAnimate.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/FabButtonAnimate.tsx b/frontend/hospital-portal/src/components/animate/FabButtonAnimate.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/IconButtonAnimate.tsx b/frontend/hospital-portal/src/components/animate/IconButtonAnimate.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/MotionContainer.tsx b/frontend/hospital-portal/src/components/animate/MotionContainer.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/MotionInView.tsx b/frontend/hospital-portal/src/components/animate/MotionInView.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/MotionLazyContainer.tsx b/frontend/hospital-portal/src/components/animate/MotionLazyContainer.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/TextAnimate.tsx b/frontend/hospital-portal/src/components/animate/TextAnimate.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/features.js b/frontend/hospital-portal/src/components/animate/features.js old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/index.ts b/frontend/hospital-portal/src/components/animate/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/type.ts b/frontend/hospital-portal/src/components/animate/type.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/variants/actions.ts b/frontend/hospital-portal/src/components/animate/variants/actions.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/variants/background.ts b/frontend/hospital-portal/src/components/animate/variants/background.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/variants/bounce.ts b/frontend/hospital-portal/src/components/animate/variants/bounce.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/variants/container.ts b/frontend/hospital-portal/src/components/animate/variants/container.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/variants/fade.ts b/frontend/hospital-portal/src/components/animate/variants/fade.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/variants/flip.ts b/frontend/hospital-portal/src/components/animate/variants/flip.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/variants/index.ts b/frontend/hospital-portal/src/components/animate/variants/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/variants/path.ts b/frontend/hospital-portal/src/components/animate/variants/path.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/variants/rotate.ts b/frontend/hospital-portal/src/components/animate/variants/rotate.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/variants/scale.ts b/frontend/hospital-portal/src/components/animate/variants/scale.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/variants/slide.ts b/frontend/hospital-portal/src/components/animate/variants/slide.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/variants/transition.ts b/frontend/hospital-portal/src/components/animate/variants/transition.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/animate/variants/zoom.ts b/frontend/hospital-portal/src/components/animate/variants/zoom.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/chart/BaseOptionChart.tsx b/frontend/hospital-portal/src/components/chart/BaseOptionChart.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/chart/ChartStyle.tsx b/frontend/hospital-portal/src/components/chart/ChartStyle.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/chart/index.ts b/frontend/hospital-portal/src/components/chart/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/dialogs/DialogDetailClaim.tsx b/frontend/hospital-portal/src/components/dialogs/DialogDetailClaim.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/dialogs/MemberSelectDialog.tsx b/frontend/hospital-portal/src/components/dialogs/MemberSelectDialog.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/editor/EditorToolbar.tsx b/frontend/hospital-portal/src/components/editor/EditorToolbar.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/editor/EditorToolbarStyle.tsx b/frontend/hospital-portal/src/components/editor/EditorToolbarStyle.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/editor/index.tsx b/frontend/hospital-portal/src/components/editor/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/hook-form/FormProvider.tsx b/frontend/hospital-portal/src/components/hook-form/FormProvider.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/hook-form/RHFAutocomplete.tsx b/frontend/hospital-portal/src/components/hook-form/RHFAutocomplete.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/hook-form/RHFCheckbox.tsx b/frontend/hospital-portal/src/components/hook-form/RHFCheckbox.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/hook-form/RHFDatepicker.tsx b/frontend/hospital-portal/src/components/hook-form/RHFDatepicker.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/hook-form/RHFEditor.tsx b/frontend/hospital-portal/src/components/hook-form/RHFEditor.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/hook-form/RHFRadioGroup.tsx b/frontend/hospital-portal/src/components/hook-form/RHFRadioGroup.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/hook-form/RHFSelect.tsx b/frontend/hospital-portal/src/components/hook-form/RHFSelect.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/hook-form/RHFSwitch.tsx b/frontend/hospital-portal/src/components/hook-form/RHFSwitch.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/hook-form/RHFTextField.tsx b/frontend/hospital-portal/src/components/hook-form/RHFTextField.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/hook-form/RHFUpload.tsx b/frontend/hospital-portal/src/components/hook-form/RHFUpload.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/hook-form/index.ts b/frontend/hospital-portal/src/components/hook-form/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/nav-section/horizontal/NavItem.tsx b/frontend/hospital-portal/src/components/nav-section/horizontal/NavItem.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/nav-section/horizontal/NavList.tsx b/frontend/hospital-portal/src/components/nav-section/horizontal/NavList.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/nav-section/horizontal/index.tsx b/frontend/hospital-portal/src/components/nav-section/horizontal/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/nav-section/horizontal/style.ts b/frontend/hospital-portal/src/components/nav-section/horizontal/style.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/nav-section/index.ts b/frontend/hospital-portal/src/components/nav-section/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/nav-section/type.ts b/frontend/hospital-portal/src/components/nav-section/type.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/nav-section/vertical/NavItem.tsx b/frontend/hospital-portal/src/components/nav-section/vertical/NavItem.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/nav-section/vertical/NavList.tsx b/frontend/hospital-portal/src/components/nav-section/vertical/NavList.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/nav-section/vertical/index.tsx b/frontend/hospital-portal/src/components/nav-section/vertical/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/nav-section/vertical/style.ts b/frontend/hospital-portal/src/components/nav-section/vertical/style.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/settings/SettingColorPresets.tsx b/frontend/hospital-portal/src/components/settings/SettingColorPresets.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/settings/SettingDirection.tsx b/frontend/hospital-portal/src/components/settings/SettingDirection.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/settings/SettingFullscreen.tsx b/frontend/hospital-portal/src/components/settings/SettingFullscreen.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/settings/SettingLayout.tsx b/frontend/hospital-portal/src/components/settings/SettingLayout.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/settings/SettingMode.tsx b/frontend/hospital-portal/src/components/settings/SettingMode.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/settings/SettingStretch.tsx b/frontend/hospital-portal/src/components/settings/SettingStretch.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/settings/ToggleButton.tsx b/frontend/hospital-portal/src/components/settings/ToggleButton.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/settings/index.tsx b/frontend/hospital-portal/src/components/settings/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/settings/type.ts b/frontend/hospital-portal/src/components/settings/type.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/upload/BlockContent.tsx b/frontend/hospital-portal/src/components/upload/BlockContent.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/upload/MultiFilePreview.tsx b/frontend/hospital-portal/src/components/upload/MultiFilePreview.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/upload/RejectionFiles.tsx b/frontend/hospital-portal/src/components/upload/RejectionFiles.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/upload/UploadAvatar.tsx b/frontend/hospital-portal/src/components/upload/UploadAvatar.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/upload/UploadMultiFile.tsx b/frontend/hospital-portal/src/components/upload/UploadMultiFile.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/upload/UploadSingleFile.tsx b/frontend/hospital-portal/src/components/upload/UploadSingleFile.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/upload/index.ts b/frontend/hospital-portal/src/components/upload/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/components/upload/type.ts b/frontend/hospital-portal/src/components/upload/type.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/config.ts b/frontend/hospital-portal/src/config.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/contexts/CollapseDrawerContext.tsx b/frontend/hospital-portal/src/contexts/CollapseDrawerContext.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/contexts/ConfiguredCorporateContext.tsx b/frontend/hospital-portal/src/contexts/ConfiguredCorporateContext.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/contexts/LaravelAuthContext.tsx b/frontend/hospital-portal/src/contexts/LaravelAuthContext.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/contexts/SettingsContext.tsx b/frontend/hospital-portal/src/contexts/SettingsContext.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/guards/AuthGuard.tsx b/frontend/hospital-portal/src/guards/AuthGuard.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/guards/GuestGuard.tsx b/frontend/hospital-portal/src/guards/GuestGuard.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/guards/RoleBasedGuard.tsx b/frontend/hospital-portal/src/guards/RoleBasedGuard.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/hooks/useAuth.ts b/frontend/hospital-portal/src/hooks/useAuth.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/hooks/useCollapseDrawer.ts b/frontend/hospital-portal/src/hooks/useCollapseDrawer.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/hooks/useIsMountedRef.ts b/frontend/hospital-portal/src/hooks/useIsMountedRef.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/hooks/useLocalStorage.ts b/frontend/hospital-portal/src/hooks/useLocalStorage.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/hooks/useLocales.ts b/frontend/hospital-portal/src/hooks/useLocales.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/hooks/useOffSetTop.ts b/frontend/hospital-portal/src/hooks/useOffSetTop.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/hooks/useResponsive.ts b/frontend/hospital-portal/src/hooks/useResponsive.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/hooks/useSettings.ts b/frontend/hospital-portal/src/hooks/useSettings.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/hooks/useTable.ts b/frontend/hospital-portal/src/hooks/useTable.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/hooks/useTabs.ts b/frontend/hospital-portal/src/hooks/useTabs.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/hooks/useToggle.ts b/frontend/hospital-portal/src/hooks/useToggle.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/index.tsx b/frontend/hospital-portal/src/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/LogoOnlyLayout.tsx b/frontend/hospital-portal/src/layouts/LogoOnlyLayout.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/corporate/CorporateConfigLayout.tsx b/frontend/hospital-portal/src/layouts/dashboard/corporate/CorporateConfigLayout.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/header/AccountPopover.tsx b/frontend/hospital-portal/src/layouts/dashboard/header/AccountPopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/header/ContactsPopover.tsx b/frontend/hospital-portal/src/layouts/dashboard/header/ContactsPopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/header/LanguagePopover.tsx b/frontend/hospital-portal/src/layouts/dashboard/header/LanguagePopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/header/NotificationsPopover.tsx b/frontend/hospital-portal/src/layouts/dashboard/header/NotificationsPopover.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/header/Searchbar.tsx b/frontend/hospital-portal/src/layouts/dashboard/header/Searchbar.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/header/index.tsx b/frontend/hospital-portal/src/layouts/dashboard/header/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/index.tsx b/frontend/hospital-portal/src/layouts/dashboard/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/navbar/CollapseButton.tsx b/frontend/hospital-portal/src/layouts/dashboard/navbar/CollapseButton.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/navbar/NavConfig.tsx b/frontend/hospital-portal/src/layouts/dashboard/navbar/NavConfig.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/navbar/NavbarAccount.tsx b/frontend/hospital-portal/src/layouts/dashboard/navbar/NavbarAccount.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/navbar/NavbarDocs.tsx b/frontend/hospital-portal/src/layouts/dashboard/navbar/NavbarDocs.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/navbar/NavbarHorizontal.tsx b/frontend/hospital-portal/src/layouts/dashboard/navbar/NavbarHorizontal.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/layouts/dashboard/navbar/NavbarVertical.tsx b/frontend/hospital-portal/src/layouts/dashboard/navbar/NavbarVertical.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/pages/Dashboard.tsx b/frontend/hospital-portal/src/pages/Dashboard.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/pages/Page404.tsx b/frontend/hospital-portal/src/pages/Page404.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/pages/auth/ForgetPassword.tsx b/frontend/hospital-portal/src/pages/auth/ForgetPassword.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/pages/auth/Login.tsx b/frontend/hospital-portal/src/pages/auth/Login.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/pages/auth/Register.tsx b/frontend/hospital-portal/src/pages/auth/Register.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/pages/auth/ResetPassword.tsx b/frontend/hospital-portal/src/pages/auth/ResetPassword.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/pages/auth/VerifyCode.tsx b/frontend/hospital-portal/src/pages/auth/VerifyCode.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/react-app-env.d.ts b/frontend/hospital-portal/src/react-app-env.d.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/routes/index.tsx b/frontend/hospital-portal/src/routes/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/routes/paths.ts b/frontend/hospital-portal/src/routes/paths.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/auth/AuthFirebaseSocial.tsx b/frontend/hospital-portal/src/sections/auth/AuthFirebaseSocial.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/auth/forget-password/ForgetPasswordForm.tsx b/frontend/hospital-portal/src/sections/auth/forget-password/ForgetPasswordForm.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/auth/forget-password/index.ts b/frontend/hospital-portal/src/sections/auth/forget-password/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/auth/login/LoginForm.tsx b/frontend/hospital-portal/src/sections/auth/login/LoginForm.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/auth/login/index.ts b/frontend/hospital-portal/src/sections/auth/login/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/auth/register/RegisterForm.tsx b/frontend/hospital-portal/src/sections/auth/register/RegisterForm.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/auth/register/index.ts b/frontend/hospital-portal/src/sections/auth/register/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/auth/reset-password/ResetPasswordForm.tsx b/frontend/hospital-portal/src/sections/auth/reset-password/ResetPasswordForm.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/auth/reset-password/index.ts b/frontend/hospital-portal/src/sections/auth/reset-password/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/auth/verify-code/VerifyCodeForm.tsx b/frontend/hospital-portal/src/sections/auth/verify-code/VerifyCodeForm.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/auth/verify-code/index.ts b/frontend/hospital-portal/src/sections/auth/verify-code/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/dashboard/CardNotification.tsx b/frontend/hospital-portal/src/sections/dashboard/CardNotification.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/dashboard/CardSearchMember.tsx b/frontend/hospital-portal/src/sections/dashboard/CardSearchMember.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/dashboard/DashboardTable.tsx b/frontend/hospital-portal/src/sections/dashboard/DashboardTable.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/dashboard/DialogMember.tsx b/frontend/hospital-portal/src/sections/dashboard/DialogMember.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/dashboard/DialogNotification.tsx b/frontend/hospital-portal/src/sections/dashboard/DialogNotification.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/dashboard/FormRequestClaim.tsx b/frontend/hospital-portal/src/sections/dashboard/FormRequestClaim.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/dashboard/NotificationCard.tsx b/frontend/hospital-portal/src/sections/dashboard/NotificationCard.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/dashboard/TableList.tsx b/frontend/hospital-portal/src/sections/dashboard/TableList.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/sections/dashboard/asdasdasdDialogDetailClaim.tsx b/frontend/hospital-portal/src/sections/dashboard/asdasdasdDialogDetailClaim.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/breakpoints.ts b/frontend/hospital-portal/src/theme/breakpoints.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/index.tsx b/frontend/hospital-portal/src/theme/index.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Accordion.ts b/frontend/hospital-portal/src/theme/overrides/Accordion.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Alert.tsx b/frontend/hospital-portal/src/theme/overrides/Alert.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Autocomplete.ts b/frontend/hospital-portal/src/theme/overrides/Autocomplete.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Avatar.ts b/frontend/hospital-portal/src/theme/overrides/Avatar.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Backdrop.ts b/frontend/hospital-portal/src/theme/overrides/Backdrop.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Badge.ts b/frontend/hospital-portal/src/theme/overrides/Badge.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Breadcrumbs.ts b/frontend/hospital-portal/src/theme/overrides/Breadcrumbs.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Button.ts b/frontend/hospital-portal/src/theme/overrides/Button.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/ButtonGroup.ts b/frontend/hospital-portal/src/theme/overrides/ButtonGroup.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Card.ts b/frontend/hospital-portal/src/theme/overrides/Card.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Checkbox.tsx b/frontend/hospital-portal/src/theme/overrides/Checkbox.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Chip.tsx b/frontend/hospital-portal/src/theme/overrides/Chip.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/ControlLabel.ts b/frontend/hospital-portal/src/theme/overrides/ControlLabel.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/CssBaseline.ts b/frontend/hospital-portal/src/theme/overrides/CssBaseline.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/CustomIcons.tsx b/frontend/hospital-portal/src/theme/overrides/CustomIcons.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/DataGrid.ts b/frontend/hospital-portal/src/theme/overrides/DataGrid.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Dialog.ts b/frontend/hospital-portal/src/theme/overrides/Dialog.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Drawer.ts b/frontend/hospital-portal/src/theme/overrides/Drawer.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Fab.ts b/frontend/hospital-portal/src/theme/overrides/Fab.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Input.ts b/frontend/hospital-portal/src/theme/overrides/Input.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Link.ts b/frontend/hospital-portal/src/theme/overrides/Link.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/List.ts b/frontend/hospital-portal/src/theme/overrides/List.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/LoadingButton.ts b/frontend/hospital-portal/src/theme/overrides/LoadingButton.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Menu.ts b/frontend/hospital-portal/src/theme/overrides/Menu.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Pagination.ts b/frontend/hospital-portal/src/theme/overrides/Pagination.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Paper.ts b/frontend/hospital-portal/src/theme/overrides/Paper.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Popover.ts b/frontend/hospital-portal/src/theme/overrides/Popover.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Progress.ts b/frontend/hospital-portal/src/theme/overrides/Progress.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Radio.ts b/frontend/hospital-portal/src/theme/overrides/Radio.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Rating.tsx b/frontend/hospital-portal/src/theme/overrides/Rating.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Select.tsx b/frontend/hospital-portal/src/theme/overrides/Select.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Skeleton.ts b/frontend/hospital-portal/src/theme/overrides/Skeleton.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Slider.ts b/frontend/hospital-portal/src/theme/overrides/Slider.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Stepper.ts b/frontend/hospital-portal/src/theme/overrides/Stepper.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/SvgIcon.ts b/frontend/hospital-portal/src/theme/overrides/SvgIcon.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Switch.ts b/frontend/hospital-portal/src/theme/overrides/Switch.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Table.ts b/frontend/hospital-portal/src/theme/overrides/Table.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Tabs.ts b/frontend/hospital-portal/src/theme/overrides/Tabs.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Timeline.ts b/frontend/hospital-portal/src/theme/overrides/Timeline.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/ToggleButton.ts b/frontend/hospital-portal/src/theme/overrides/ToggleButton.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Tooltip.ts b/frontend/hospital-portal/src/theme/overrides/Tooltip.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/TreeView.tsx b/frontend/hospital-portal/src/theme/overrides/TreeView.tsx old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/Typography.ts b/frontend/hospital-portal/src/theme/overrides/Typography.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/overrides/index.ts b/frontend/hospital-portal/src/theme/overrides/index.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/palette.ts b/frontend/hospital-portal/src/theme/palette.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/shadows.ts b/frontend/hospital-portal/src/theme/shadows.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/theme/typography.ts b/frontend/hospital-portal/src/theme/typography.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/utils/axios.ts b/frontend/hospital-portal/src/utils/axios.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/utils/cssStyles.ts b/frontend/hospital-portal/src/utils/cssStyles.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/utils/formatNumber.ts b/frontend/hospital-portal/src/utils/formatNumber.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/utils/formatString.ts b/frontend/hospital-portal/src/utils/formatString.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/utils/formatTime.ts b/frontend/hospital-portal/src/utils/formatTime.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/utils/getColorPresets.ts b/frontend/hospital-portal/src/utils/getColorPresets.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/utils/getFontValue.ts b/frontend/hospital-portal/src/utils/getFontValue.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/utils/jsonToFormData.ts b/frontend/hospital-portal/src/utils/jsonToFormData.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/src/utils/token.ts b/frontend/hospital-portal/src/utils/token.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/tsconfig.json b/frontend/hospital-portal/tsconfig.json old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/vite.config.ts b/frontend/hospital-portal/vite.config.ts old mode 100755 new mode 100644 diff --git a/frontend/hospital-portal/yarn.lock b/frontend/hospital-portal/yarn.lock old mode 100755 new mode 100644 diff --git a/lang/en/auth.php b/lang/en/auth.php old mode 100755 new mode 100644 diff --git a/lang/en/enrollment.php b/lang/en/enrollment.php old mode 100755 new mode 100644 diff --git a/lang/en/pagination.php b/lang/en/pagination.php old mode 100755 new mode 100644 diff --git a/lang/en/passwords.php b/lang/en/passwords.php old mode 100755 new mode 100644 diff --git a/lang/en/validation.php b/lang/en/validation.php old mode 100755 new mode 100644 diff --git a/modules_statuses.json b/modules_statuses.json old mode 100755 new mode 100644 diff --git a/package-lock.json b/package-lock.json old mode 100755 new mode 100644 diff --git a/package.json b/package.json old mode 100755 new mode 100644 diff --git a/phpunit.xml b/phpunit.xml old mode 100755 new mode 100644 diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml old mode 100755 new mode 100644 diff --git a/public/.htaccess b/public/.htaccess old mode 100755 new mode 100644 diff --git a/public/build/assets/app-179954eb.css b/public/build/assets/app-179954eb.css old mode 100755 new mode 100644 diff --git a/public/build/assets/app-c3828592.js b/public/build/assets/app-c3828592.js old mode 100755 new mode 100644 diff --git a/public/build/manifest.json b/public/build/manifest.json old mode 100755 new mode 100644 diff --git a/public/client-portal/.htaccess b/public/client-portal/.htaccess old mode 100755 new mode 100644 diff --git a/public/client-portal/_redirects b/public/client-portal/_redirects old mode 100755 new mode 100644 diff --git a/public/client-portal/favicon/android-chrome-192x192.png b/public/client-portal/favicon/android-chrome-192x192.png old mode 100755 new mode 100644 diff --git a/public/client-portal/favicon/android-chrome-512x512.png b/public/client-portal/favicon/android-chrome-512x512.png old mode 100755 new mode 100644 diff --git a/public/client-portal/favicon/apple-touch-icon.png b/public/client-portal/favicon/apple-touch-icon.png old mode 100755 new mode 100644 diff --git a/public/client-portal/favicon/favicon-16x16.png b/public/client-portal/favicon/favicon-16x16.png old mode 100755 new mode 100644 diff --git a/public/client-portal/favicon/favicon-32x32.png b/public/client-portal/favicon/favicon-32x32.png old mode 100755 new mode 100644 diff --git a/public/client-portal/favicon/favicon.ico b/public/client-portal/favicon/favicon.ico old mode 100755 new mode 100644 diff --git a/public/client-portal/fonts/CircularStd-Bold.otf b/public/client-portal/fonts/CircularStd-Bold.otf old mode 100755 new mode 100644 diff --git a/public/client-portal/fonts/CircularStd-Book.otf b/public/client-portal/fonts/CircularStd-Book.otf old mode 100755 new mode 100644 diff --git a/public/client-portal/fonts/CircularStd-Medium.otf b/public/client-portal/fonts/CircularStd-Medium.otf old mode 100755 new mode 100644 diff --git a/public/client-portal/fonts/Roboto-Bold.ttf b/public/client-portal/fonts/Roboto-Bold.ttf old mode 100755 new mode 100644 diff --git a/public/client-portal/fonts/Roboto-Regular.ttf b/public/client-portal/fonts/Roboto-Regular.ttf old mode 100755 new mode 100644 diff --git a/public/client-portal/fonts/index.css b/public/client-portal/fonts/index.css old mode 100755 new mode 100644 diff --git a/public/client-portal/icons/ic_analytics.svg b/public/client-portal/icons/ic_analytics.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/icons/ic_banking.svg b/public/client-portal/icons/ic_banking.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/icons/ic_blog.svg b/public/client-portal/icons/ic_blog.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/icons/ic_booking.svg b/public/client-portal/icons/ic_booking.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/icons/ic_calendar.svg b/public/client-portal/icons/ic_calendar.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/icons/ic_cart.svg b/public/client-portal/icons/ic_cart.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/icons/ic_chat.svg b/public/client-portal/icons/ic_chat.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/icons/ic_dashboard.svg b/public/client-portal/icons/ic_dashboard.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/icons/ic_ecommerce.svg b/public/client-portal/icons/ic_ecommerce.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/icons/ic_kanban.svg b/public/client-portal/icons/ic_kanban.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/icons/ic_mail.svg b/public/client-portal/icons/ic_mail.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/icons/ic_user.svg b/public/client-portal/icons/ic_user.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/images/husband-user-profile.png b/public/client-portal/images/husband-user-profile.png old mode 100755 new mode 100644 diff --git a/public/client-portal/images/login-image.mp4 b/public/client-portal/images/login-image.mp4 old mode 100755 new mode 100644 diff --git a/public/client-portal/images/login-image.webm b/public/client-portal/images/login-image.webm old mode 100755 new mode 100644 diff --git a/public/client-portal/images/member.png b/public/client-portal/images/member.png old mode 100755 new mode 100644 diff --git a/public/client-portal/images/user-profile.png b/public/client-portal/images/user-profile.png old mode 100755 new mode 100644 diff --git a/public/client-portal/logo/logo-linksehat.png b/public/client-portal/logo/logo-linksehat.png old mode 100755 new mode 100644 diff --git a/public/client-portal/logo/logo_full.jpg b/public/client-portal/logo/logo_full.jpg old mode 100755 new mode 100644 diff --git a/public/client-portal/logo/logo_full.svg b/public/client-portal/logo/logo_full.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/logo/logo_single.svg b/public/client-portal/logo/logo_single.svg old mode 100755 new mode 100644 diff --git a/public/client-portal/manifest.json b/public/client-portal/manifest.json old mode 100755 new mode 100644 diff --git a/public/client-portal/robots.txt b/public/client-portal/robots.txt old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/.htaccess b/public/dashboard-staging/.htaccess old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/_redirects b/public/dashboard-staging/_redirects old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/favicon/android-chrome-192x192.png b/public/dashboard-staging/favicon/android-chrome-192x192.png old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/favicon/android-chrome-512x512.png b/public/dashboard-staging/favicon/android-chrome-512x512.png old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/favicon/apple-touch-icon.png b/public/dashboard-staging/favicon/apple-touch-icon.png old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/favicon/favicon-16x16.png b/public/dashboard-staging/favicon/favicon-16x16.png old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/favicon/favicon-32x32.png b/public/dashboard-staging/favicon/favicon-32x32.png old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/favicon/favicon.ico b/public/dashboard-staging/favicon/favicon.ico old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/fonts/CircularStd-Bold.otf b/public/dashboard-staging/fonts/CircularStd-Bold.otf old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/fonts/CircularStd-Book.otf b/public/dashboard-staging/fonts/CircularStd-Book.otf old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/fonts/CircularStd-Medium.otf b/public/dashboard-staging/fonts/CircularStd-Medium.otf old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/fonts/Roboto-Bold.ttf b/public/dashboard-staging/fonts/Roboto-Bold.ttf old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/fonts/Roboto-Regular.ttf b/public/dashboard-staging/fonts/Roboto-Regular.ttf old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/fonts/index.css b/public/dashboard-staging/fonts/index.css old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/icons/ic_analytics.svg b/public/dashboard-staging/icons/ic_analytics.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/icons/ic_banking.svg b/public/dashboard-staging/icons/ic_banking.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/icons/ic_blog.svg b/public/dashboard-staging/icons/ic_blog.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/icons/ic_booking.svg b/public/dashboard-staging/icons/ic_booking.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/icons/ic_calendar.svg b/public/dashboard-staging/icons/ic_calendar.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/icons/ic_cart.svg b/public/dashboard-staging/icons/ic_cart.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/icons/ic_chat.svg b/public/dashboard-staging/icons/ic_chat.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/icons/ic_dashboard.svg b/public/dashboard-staging/icons/ic_dashboard.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/icons/ic_ecommerce.svg b/public/dashboard-staging/icons/ic_ecommerce.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/icons/ic_kanban.svg b/public/dashboard-staging/icons/ic_kanban.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/icons/ic_mail.svg b/public/dashboard-staging/icons/ic_mail.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/icons/ic_user.svg b/public/dashboard-staging/icons/ic_user.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/image/overlay.png b/public/dashboard-staging/image/overlay.png old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/logo/logo-linksehat.png b/public/dashboard-staging/logo/logo-linksehat.png old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/logo/logo_full.jpg b/public/dashboard-staging/logo/logo_full.jpg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/logo/logo_full.svg b/public/dashboard-staging/logo/logo_full.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/logo/logo_single.svg b/public/dashboard-staging/logo/logo_single.svg old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/manifest.json b/public/dashboard-staging/manifest.json old mode 100755 new mode 100644 diff --git a/public/dashboard-staging/robots.txt b/public/dashboard-staging/robots.txt old mode 100755 new mode 100644 diff --git a/public/dashboard/.htaccess b/public/dashboard/.htaccess old mode 100755 new mode 100644 diff --git a/public/dashboard/_redirects b/public/dashboard/_redirects old mode 100755 new mode 100644 diff --git a/public/dashboard/assets/index.c91e36b5.css b/public/dashboard/assets/index.c91e36b5.css old mode 100755 new mode 100644 diff --git a/public/dashboard/assets/paths.3971dbe6.js b/public/dashboard/assets/paths.3971dbe6.js old mode 100755 new mode 100644 diff --git a/public/dashboard/favicon/android-chrome-192x192.png b/public/dashboard/favicon/android-chrome-192x192.png old mode 100755 new mode 100644 diff --git a/public/dashboard/favicon/android-chrome-512x512.png b/public/dashboard/favicon/android-chrome-512x512.png old mode 100755 new mode 100644 diff --git a/public/dashboard/favicon/apple-touch-icon.png b/public/dashboard/favicon/apple-touch-icon.png old mode 100755 new mode 100644 diff --git a/public/dashboard/favicon/favicon-16x16.png b/public/dashboard/favicon/favicon-16x16.png old mode 100755 new mode 100644 diff --git a/public/dashboard/favicon/favicon-32x32.png b/public/dashboard/favicon/favicon-32x32.png old mode 100755 new mode 100644 diff --git a/public/dashboard/favicon/favicon.ico b/public/dashboard/favicon/favicon.ico old mode 100755 new mode 100644 diff --git a/public/dashboard/fonts/CircularStd-Bold.otf b/public/dashboard/fonts/CircularStd-Bold.otf old mode 100755 new mode 100644 diff --git a/public/dashboard/fonts/CircularStd-Book.otf b/public/dashboard/fonts/CircularStd-Book.otf old mode 100755 new mode 100644 diff --git a/public/dashboard/fonts/CircularStd-Medium.otf b/public/dashboard/fonts/CircularStd-Medium.otf old mode 100755 new mode 100644 diff --git a/public/dashboard/fonts/Roboto-Bold.ttf b/public/dashboard/fonts/Roboto-Bold.ttf old mode 100755 new mode 100644 diff --git a/public/dashboard/fonts/Roboto-Regular.ttf b/public/dashboard/fonts/Roboto-Regular.ttf old mode 100755 new mode 100644 diff --git a/public/dashboard/fonts/index.css b/public/dashboard/fonts/index.css old mode 100755 new mode 100644 diff --git a/public/dashboard/icons/ic_analytics.svg b/public/dashboard/icons/ic_analytics.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/icons/ic_banking.svg b/public/dashboard/icons/ic_banking.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/icons/ic_blog.svg b/public/dashboard/icons/ic_blog.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/icons/ic_booking.svg b/public/dashboard/icons/ic_booking.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/icons/ic_calendar.svg b/public/dashboard/icons/ic_calendar.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/icons/ic_cart.svg b/public/dashboard/icons/ic_cart.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/icons/ic_chat.svg b/public/dashboard/icons/ic_chat.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/icons/ic_dashboard.svg b/public/dashboard/icons/ic_dashboard.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/icons/ic_ecommerce.svg b/public/dashboard/icons/ic_ecommerce.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/icons/ic_kanban.svg b/public/dashboard/icons/ic_kanban.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/icons/ic_mail.svg b/public/dashboard/icons/ic_mail.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/icons/ic_user.svg b/public/dashboard/icons/ic_user.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/image/overlay.png b/public/dashboard/image/overlay.png old mode 100755 new mode 100644 diff --git a/public/dashboard/index.html b/public/dashboard/index.html old mode 100755 new mode 100644 diff --git a/public/dashboard/logo/logo-linksehat.png b/public/dashboard/logo/logo-linksehat.png old mode 100755 new mode 100644 diff --git a/public/dashboard/logo/logo_full.jpg b/public/dashboard/logo/logo_full.jpg old mode 100755 new mode 100644 diff --git a/public/dashboard/logo/logo_full.svg b/public/dashboard/logo/logo_full.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/logo/logo_single.svg b/public/dashboard/logo/logo_single.svg old mode 100755 new mode 100644 diff --git a/public/dashboard/manifest.json b/public/dashboard/manifest.json old mode 100755 new mode 100644 diff --git a/public/dashboard/manifest.webmanifest b/public/dashboard/manifest.webmanifest old mode 100755 new mode 100644 diff --git a/public/dashboard/registerSW.js b/public/dashboard/registerSW.js old mode 100755 new mode 100644 diff --git a/public/dashboard/robots.txt b/public/dashboard/robots.txt old mode 100755 new mode 100644 diff --git a/public/dashboard/sw.js b/public/dashboard/sw.js old mode 100755 new mode 100644 diff --git a/public/dashboard/workbox-e0782b83.js b/public/dashboard/workbox-e0782b83.js old mode 100755 new mode 100644 diff --git a/public/favicon.ico b/public/favicon.ico old mode 100755 new mode 100644 diff --git a/public/files/Corporate Exclusion Import.xlsx b/public/files/Corporate Exclusion Import.xlsx old mode 100755 new mode 100644 diff --git a/public/files/Corporate Membership Import List.xlsx b/public/files/Corporate Membership Import List.xlsx old mode 100755 new mode 100644 diff --git a/public/files/Tarif Konsultasi Primaya 2023.csv b/public/files/Tarif Konsultasi Primaya 2023.csv old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-Black.ttf b/public/fonts/PublicSans-Black.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-BlackItalic.ttf b/public/fonts/PublicSans-BlackItalic.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-Bold.ttf b/public/fonts/PublicSans-Bold.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-BoldItalic.ttf b/public/fonts/PublicSans-BoldItalic.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-ExtraBold.ttf b/public/fonts/PublicSans-ExtraBold.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-ExtraBoldItalic.ttf b/public/fonts/PublicSans-ExtraBoldItalic.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-ExtraLight.ttf b/public/fonts/PublicSans-ExtraLight.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-ExtraLightItalic.ttf b/public/fonts/PublicSans-ExtraLightItalic.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-Italic.ttf b/public/fonts/PublicSans-Italic.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-Light.ttf b/public/fonts/PublicSans-Light.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-LightItalic.ttf b/public/fonts/PublicSans-LightItalic.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-Medium.ttf b/public/fonts/PublicSans-Medium.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-MediumItalic.ttf b/public/fonts/PublicSans-MediumItalic.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-Regular.ttf b/public/fonts/PublicSans-Regular.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-SemiBold.ttf b/public/fonts/PublicSans-SemiBold.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-SemiBoldItalic.ttf b/public/fonts/PublicSans-SemiBoldItalic.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-Thin.ttf b/public/fonts/PublicSans-Thin.ttf old mode 100755 new mode 100644 diff --git a/public/fonts/PublicSans-ThinItalic.ttf b/public/fonts/PublicSans-ThinItalic.ttf old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/.htaccess b/public/hospital-portal-staging/.htaccess old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/_redirects b/public/hospital-portal-staging/_redirects old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/assets/Card.636ec64c.js b/public/hospital-portal-staging/assets/Card.636ec64c.js old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/assets/Dashboard.6320ce33.js b/public/hospital-portal-staging/assets/Dashboard.6320ce33.js old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/assets/ForgetPassword.7bc09f84.js b/public/hospital-portal-staging/assets/ForgetPassword.7bc09f84.js old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/assets/Login.1016850a.js b/public/hospital-portal-staging/assets/Login.1016850a.js old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/assets/Page.54724e9a.js b/public/hospital-portal-staging/assets/Page.54724e9a.js old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/assets/Page404.14781eaa.js b/public/hospital-portal-staging/assets/Page404.14781eaa.js old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/assets/ResetPassword.efa619da.js b/public/hospital-portal-staging/assets/ResetPassword.efa619da.js old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/assets/index.93207066.js b/public/hospital-portal-staging/assets/index.93207066.js old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/assets/index.c91e36b5.css b/public/hospital-portal-staging/assets/index.c91e36b5.css old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/assets/paths.3971dbe6.js b/public/hospital-portal-staging/assets/paths.3971dbe6.js old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/favicon/android-chrome-192x192.png b/public/hospital-portal-staging/favicon/android-chrome-192x192.png old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/favicon/android-chrome-512x512.png b/public/hospital-portal-staging/favicon/android-chrome-512x512.png old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/favicon/apple-touch-icon.png b/public/hospital-portal-staging/favicon/apple-touch-icon.png old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/favicon/favicon-16x16.png b/public/hospital-portal-staging/favicon/favicon-16x16.png old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/favicon/favicon-32x32.png b/public/hospital-portal-staging/favicon/favicon-32x32.png old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/favicon/favicon.ico b/public/hospital-portal-staging/favicon/favicon.ico old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/fonts/CircularStd-Bold.otf b/public/hospital-portal-staging/fonts/CircularStd-Bold.otf old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/fonts/CircularStd-Book.otf b/public/hospital-portal-staging/fonts/CircularStd-Book.otf old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/fonts/CircularStd-Medium.otf b/public/hospital-portal-staging/fonts/CircularStd-Medium.otf old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/fonts/Roboto-Bold.ttf b/public/hospital-portal-staging/fonts/Roboto-Bold.ttf old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/fonts/Roboto-Regular.ttf b/public/hospital-portal-staging/fonts/Roboto-Regular.ttf old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/fonts/index.css b/public/hospital-portal-staging/fonts/index.css old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/icons/ic_analytics.svg b/public/hospital-portal-staging/icons/ic_analytics.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/icons/ic_banking.svg b/public/hospital-portal-staging/icons/ic_banking.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/icons/ic_blog.svg b/public/hospital-portal-staging/icons/ic_blog.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/icons/ic_booking.svg b/public/hospital-portal-staging/icons/ic_booking.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/icons/ic_calendar.svg b/public/hospital-portal-staging/icons/ic_calendar.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/icons/ic_cart.svg b/public/hospital-portal-staging/icons/ic_cart.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/icons/ic_chat.svg b/public/hospital-portal-staging/icons/ic_chat.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/icons/ic_dashboard.svg b/public/hospital-portal-staging/icons/ic_dashboard.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/icons/ic_ecommerce.svg b/public/hospital-portal-staging/icons/ic_ecommerce.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/icons/ic_kanban.svg b/public/hospital-portal-staging/icons/ic_kanban.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/icons/ic_mail.svg b/public/hospital-portal-staging/icons/ic_mail.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/icons/ic_user.svg b/public/hospital-portal-staging/icons/ic_user.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/image/overlay.png b/public/hospital-portal-staging/image/overlay.png old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/index.html b/public/hospital-portal-staging/index.html old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/logo/logo-linksehat.png b/public/hospital-portal-staging/logo/logo-linksehat.png old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/logo/logo_full.jpg b/public/hospital-portal-staging/logo/logo_full.jpg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/logo/logo_full.svg b/public/hospital-portal-staging/logo/logo_full.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/logo/logo_single.svg b/public/hospital-portal-staging/logo/logo_single.svg old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/manifest.json b/public/hospital-portal-staging/manifest.json old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/manifest.webmanifest b/public/hospital-portal-staging/manifest.webmanifest old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/registerSW.js b/public/hospital-portal-staging/registerSW.js old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/robots.txt b/public/hospital-portal-staging/robots.txt old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/sw.js b/public/hospital-portal-staging/sw.js old mode 100755 new mode 100644 diff --git a/public/hospital-portal-staging/workbox-e0782b83.js b/public/hospital-portal-staging/workbox-e0782b83.js old mode 100755 new mode 100644 diff --git a/public/images/default-doctor-avatar.png b/public/images/default-doctor-avatar.png old mode 100755 new mode 100644 diff --git a/public/images/default-hospital-image.png b/public/images/default-hospital-image.png old mode 100755 new mode 100644 diff --git a/public/images/logo-linksehat-vertical-default.png b/public/images/logo-linksehat-vertical-default.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/akupunktur.png b/public/images/specialities/akupunktur.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/anak.png b/public/images/specialities/anak.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/andrologi.png b/public/images/specialities/andrologi.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/anestesi.png b/public/images/specialities/anestesi.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/bedah-plastik-estetik.png b/public/images/specialities/bedah-plastik-estetik.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/bedah-umum.png b/public/images/specialities/bedah-umum.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/dokter-layanan-primer.png b/public/images/specialities/dokter-layanan-primer.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/emergency-medicine.png b/public/images/specialities/emergency-medicine.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/farmakologi-klinik.png b/public/images/specialities/farmakologi-klinik.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/fisioterapi.png b/public/images/specialities/fisioterapi.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/forensik-dan-Medikolegal.png b/public/images/specialities/forensik-dan-Medikolegal.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/gizi-klinik.png b/public/images/specialities/gizi-klinik.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/hd.png b/public/images/specialities/hd.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/igd.png b/public/images/specialities/igd.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/jantung-pembuluh-darah.png b/public/images/specialities/jantung-pembuluh-darah.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/kardio-vaskuler.png b/public/images/specialities/kardio-vaskuler.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/kebidanan-kandungan.png b/public/images/specialities/kebidanan-kandungan.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/kedokteran-fisik-dan-rehabilitasi.png b/public/images/specialities/kedokteran-fisik-dan-rehabilitasi.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/kedokteran-kelautan.png b/public/images/specialities/kedokteran-kelautan.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/kedokteran-nuklir.png b/public/images/specialities/kedokteran-nuklir.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/kedokteran-olahraga.png b/public/images/specialities/kedokteran-olahraga.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/kedokteran-penerbangan.png b/public/images/specialities/kedokteran-penerbangan.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/kesehatan-jiwa.png b/public/images/specialities/kesehatan-jiwa.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/kulit-kelamin.png b/public/images/specialities/kulit-kelamin.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/laboratorium.png b/public/images/specialities/laboratorium.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/mata.png b/public/images/specialities/mata.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/onkologi-Radiasi-1.png b/public/images/specialities/onkologi-Radiasi-1.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/onkologi-radiasi.png b/public/images/specialities/onkologi-radiasi.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/ortopedi-dan-traumatologi.png b/public/images/specialities/ortopedi-dan-traumatologi.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/parasitologi-klinik.png b/public/images/specialities/parasitologi-klinik.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/patologi-anatomi.png b/public/images/specialities/patologi-anatomi.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/patologi-klinik.png b/public/images/specialities/patologi-klinik.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/penyakit-dalam.png b/public/images/specialities/penyakit-dalam.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/psikolog.png b/public/images/specialities/psikolog.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/radiologi.png b/public/images/specialities/radiologi.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/saraf.png b/public/images/specialities/saraf.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/teeth.png b/public/images/specialities/teeth.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/tht.png b/public/images/specialities/tht.png old mode 100755 new mode 100644 diff --git a/public/images/specialities/urologi.png b/public/images/specialities/urologi.png old mode 100755 new mode 100644 diff --git a/public/index.php b/public/index.php old mode 100755 new mode 100644 diff --git a/public/robots.txt b/public/robots.txt old mode 100755 new mode 100644 diff --git a/resources/css/app.css b/resources/css/app.css old mode 100755 new mode 100644 diff --git a/resources/files/ICD-X-Halodoc.csv b/resources/files/ICD-X-Halodoc.csv old mode 100755 new mode 100644 diff --git a/resources/files/city.csv b/resources/files/city.csv old mode 100755 new mode 100644 diff --git a/resources/files/daftar_masteritem_ccp_14-06-2022.xlsx b/resources/files/daftar_masteritem_ccp_14-06-2022.xlsx old mode 100755 new mode 100644 diff --git a/resources/files/district.csv b/resources/files/district.csv old mode 100755 new mode 100644 diff --git a/resources/files/providers.csv b/resources/files/providers.csv old mode 100755 new mode 100644 diff --git a/resources/files/providers.csv:Zone.Identifier b/resources/files/providers.csv:Zone.Identifier old mode 100755 new mode 100644 diff --git a/resources/files/province.csv b/resources/files/province.csv old mode 100755 new mode 100644 diff --git a/resources/files/village.csv b/resources/files/village.csv old mode 100755 new mode 100644 diff --git a/resources/js/app.js b/resources/js/app.js old mode 100755 new mode 100644 diff --git a/resources/js/bootstrap.js b/resources/js/bootstrap.js old mode 100755 new mode 100644 diff --git a/resources/views/pdf/final_log.blade.php b/resources/views/pdf/final_log.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/pdf/guaranted_leter.blade.php b/resources/views/pdf/guaranted_leter.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/html/button.blade.php b/resources/views/vendor/mail/html/button.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/html/footer.blade.php b/resources/views/vendor/mail/html/footer.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/html/header.blade.php b/resources/views/vendor/mail/html/header.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/html/layout.blade.php b/resources/views/vendor/mail/html/layout.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/html/message.blade.php b/resources/views/vendor/mail/html/message.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/html/panel.blade.php b/resources/views/vendor/mail/html/panel.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/html/subcopy.blade.php b/resources/views/vendor/mail/html/subcopy.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/html/table.blade.php b/resources/views/vendor/mail/html/table.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/html/themes/default.css b/resources/views/vendor/mail/html/themes/default.css old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/text/button.blade.php b/resources/views/vendor/mail/text/button.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/text/footer.blade.php b/resources/views/vendor/mail/text/footer.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/text/header.blade.php b/resources/views/vendor/mail/text/header.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/text/layout.blade.php b/resources/views/vendor/mail/text/layout.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/text/message.blade.php b/resources/views/vendor/mail/text/message.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/text/panel.blade.php b/resources/views/vendor/mail/text/panel.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/text/subcopy.blade.php b/resources/views/vendor/mail/text/subcopy.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/vendor/mail/text/table.blade.php b/resources/views/vendor/mail/text/table.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/verify_email.blade.php b/resources/views/verify_email.blade.php old mode 100755 new mode 100644 diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php old mode 100755 new mode 100644 diff --git a/routes/api.php b/routes/api.php old mode 100755 new mode 100644 diff --git a/routes/channels.php b/routes/channels.php old mode 100755 new mode 100644 diff --git a/routes/console.php b/routes/console.php old mode 100755 new mode 100644 diff --git a/routes/web.php b/routes/web.php old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/assets/js/app.stub b/stubs/nwidart-stubs/assets/js/app.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/assets/sass/app.stub b/stubs/nwidart-stubs/assets/sass/app.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/command.stub b/stubs/nwidart-stubs/command.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/component-class.stub b/stubs/nwidart-stubs/component-class.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/component-view.stub b/stubs/nwidart-stubs/component-view.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/composer.stub b/stubs/nwidart-stubs/composer.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/controller-api.stub b/stubs/nwidart-stubs/controller-api.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/controller-plain.stub b/stubs/nwidart-stubs/controller-plain.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/controller.stub b/stubs/nwidart-stubs/controller.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/event.stub b/stubs/nwidart-stubs/event.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/factory.stub b/stubs/nwidart-stubs/factory.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/feature-test.stub b/stubs/nwidart-stubs/feature-test.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/job-queued.stub b/stubs/nwidart-stubs/job-queued.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/job.stub b/stubs/nwidart-stubs/job.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/json.stub b/stubs/nwidart-stubs/json.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/listener-duck.stub b/stubs/nwidart-stubs/listener-duck.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/listener-queued-duck.stub b/stubs/nwidart-stubs/listener-queued-duck.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/listener-queued.stub b/stubs/nwidart-stubs/listener-queued.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/listener.stub b/stubs/nwidart-stubs/listener.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/mail.stub b/stubs/nwidart-stubs/mail.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/middleware.stub b/stubs/nwidart-stubs/middleware.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/migration/add.stub b/stubs/nwidart-stubs/migration/add.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/migration/create.stub b/stubs/nwidart-stubs/migration/create.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/migration/delete.stub b/stubs/nwidart-stubs/migration/delete.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/migration/drop.stub b/stubs/nwidart-stubs/migration/drop.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/migration/plain.stub b/stubs/nwidart-stubs/migration/plain.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/model.stub b/stubs/nwidart-stubs/model.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/notification.stub b/stubs/nwidart-stubs/notification.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/package.stub b/stubs/nwidart-stubs/package.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/policy.plain.stub b/stubs/nwidart-stubs/policy.plain.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/provider.stub b/stubs/nwidart-stubs/provider.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/request.stub b/stubs/nwidart-stubs/request.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/resource-collection.stub b/stubs/nwidart-stubs/resource-collection.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/resource.stub b/stubs/nwidart-stubs/resource.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/route-provider.stub b/stubs/nwidart-stubs/route-provider.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/routes/api.stub b/stubs/nwidart-stubs/routes/api.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/routes/web.stub b/stubs/nwidart-stubs/routes/web.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/rule.stub b/stubs/nwidart-stubs/rule.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/scaffold/config.stub b/stubs/nwidart-stubs/scaffold/config.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/scaffold/provider.stub b/stubs/nwidart-stubs/scaffold/provider.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/seeder.stub b/stubs/nwidart-stubs/seeder.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/unit-test.stub b/stubs/nwidart-stubs/unit-test.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/views/index.stub b/stubs/nwidart-stubs/views/index.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/views/master.stub b/stubs/nwidart-stubs/views/master.stub old mode 100755 new mode 100644 diff --git a/stubs/nwidart-stubs/webpack.stub b/stubs/nwidart-stubs/webpack.stub old mode 100755 new mode 100644 diff --git a/tailwind.config.js b/tailwind.config.js old mode 100755 new mode 100644 diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php old mode 100755 new mode 100644 diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php old mode 100755 new mode 100644 diff --git a/tests/TestCase.php b/tests/TestCase.php old mode 100755 new mode 100644 diff --git a/tests/Unit/ExampleTest.php b/tests/Unit/ExampleTest.php old mode 100755 new mode 100644 diff --git a/vite.config.js b/vite.config.js old mode 100755 new mode 100644 diff --git a/webpack.mix.js b/webpack.mix.js old mode 100755 new mode 100644 From c94285693326bb2c09a361f8bad200ce5f38397f Mon Sep 17 00:00:00 2001 From: kevin Date: Tue, 4 Jul 2023 09:35:33 +0700 Subject: [PATCH 3/3] Prescription --- .../Api/PrescriptionController.php | 96 ++++ Modules/Internal/Routes/api.php | 3 + app/Models/OLDLMS/Prescription.php | 38 ++ app/Models/Plan.php | 2 +- .../layouts/dashboard/navbar/NavConfig.tsx | 1 + .../src/pages/Report/Prescription/Index.tsx | 37 ++ .../src/pages/Report/Prescription/List.tsx | 440 ++++++++++++++++++ frontend/dashboard/src/routes/index.tsx | 5 + 8 files changed, 621 insertions(+), 1 deletion(-) create mode 100644 Modules/Internal/Http/Controllers/Api/PrescriptionController.php create mode 100644 app/Models/OLDLMS/Prescription.php create mode 100644 frontend/dashboard/src/pages/Report/Prescription/Index.tsx create mode 100644 frontend/dashboard/src/pages/Report/Prescription/List.tsx diff --git a/Modules/Internal/Http/Controllers/Api/PrescriptionController.php b/Modules/Internal/Http/Controllers/Api/PrescriptionController.php new file mode 100644 index 00000000..a7127855 --- /dev/null +++ b/Modules/Internal/Http/Controllers/Api/PrescriptionController.php @@ -0,0 +1,96 @@ +where('nID', $id); + } + + $prescriptions = $query->select('nID','nIDLiveChat', 'nIDLiveChatSummary', 'nIDDokter', 'sDokterName', 'dTanggalResep', 'sSource', 'nIDUser', 'sKodeResep', 'sDiagnose', 'sStatus') + ->get(); + + // $prescriptions->toArray(); + // dd($prescriptions); + + return response()->json($prescriptions); + // return response()->json(Helper::paginateResources(LivechatResource::collection($livechat))); + } + + + + + /** + * Show the form for creating a new resource. + * @return Renderable + */ + public function create() + { + return view('internal::create'); + } + + /** + * Store a newly created resource in storage. + * @param Request $request + * @return Renderable + */ + public function store(Request $request) + { + } + + /** + * Show the specified resource. + * @param int $id + * @return Renderable + */ + public function show($id) + { + + } + + /** + * Show the form for editing the specified resource. + * @param int $id + * @return Renderable + */ + public function edit($id) + { + return view('internal::edit'); + } + + /** + * Update the specified resource in storage. + * @param Request $request + * @param int $id + * @return Renderable + */ + public function update(Request $request, $id) + { + // + } + + /** + * Remove the specified resource from storage. + * @param int $id + * @return Renderable + */ + public function destroy($id) + { + // + } +} diff --git a/Modules/Internal/Routes/api.php b/Modules/Internal/Routes/api.php index f2839eec..d13e0f47 100755 --- a/Modules/Internal/Routes/api.php +++ b/Modules/Internal/Routes/api.php @@ -28,6 +28,7 @@ use Modules\Internal\Http\Controllers\Api\OptionController; use Modules\Internal\Http\Controllers\Api\OrganizationController; use Modules\Internal\Http\Controllers\Api\PlanController; use Modules\Internal\Http\Controllers\Api\ProvinceController; +use Modules\Internal\Http\Controllers\Api\PrescriptionController; use Modules\Internal\Http\Controllers\Api\SpecialityController; use Modules\Internal\Http\Controllers\Api\VillageController; use Modules\Internal\Http\Controllers\Api\AuditTrailController; @@ -151,6 +152,8 @@ Route::prefix('internal')->group(function () { Route::resource('organizations', OrganizationController::class); Route::resource('appointments', AppointmentController::class); Route::resource('live-chat', LivechatController::class); + Route::get('prescription', [PrescriptionController::class, 'index']); + Route::get('prescription/{id}', [PrescriptionController::class, 'index']); Route::resource('doctors', DoctorController::class); diff --git a/app/Models/OLDLMS/Prescription.php b/app/Models/OLDLMS/Prescription.php new file mode 100644 index 00000000..8f75f528 --- /dev/null +++ b/app/Models/OLDLMS/Prescription.php @@ -0,0 +1,38 @@ + 'Menunggu Konfirmasi', + // 1 => 'Diterima', + // 2 => 'Ditolak', + // 3 => 'Selesai', + // 4 => 'Expired', + // ]; + + const CREATED_AT = 'dCreateOn'; + const UPDATED_AT = 'dUpdateOn'; + const DELETED_AT = 'dDeleteOn'; + + protected $connection = 'oldlms'; + + protected $table = 'tx_prescriptions'; + + // protected $appends = [ + // 'status_name', + // ]; + + protected $casts = [ + 'dTanggalResep' => 'datetime', + ]; + +} diff --git a/app/Models/Plan.php b/app/Models/Plan.php index 8950724a..9ffc4759 100755 --- a/app/Models/Plan.php +++ b/app/Models/Plan.php @@ -186,7 +186,7 @@ class Plan extends Model { $this->attributes['start'] = empty($value) ? null : $value; } - + public function setEndAttribute($value) { $this->attributes['end'] = empty($value) ? null : $value; diff --git a/frontend/dashboard/src/layouts/dashboard/navbar/NavConfig.tsx b/frontend/dashboard/src/layouts/dashboard/navbar/NavConfig.tsx index 8be86e5c..afcda80a 100755 --- a/frontend/dashboard/src/layouts/dashboard/navbar/NavConfig.tsx +++ b/frontend/dashboard/src/layouts/dashboard/navbar/NavConfig.tsx @@ -82,6 +82,7 @@ const navConfig = [ { title: 'Appointment', path: '/report/appointments' }, { title: 'Live Chat', path: '/report/live-chat' }, { title: 'Linksehat Payment', path: '/report/linksehat-payments' }, + { title: 'Prescription', path: '/report/prescription' }, ], }, { diff --git a/frontend/dashboard/src/pages/Report/Prescription/Index.tsx b/frontend/dashboard/src/pages/Report/Prescription/Index.tsx new file mode 100644 index 00000000..ff5c923e --- /dev/null +++ b/frontend/dashboard/src/pages/Report/Prescription/Index.tsx @@ -0,0 +1,37 @@ +import { Card, Grid, Container } from '@mui/material'; +import { useParams } from 'react-router-dom'; +import HeaderBreadcrumbs from '@/components/HeaderBreadcrumbs'; +import Page from '@/components/Page'; +import useSettings from '@/hooks/useSettings'; +import List from '../Prescription/List'; + +export default function Prescription(){ + const { themeStretch } = useSettings(); + + const { id } = useParams(); + + const pageTitle = 'Prescription'; + + return( + + + + + + + + + ); +} \ No newline at end of file diff --git a/frontend/dashboard/src/pages/Report/Prescription/List.tsx b/frontend/dashboard/src/pages/Report/Prescription/List.tsx new file mode 100644 index 00000000..8ed4712c --- /dev/null +++ b/frontend/dashboard/src/pages/Report/Prescription/List.tsx @@ -0,0 +1,440 @@ +import { + Box, + Button, + Card, + Collapse, + Paper, + Select, + SelectChangeEvent, + Table, + TableBody, + TableCell, + TableContainer, + TableHead, + TableRow, + TextField, + Typography, + Stack, + ButtonGroup, + Grid, + Chip, + Dialog, + DialogContent, + DialogContentText, + DialogActions, + FormControl, + Autocomplete, + InputAdornment, + IconButton, + } from '@mui/material'; + + import { + Link, + NavLink as RouterLink, + useSearchParams, + useNavigate, + useParams, + } from 'react-router-dom'; + // hooks + import React, { ChangeEvent, Component, useEffect, useRef, useState } from 'react'; + import useSettings from '../../../hooks/useSettings'; + // components + import axios from '../../../utils/axios'; + import { LaravelPaginatedData } from '../../../@types/paginated-data'; + import { Icd } from '../../../@types/diagnosis'; + import BasePagination from '../../../components/BasePagination'; + import { Practitioner } from '../../../@types/doctor'; + import CreateIcon from '@mui/icons-material/Create'; + import { Props } from '../../../components/editor/index'; + import { red } from '@mui/material/colors'; + import { margin, padding } from '@mui/system'; + import { enqueueSnackbar } from 'notistack'; + import { Controller } from 'react-hook-form'; + + import SvgIconStyle from '../../../components/SvgIconStyle'; + import { GridSearchIcon } from '@mui/x-data-grid'; + import { Search } from '@mui/icons-material'; + import { Icon } from '@iconify/react'; + import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown'; + import KeyboardArrowRightIcon from '@mui/icons-material/KeyboardArrowRight'; + + export default function List(){ + + const navigate = useNavigate(); + const { organization_id } = useParams(); + const [searchParams, setSearchParams] = useSearchParams(); + const [searchParamsOrganizations, setSearchParamsOrganizations] = useSearchParams(); + const [searchParamsSpecialities, setSearchParamsSpecialities] = useSearchParams(); + const [searchParamsFilter, setSearchParamsFilter] = useSearchParams(); + + function Filter(props: any) { + // SEARCH + const searchInput = useRef(null); + const [searchText, setSearchText] = useState(''); + + //handle search + const handleSearchChange = (event: any) => { + const newSearchText = event.target.value ?? ''; + setSearchText(newSearchText); + }; + + const handleSearchSubmit = (event: any) => { + event.preventDefault(); + + props.onSearch(searchText); + }; + + useEffect(() => { + // Trigger First Search + setSearchText(searchParams.get('search') ?? ''); + }, []); + + const item = [ + { + id: '', + value: '', + name: 'Semua', + }, + ]; + + return ( +
+ + + { + if (event.key === 'Enter') { + handleSearchSubmit(event); + } + }} + value={searchText} + InputProps={{ + startAdornment: ( + + + + ), + placeholder: 'Search', + }} + /> + + +
+ ); + } + function FilterForm(props: any) { + return( + + + + + + ); + } + + function createData(doctor: Practitioner): Practitioner { + return { + ...doctor, + }; + } + + function Row(props: { row: ReturnType }) { + const { row } = props; + const [open, setOpen] = React.useState(false); + const [openDialog, setOpenDialog] = React.useState(false); + + + + return ( + + + + setOpen(!open)}> + {open ? : } + + + {row.nID ? row.nID : '-'} + + {row.nIDUser ? row.nIDUser : '-'} + + {row.nIDDokter ? row.nIDDokter : '-'} + {row.sDokterName ? row.sDokterName : '-'} + {row.dTanggalResep ? row.dTanggalResep : '-'} + {row.sSource ? row.sSource : '-'} + {row.sKodeResep ? row.sKodeResep : '-'} + {row.sDiagnose ? row.sDiagnose : '-'} + {row.sStatus ? row.sStatus : '-'} + {/* + + + + + + */} + + {/* COLLAPSIBLE ROW */} + + +{/* + + + + + + Metode Pembayaran + + + : {row.payment_method ? row.payment_method : '-'} + + + + Jenis Benefit + + + : - + + + Durasi + + + : {row.duration ? row.duration : '-'} + + + + + + */} + + + + {/* END COLLAPSIBLE ROW */} + { + setOpenDialog(false); + }} + aria-labelledby="alert-dialog-title" + aria-describedby="alert-dialog-description" + > + + + + Apakah anda yakin ingin menghapus + + + {row.name}? + + + + + {/* */} + + + + ); + } + + const headStyle = { + fontWeight: 'bold', + }; + // Dummy Default Data + const [dataTableIsLoading, setDataTableLoading] = useState(true); + const [dataTableLastRequest, setDataTableLastRequest] = useState(0); + const [dataTableResponseState, setDataTableResponseState] = useState('idle'); + const [dataTableData, setDataTableData] = useState({ + current_page: 1, + data: [], + path: '', + first_page_url: '', + last_page: 1, + last_page_url: '', + next_page_url: '', + prev_page_url: '', + per_page: 10, + from: 0, + to: 0, + total: 0, + }); + const [dataTablePage, setDataTablePage] = useState(5); + + const loadDataTableData = async (appliedFilter: any | null = null) => { + setDataTableLoading(true); + const filter = appliedFilter ? appliedFilter : Object.fromEntries([...searchParams.entries()]); + const response = await axios.get('/prescription', { + params: filter, + }); + setDataTableLoading(false); + setDataTableData(response.data); + }; + + // const applyFilter = async (searchFilter: string) => { + // await loadDataTableData({ search: searchFilter }); + // setSearchParams({ search: searchFilter }); + // }; + + const applyItems = async ( + searchFilter: string, + searchFilterOrganization: string, + searchFilterSpecialities: string + ) => { + await loadDataTableData({ + search: searchFilter, + organization_id: searchFilterOrganization, + speciality_id: searchFilterSpecialities, + }); + setSearchParamsFilter({ + search: searchFilter, + organization_id: searchFilterOrganization, + speciality_id: searchFilterSpecialities, + }); + }; + + const handlePageChange = (event: ChangeEvent, value: number) => { + const filter = Object.fromEntries([...searchParams.entries(), ['page', value]]); + loadDataTableData(filter); + setSearchParams(filter); + }; + + useEffect(() => { + loadDataTableData(); + }, []); + + return ( + + {/* */} + + + + + {/* The Main Table */} + + + + + {/* */} + + + ID Booking + + + ID User + + + ID Dokter + + + Nama Dokter + + + Tanggal Resep + + + Source + + + Kode Resep + + + Diagnosa + + + Status + + +{/* + + + Tanggal Booking + + + Tanggal Appointment + + + Faskes + + + Nama Dokter + + + Spesialisasi + + + Pasien + + + Dokter + + */} + + {dataTableIsLoading ? ( + + + + Loading + + + + ) : (dataTableData.data && dataTableData.data.length === 0) ? ( + + + + + No Data + + + + ) : ( + + {dataTableData && dataTableData.map((row) => ( + + ))} + + )} +
+
+ + +
+
+ ); +} \ No newline at end of file diff --git a/frontend/dashboard/src/routes/index.tsx b/frontend/dashboard/src/routes/index.tsx index 3c0a4ec1..389fda74 100755 --- a/frontend/dashboard/src/routes/index.tsx +++ b/frontend/dashboard/src/routes/index.tsx @@ -12,6 +12,7 @@ import VerifyCode from '../pages/auth/VerifyCode'; import { AuthProvider } from '../contexts/LaravelAuthContext'; import AuthGuard from '../guards/AuthGuard'; import { Link, useParams, useSearchParams } from 'react-router-dom'; +import Prescription from '@/pages/Report/Prescription/Index'; // ---------------------------------------------------------------------- @@ -285,6 +286,10 @@ export default function Router() { path: 'report/live-chat/:id/edit', element: , }, + { + path: 'report/prescription', + element: , + }, { path: 'report/linksehat-payments', element: ,