From 40d4500651a15e3f344f491361dd63bd0768ddda Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Fri, 9 Jun 2023 15:11:44 +0700 Subject: [PATCH 01/13] tambah field payment type --- ...842_add_payment_type_to_claim_requests.php | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 database/migrations/2023_06_09_150842_add_payment_type_to_claim_requests.php diff --git a/database/migrations/2023_06_09_150842_add_payment_type_to_claim_requests.php b/database/migrations/2023_06_09_150842_add_payment_type_to_claim_requests.php new file mode 100644 index 00000000..bf80cb4d --- /dev/null +++ b/database/migrations/2023_06_09_150842_add_payment_type_to_claim_requests.php @@ -0,0 +1,34 @@ +string('payment_type')->after('member_id')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('claim_requests', function (Blueprint $table) { + // + $table->dropColumn('payment_type'); + }); + } +}; From cbc7dfdb995c271b1913f21aef2b8e357ce14926 Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Fri, 9 Jun 2023 15:17:39 +0700 Subject: [PATCH 02/13] update colom service code, policy id dan claim reques --- ...451_add_service_code_to_claim_requests.php | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php diff --git a/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php b/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php new file mode 100644 index 00000000..259670e8 --- /dev/null +++ b/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php @@ -0,0 +1,36 @@ +string('service_code')->after('payment_type')->nullable(); + $table->string('policy_id')->after('service_code')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('claim_requests', function (Blueprint $table) { + // + $table->dropColumn('service_code'); + $table->dropColumn('policy_id'); + }); + } +}; From 8f532e655f7a87068de2cb7feb3a98478cc39dd4 Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Tue, 13 Jun 2023 11:33:42 +0700 Subject: [PATCH 03/13] update --- .../Http/Controllers/Api/MemberController.php | 8 +- app/Http/Resources/OLDLMS/MemberResource.php | 3 +- app/Models/Plan.php | 1 + ...451_add_service_code_to_claim_requests.php | 2 +- .../src/components/dialogs/DialogReason.tsx | 0 .../layouts/dashboard/navbar/NavConfig.tsx | 5 +- frontend/dashboard/src/pages/Claims/List.tsx | 2 +- .../src/pages/Service/Membership/List.tsx | 267 ++++++++++++++++++ .../src/pages/Service/Membership/index.tsx | 30 ++ frontend/dashboard/src/routes/index.tsx | 9 +- 10 files changed, 320 insertions(+), 7 deletions(-) create mode 100644 frontend/dashboard/src/components/dialogs/DialogReason.tsx create mode 100755 frontend/dashboard/src/pages/Service/Membership/List.tsx create mode 100644 frontend/dashboard/src/pages/Service/Membership/index.tsx diff --git a/Modules/Internal/Http/Controllers/Api/MemberController.php b/Modules/Internal/Http/Controllers/Api/MemberController.php index 96925c7b..f288252e 100755 --- a/Modules/Internal/Http/Controllers/Api/MemberController.php +++ b/Modules/Internal/Http/Controllers/Api/MemberController.php @@ -13,10 +13,14 @@ class MemberController extends Controller * Display a listing of the resource. * @return Renderable */ - public function index() + public function index(Request $request) { return Member::query() - ->with('currentPlan') + ->when($request->search, function ($query, $search) { + return $query->where('name', 'LIKE', '%' . $search . '%') + ->orWhere('member_id', 'LIKE', '%' . $search . '%'); + }) + ->with('currentPlan', 'currentCorporate') ->paginate(); } diff --git a/app/Http/Resources/OLDLMS/MemberResource.php b/app/Http/Resources/OLDLMS/MemberResource.php index 4f4edc7e..6a497512 100755 --- a/app/Http/Resources/OLDLMS/MemberResource.php +++ b/app/Http/Resources/OLDLMS/MemberResource.php @@ -29,7 +29,8 @@ 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_consultation' => 6 ] : null, 'policy_code' => $this->currentPolicy?->code ?? null, 'corporate' => [ diff --git a/app/Models/Plan.php b/app/Models/Plan.php index 8950724a..439433e2 100755 --- a/app/Models/Plan.php +++ b/app/Models/Plan.php @@ -224,6 +224,7 @@ class Plan extends Model return $this->belongsTo(CorporatePlan::class); } + // public function Corporate() // { // return $this->belongsTo(Corporate::class); diff --git a/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php b/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php index 259670e8..ce185355 100644 --- a/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php +++ b/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php @@ -16,7 +16,7 @@ return new class extends Migration Schema::table('claim_requests', function (Blueprint $table) { // $table->string('service_code')->after('payment_type')->nullable(); - $table->string('policy_id')->after('service_code')->nullable(); + $table->unsignedBigInteger('policy_id')->after('service_code')->nullable(); }); } diff --git a/frontend/dashboard/src/components/dialogs/DialogReason.tsx b/frontend/dashboard/src/components/dialogs/DialogReason.tsx new file mode 100644 index 00000000..e69de29b diff --git a/frontend/dashboard/src/layouts/dashboard/navbar/NavConfig.tsx b/frontend/dashboard/src/layouts/dashboard/navbar/NavConfig.tsx index 8be86e5c..8390f1e1 100755 --- a/frontend/dashboard/src/layouts/dashboard/navbar/NavConfig.tsx +++ b/frontend/dashboard/src/layouts/dashboard/navbar/NavConfig.tsx @@ -74,7 +74,10 @@ const navConfig = [ }, { title: 'CUSTOMER SERVICES', - children: [{ title: 'Request', path: '/cs-request' }], + children: [ + { title: 'Request', path: '/cs-request' }, + { title: 'Membership', path: '/cs-membership' }, + ], }, { title: 'REPORT', diff --git a/frontend/dashboard/src/pages/Claims/List.tsx b/frontend/dashboard/src/pages/Claims/List.tsx index ba58f679..cac972bd 100755 --- a/frontend/dashboard/src/pages/Claims/List.tsx +++ b/frontend/dashboard/src/pages/Claims/List.tsx @@ -84,7 +84,7 @@ export default function List() { onChange={handleSearchChange} value={searchText} /> - + */} + + + ); + } + + // Dummy Default Data + const [dataTableIsLoading, setDataTableLoading] = useState(true); + const [dataTableData, setDataTableData] = useState( + LaravelPaginatedDataDefault + ); + + const loadDataTableData = async (appliedFilter: any | null = null) => { + setDataTableLoading(true); + const filter = appliedFilter ? appliedFilter : Object.fromEntries([...searchParams.entries()]); + const response = await axios.get('/members', { params: filter }); + // console.log(response.data); + setDataTableLoading(false); + + setDataTableData(response.data); + }; + + const applyFilter = async (searchFilter: { search: string }) => { + await loadDataTableData(searchFilter); + setSearchParams(searchFilter); + }; + + const handlePageChange = (event: ChangeEvent, value: number): void => { + const filter = Object.fromEntries([...searchParams.entries(), ['page', value]]); + loadDataTableData(filter); + setSearchParams(filter); + }; + + useEffect(() => { + loadDataTableData(); + }, []); + + const headStyle = { + fontWeight: 'bold', + }; + + // Called on every row to map the data to the columns + function createData(data: any): any { + return { + ...data, + }; + } + + { + /* ------------------ TABLE ROW ------------------ */ + } + function Row(props: { row: ReturnType }) { + const { row } = props; + const [open, setOpen] = React.useState(false); + + return ( + + *': { borderBottom: 'unset' } }}> + {/* + setOpen(!open)}> + {open ? : } + + */} + {row.member_id} + {row.person?.name} + {row.current_corporate?.name} + {row.person?.nik} + {row.current_plan?.code} + {row.active == 1 ? 'Active' : 'Inactive'} + + {row.member_id == 'draft' && ()} + {row.member_id == 'requested' && ()} + {row.member_id == 'received' && ()} + {row.member_id == 'approved' && ()} + {row.member_id == 'postpone' && ()} + {row.member_id == 'paid' && ()} + {row.member_id == 'declined' && ()} + + + {/* COLLAPSIBLE ROW */} + + + + {/* + + Description : {row.description} + + */} + + + + + ); + } + { + /* ------------------ END TABLE ROW ------------------ */ + } + + function TableContent() { + return ( + + {/* ------------------ TABLE HEADER ------------------ */} + + + {/* Detail */} + MemberID + Name + Corporate Name + NIK + Plan + Status + + + {/* ------------------ END TABLE HEADER ------------------ */} + + {/* ------------------ TABLE ROW ------------------ */} + {dataTableIsLoading ? ( + + + + Loading + + + + ) : dataTableData.data.length === 0 ? ( + + + + No Data + + + + ) : ( + + {dataTableData.data.map((row) => ( + + ))} + + )} + {/* ------------------ END TABLE ROW ------------------ */} +
+ ); + } + + return ( + + + + } + /> + + ); +} diff --git a/frontend/dashboard/src/pages/Service/Membership/index.tsx b/frontend/dashboard/src/pages/Service/Membership/index.tsx new file mode 100644 index 00000000..d26903b0 --- /dev/null +++ b/frontend/dashboard/src/pages/Service/Membership/index.tsx @@ -0,0 +1,30 @@ +import { Card, Stack } from "@mui/material"; +import HeaderBreadcrumbs from "../../../components/HeaderBreadcrumbs"; +import Page from "../../../components/Page"; +import List from "./List"; + + + +export default function Claims() { + + const pageTitle = 'Claim Request'; + return ( + + + + + {/* */} + + {/* */} + + ); +} diff --git a/frontend/dashboard/src/routes/index.tsx b/frontend/dashboard/src/routes/index.tsx index 3c0a4ec1..83df9b7d 100755 --- a/frontend/dashboard/src/routes/index.tsx +++ b/frontend/dashboard/src/routes/index.tsx @@ -310,6 +310,10 @@ export default function Router() { path: 'profile', element: , }, + { + path: 'cs-membership', + element: , + }, ], }, // { @@ -440,4 +444,7 @@ const Claims = Loadable(lazy(() => import('../pages/Claims/Index'))); const ClaimsCreate = Loadable(lazy(() => import('../pages/Claims/CreateUpdate'))); const ClaimShow = Loadable(lazy(() => import('../pages/Claims/Show'))); -const ClaimRequests = Loadable(lazy(() => import('../pages/ClaimRequests/Index'))); \ No newline at end of file +const ClaimRequests = Loadable(lazy(() => import('../pages/ClaimRequests/Index'))); + + +const Membership = Loadable(lazy(() => import('../pages/Service/Membership/index'))); \ No newline at end of file From d49ef7d99e16ee683b3132ac0329f9adb999200f Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Tue, 13 Jun 2023 13:31:35 +0700 Subject: [PATCH 04/13] update --- Modules/Internal/Http/Controllers/Api/CorporateController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Internal/Http/Controllers/Api/CorporateController.php b/Modules/Internal/Http/Controllers/Api/CorporateController.php index d5f46f4e..c095f8a4 100755 --- a/Modules/Internal/Http/Controllers/Api/CorporateController.php +++ b/Modules/Internal/Http/Controllers/Api/CorporateController.php @@ -80,7 +80,7 @@ class CorporateController extends Controller { $request->validate([ - 'code' => 'required|regex:/^[a-zA-Z0-9]+$/', + 'code' => 'required|regex:/^[a-zA-Z0-9_]+$/', 'name' => 'required', 'payor_id' => 'required', // 'logo' => 'required', From dbdeed0d5bb1729907cb2cf596f6f36fc5b259bb Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Tue, 13 Jun 2023 13:42:06 +0700 Subject: [PATCH 05/13] update --- Modules/Internal/Http/Controllers/Api/CorporateController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Internal/Http/Controllers/Api/CorporateController.php b/Modules/Internal/Http/Controllers/Api/CorporateController.php index c095f8a4..abc66eb0 100755 --- a/Modules/Internal/Http/Controllers/Api/CorporateController.php +++ b/Modules/Internal/Http/Controllers/Api/CorporateController.php @@ -303,7 +303,7 @@ class CorporateController extends Controller public function update(Request $request, $id) { $request->validate([ - 'code' => 'required|regex:/^[a-zA-Z0-9]+$/', + 'code' => 'required|regex:/^[a-zA-Z0-9_]+$/', 'payor_id' => 'required', 'name' => 'required', 'policy_code' => 'required_with:policy_id', From 554d0048e788b29e9269c4d60574e4bf64635ef4 Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Tue, 13 Jun 2023 14:15:01 +0700 Subject: [PATCH 06/13] update --- frontend/dashboard/src/pages/Corporates/Form.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/dashboard/src/pages/Corporates/Form.tsx b/frontend/dashboard/src/pages/Corporates/Form.tsx index 8ff872f7..014e1bfb 100755 --- a/frontend/dashboard/src/pages/Corporates/Form.tsx +++ b/frontend/dashboard/src/pages/Corporates/Form.tsx @@ -430,6 +430,10 @@ export default function CorporateForm({ isEdit, currentCorporate }: Props) { value: 'member_id', label: 'Member ID', }, + { + value: 'policy_code', + label: 'Policy Number', + }, { value: 'phone', label: 'Nomor Telepon', From 569d356b6b3e680acf25d9d0849dd7e0960990ef Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Wed, 14 Jun 2023 10:47:11 +0700 Subject: [PATCH 07/13] automatic linking --- .../Controllers/Api/CorporateController.php | 1 + app/Models/Corporate.php | 1 + app/Models/CorporateBenefit.php | 3 ++ ...oloumn_automatic_linking_to_corporates.php | 33 ++++++++++++++++++ ...mn_limit_free_tc_to_corporate_benefits.php | 33 ++++++++++++++++++ .../dashboard/src/pages/Corporates/Form.tsx | 4 +++ .../Corporate Plan & Benefit Import.xlsx | Bin 15571 -> 15653 bytes 7 files changed, 75 insertions(+) create mode 100644 database/migrations/2023_06_14_093535_add_coloumn_automatic_linking_to_corporates.php create mode 100644 database/migrations/2023_06_14_100127_add_coloumn_limit_free_tc_to_corporate_benefits.php diff --git a/Modules/Internal/Http/Controllers/Api/CorporateController.php b/Modules/Internal/Http/Controllers/Api/CorporateController.php index abc66eb0..b06476c9 100755 --- a/Modules/Internal/Http/Controllers/Api/CorporateController.php +++ b/Modules/Internal/Http/Controllers/Api/CorporateController.php @@ -673,6 +673,7 @@ class CorporateController extends Controller $row['prorate_lookup'], // "Prorate Lookup", $row['max_days_for_disability'], // "Max Days for Disability", $row['max_period_for_disability'], // "Max Periode of Disability", + $row['limit_free_tc'], // "Currency", $row['currency'], // "Currency", $row['show_benefit_item'], // "Show Benefit Item", $row['show_benefit_value'], // "Show Benefit Value", diff --git a/app/Models/Corporate.php b/app/Models/Corporate.php index c53c7aed..acf73614 100755 --- a/app/Models/Corporate.php +++ b/app/Models/Corporate.php @@ -23,6 +23,7 @@ class Corporate extends Model 'help_text', 'active', 'linking_rules', + 'automatic_linking' ]; protected $casts = [ diff --git a/app/Models/CorporateBenefit.php b/app/Models/CorporateBenefit.php index fadf3470..03b6e177 100755 --- a/app/Models/CorporateBenefit.php +++ b/app/Models/CorporateBenefit.php @@ -69,6 +69,7 @@ class CorporateBenefit extends Model 'show_benefit_item', 'show_benefit_value', 'active', + 'limit_free_tc', 'reason' ]; @@ -127,6 +128,7 @@ class CorporateBenefit extends Model "Prorate Lookup" => 'prorate_lookup', "Max Days for Disability" => 'max_days_for_disability', "Max Periode of Disability" => 'max_period_for_disability', + "Limit Free TC" => 'limit_free_tc', "Currency" => 'currency', "Show Benefit Item" => 'show_benefit_item', "Show Benefit Value" => 'show_benefit_value', @@ -187,6 +189,7 @@ class CorporateBenefit extends Model "Prorate Lookup", "Max Days for Disability", "Max Periode of Disability", + "Limit Free TC", "Currency", "Show Benefit Item", "Show Benefit Value", diff --git a/database/migrations/2023_06_14_093535_add_coloumn_automatic_linking_to_corporates.php b/database/migrations/2023_06_14_093535_add_coloumn_automatic_linking_to_corporates.php new file mode 100644 index 00000000..fd07fedd --- /dev/null +++ b/database/migrations/2023_06_14_093535_add_coloumn_automatic_linking_to_corporates.php @@ -0,0 +1,33 @@ +integer('automatic_linking')->after('active')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('corporates', function (Blueprint $table) { + $table->dropColumn('automatic_linking'); + }); + } +}; diff --git a/database/migrations/2023_06_14_100127_add_coloumn_limit_free_tc_to_corporate_benefits.php b/database/migrations/2023_06_14_100127_add_coloumn_limit_free_tc_to_corporate_benefits.php new file mode 100644 index 00000000..dd606dec --- /dev/null +++ b/database/migrations/2023_06_14_100127_add_coloumn_limit_free_tc_to_corporate_benefits.php @@ -0,0 +1,33 @@ +integer('limit_free_tc')->after('active')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('corporate_benefits', function (Blueprint $table) { + $table->dropColumn('limit_free_tc'); + }); + } +}; diff --git a/frontend/dashboard/src/pages/Corporates/Form.tsx b/frontend/dashboard/src/pages/Corporates/Form.tsx index 014e1bfb..33e2e0af 100755 --- a/frontend/dashboard/src/pages/Corporates/Form.tsx +++ b/frontend/dashboard/src/pages/Corporates/Form.tsx @@ -231,6 +231,7 @@ export default function CorporateForm({ isEdit, currentCorporate }: Props) { welcome_message: currentCorporate?.welcome_message || '', help_text: currentCorporate?.help_text || '', active: currentCorporate?.id ? currentCorporate?.active === 1 : true, + automatic_linking: currentCorporate?.id ? currentCorporate?.automatic_linking === 1 : true, policy_id: currentCorporate?.current_policy?.id || '', policy_code: currentCorporate?.current_policy?.code || '', policy_total_premi: currentCorporate?.current_policy?.total_premi || 0, @@ -303,6 +304,7 @@ export default function CorporateForm({ isEdit, currentCorporate }: Props) { formData.append('name', data.name); formData.append('code', data.code); formData.append('active', data.active ? '1' : '0'); + formData.append('automatic_linking', data.automatic_linking ? 1 : 0); formData.append('type', data.type); formData.append('welcome_message', data.welcome_message); formData.append('reason', data.reason); @@ -575,6 +577,8 @@ export default function CorporateForm({ isEdit, currentCorporate }: Props) { {JSON.stringify(values.active)} + {JSON.stringify(values.automatic_linking)} + Company Logo {/* t;oyAG;NWoK;NZO9a=in) zIa+|hj-1|3ZwvGsKcx#2-nUOYpiZZKK~hD7=ESi=`}zIK^G3gF>jLF)1Xrl4O1aT% zbsuj{PX|CF{wYrRNLASV+Y7!24D0&3$>hGQn2g>5E@Sd2o4FCBpAgTEo$YbrHJQ7C z2@ni*#4}mUGl!E~@Op6Er`L4U*l;Uy0r-V(%QYWgUAj42Z)+Xm`jhtRgn`te!ICaBs%n^7A3LIeMN_gv(ZJNh&hQGqF?yh%M?fZi z6Rz5tMO)(~Gf&MAvp!?R8Z{}eP*iz_)m=yz?!1djbLN{J3s`ih7NJG451iA>0y(d{+Rrf=7q~*H4ec>zjpkFHkBT~@g*upby zOOxP@YctSfs&agMf;0zxksV=huaSRukMR#IL zTLyI?bi;(bjY+p5$f?6>oHqvSb<2Hz9WK*wVS+iGxl52Az9w|)W2bW&t*{25C2;Hz z&&0(&UlWVcL7-QlMI{?qa2#AiBDHJ*_khre<|jpJLdiI~#zhf5zJZsHUUx(Ke}?n= zPosA=TOy3#ygmB0xtl0iI>YPP8Bgce7Hlk6m#J~smYZ>qBHTpfGjr@!JPK)0Kzip! zzM~aHr6IrHZpN<;+2ULfUt&j<0k3nS9M}lE5mSh|g~iqy;M@Y=O^WOdEhX%brxD0` zpof9lrYbrL)2o>CZeoHNIXWN`l|}lq9nFTuLNmeDo;3pACmAGfLLKdYL&JgtWGYmc zr-jsr;D3bfI2f86GRH4AfXn!oKSL|(!@j_yN2R~@)KcS^`uThlO~Tk3QS9Tn_~gug zw3n*DdFOiejhonu>haM^neDvt6_h(8m#PZxo<%le;%3}J&vA0x$wUQ(UMMzn+3Mu| zc`vE(e%?lW0{aZ^QVprFF-vYh@u99~X5XEC@4>cs|DD^PO~C0d2*VDU_9bW!Ft30cGD@&A-LH#klhgaj0Z;?v4D*SCw2S3;s)8w{ z6IR8#QOhXDHqhBb zv3hvFyFKnXDM+(zBgw<=%$!Mc8 z4rtYX$+Rccxn4W1)KjZxp*!SVHKfj{ghpOpG0qbE$S?mYdcI4k0hGKJ=Sk!$A5D_=zOKsiPc~uhw!ift9u*s!RdZN4m z*64b1=?|W+g;CkN3J%8WU0&s`kdL1I$DbLQd-+9@_k&p>19^)*S*v*2FQl31mTt?` zvqKj4=MNY^EJ@Wco6>}i1{y_hSP<~qRw}2!RZ208Tp<3baTmzq+_L9e^~f46TB*Tn zHc_!8N4eH)DCPz6(`VtRIC6|Lk)zv?a~}eamXNoGf7*d0hqvJvm=SV&TL4J~Rzoot80eEy~n~UzjQdcH!)QqD_yJ2>;r66$Af+Z(gtd~Rk_}mF9oA+gKc^p|18t6 zoH+Elyt<|)c0a%r=;B(u^piVeCSnN%!JPw-XNbMF zJ<&yWIzl|C^sst3ULS};ux$Dr&j47(PfMjA46Kr0SwCPRr7?ZI+|Qz*9@F_E<*|KL zu?%mPdXWV2dLvoGOAZ3vLMy@ZBV>2=7m94*5{AIT!96}cMc>EA#MF6pLMcKyNa!%? zi!)?d-nhiXO9!gDR*yD3(5e!)%&W&Ghq4g&3-O{!uvN8V(M+Jsp*?>KY-orA;_vR? z-1Knlcz9zqRes?mG1hT-qOWnYKDBgMB+=o0vj3@L!Nl0VLs7_(YVTb*Y;vTJ&`bN~ zK=t7p=j8lk@W{=DM{RpaWO0U_$67Q&g}S%8hwyPUL7Tehc5kkF>q>9Ddh13nFw?s) z(lXO~BobPS*A8jhdkCBE#@=ULE=%jV?|EGOHGRp{BG=H(;#cFKe|@*uc5Dy7C?+Vg zf)|2ta|;AA;v?vfiMD>BI8rtylpQHDvl1*!GKcR51S$Y90AVSLXvShd?Bi!hwncLq zB+UE2VrmW^NXEoq6`XlQClC!8O-2=jRGAeY=FQ-&0>a44py6=Kniyc=$sNf9^y>D6=bSyXTf ze(NM}qV)ZJ!+-jiaA%>R8R-J}TW~LY;}iFnGzOryj82;10x}0vavEfh^e_+1hr;WXIGD$w-h&HQ0vUwPnOFNGnnV3 zP3(ENH{d+pw>KGuN!do(=<5_|?j9L>uC}B%fGcU#e3z*bYv2X>7KKF(e2x2D^{F8` zCLZxZWhm`)>GhoKck@eqi`BY)l^vy(7Fi%eW0Gd{F&vmzZ1~)vXQ{K=`?9C49%Drr z2IlcQRKLA}3eN4>DLG$=uxV0}cu=37{x9*%BJ)?DVH)pZ?4z8J-%D^CCU$9Kf^i^0 z%{vm1aqWtsX%8DP&?R<^yF*pt($Y_bG&;InixMjYvR;nEVoNvZ{)v)YCJ@XEtwe~P1oMqh z!ScQ6yJ7uDu(OaC*&nvk`W(XWd*Jzs-^>-FRPb95AHk>6Jgu zhc&2etEPsBrDsc^SSb+b^}-bbKl(L*Y@Z{Cik+05dgud7r~<8XEg?8ZW^h3V|IlFl!ril3VRLib6B!b!~ z-F<5!1#d%$qQK0^E*TWa=7W^QQOp`V<@rt2y)5Yg%|}`K@;P}qss$2|(&$%m+*cdz zEO@2ExvclR^g44PQ=t%K-aKOD7%YR)Oq%W_Ayc}Frd?9kL8{`^Z5Ov7!oIl9?uIv4 zjd|*t=M^OCRe3H^agQhJUr*30x+(D3Yft%C-&pS;w_w8$F*!PJiS;6}XT$kQp}Qdv zhq758HqpCWTjic}SPPCquv$viKl3ifyP+w6Kok5Y>$aA^Pc_)QoK@!ULwxdE7(8z2`fECZixN$?{3960?>RxT% zQ??-KYoxo$21c3-nWvb!P&0&Wnr#~iw~j3&Z+Mqy0*3F{r0{zn%*NI?=1-LfgV7JT z+}-IsHqTTk(3j7(@Y|Rv+a7q;&IUVvpJ(JIuE-sK%;abIpxH_fOT3a>ofbXRRF5>oc^7eBLKd7E)A&?+%CirAqXd#e>K3))Cjx9s}#>szzW!j?i zydEIL4AQrPs6%g^YDG&Xm^fP`VFl^E_}a#+le;4arFWaW*l!{HRI!+fjI_jHX2UW% z0OQT873vVl%(~PV)A*GBiRPi{wsGWS@8E7`^0xMFXQX-X;9=x2I~MGJ3x){OXdGrY z%$?Lu3HvTkD!7tP&A-iD{4S9Z>hELhOq@+E0Ex2H;wx|bQf{@a=)g8tYlY4AQ#fJ4 zbkkiy%iudntd%tbnCg35(uWuG&W>f`)9h~Qf@uvp~A$&yvVSL3)+vLQ!1FmQBRJ%)U*z}Vq@8y%o?n$Kb zEJ}VB6}^N!$?UO(1V*!_5rwo67KvxnNE!t9vXjX!;Zr|@pWpUB%GVVJ# z$<9=fOwgJ-_B!arJUO#`fS9Yo908{PLp|pMGAbn*K(}>Nj_ctt}729(u2x=Y%w|GP9;)Fv6dzVWvEPQv7lB6`cZ>>L?NnF}i9MfgcW5 zZA7Q7F>bg18nV7JBXPjU$dm?rF3=Jn5+cwXs0ZA2GVT9f`Vy4arU}a}Rn$Idca5O~ zEj8BLS+$L@aSEM>%YGI3!^uZvuiWbD_e?sU3G9W?%g86PZu@t>{ReYWBJ$%ZHRFZPR~jyeq=yx@ZtDc~$dZU`kt-INO5x}x^CJK@-R9yLOp;Qdpz;3*S(k?oUbB{jKl|j5{NEAK6nOITzeaSIrNrZDM91BMX&?C*o{R!K zo4{AIv{jcCq^v;yi^2gVP31ok&ywD(&(ilp&^O%t_2untTu8gv{qe2hhUf*X?GE4E z^&W!#_>}VdKVKZ>db_b}{Dl5QY#owo>H+XjHX3ROI=nDLsOBXqUG>=Fvd}}ANdDJ| z8Ti5*ihM2y(GLyMA9`BjPkmux?j+7FhHZxnp0Is0>AYWi4F^UQefK6UhYv0T zS#oKE@sl1A7`;QicCHX(a$JI=9bUz3S2_CT8DO#Iu8=H`#K3Z$;>1*}Oue+F%eB5_ zS8Wl5qK^LtkN(_J;?FuA@5@M#!-J!@32xh zb!=-Yc^-V8)^_oAIrHA-TMv71YJ}?WcXe5n;dWQ!egtcT4S@*x(JySfZCMrgvrfx!Xb>$Yq)A@NG>DDB-qDv+ zIt0;>Nyof^)YcjAidxcgfa}WGO>uAr`dBij5ulWGT24=F8M>c3i?H5xgfu|>LN&c+ zbvZ`uVLF<>Iui16bHUY=^^+eOUU5F%>E4+h-;x$?5GCxHe{j2{Y*rnbVVW+qi6%%*&b*Vq37_t&P(Uvma2t38~j7baIyb zLOsHGU!m*`i$kj?T9eakNcpn_8c2z*d;nGOH|&df`$IPY4Z}+$^f+&wH3yS$%Qs zo$4e3GW`%H`?*UtLx3RglT-2oEG^rod|%dBqZB(VMC27Fw4*#9Kw-96sFwRV3_-wo@}JI@OO{LFG5X^%|C84_mrK}4RE@W{=52;UKI zl~oee66ujYs&5kC9*PuzUdMcKM4jKFV^rwjwdJHt7{4vDn#PQONhB)2lo`d|%^R=X z9zAY0Rw^d1SMg$un;@eXVkhHpCjS2NwGIp$sKF+khzw|r9ak=O_#^09PtQdBl&~2D63 zhli8ig55AKlHc|ewXRp+1X^NAuZ0fhrk*j725jmj%0?4n3`$RIDnGJnc0Go^!r(W? z-z4Nh?pM{<>ab|UPXnB#la>;lMdfe)u>)qtVCs{KhmD3pFax~DZo7#pp!zq8@72i@ z`t1l)yt7Y_>K@1*O<~!m2Xzl>?fZ4<<`2KfuUV9KSOFKB@}#~KNtf@cIUE+H)4SJp zc{rvN2Cyk0sbiE@Up?eK7g}@rZWz8OJJP*{6>P@?16A6$;P&OEZ?~4wxoaBSkZF=girYTOI@pMrZ$!%WA(sm* zQeODwGxtq-11*JMwSjgKv&0W5JTKVGWNE=D$zLhup`#9g0SZOr+wa@;z02=++~@n%A{6soV(9xy zg6Z?-kfRsrW0R4)Ex3MafDUg7Wtu=FGYM>ZT3she5Sy-N8YSQUNOsn8GEo&c`>5E>DN^cNj{UtT(DR|6b9Oo zm+;;B||Oqr~j|NRw#FEZU(?_n^8bV^`RIcWa$)(DBtxX5fhcH7tz5;B*&IW1mr z`Q{s)Hlk6$J zFLYljmt>U5`kp?2B$e-@jnwPQQIitT zWg?>58cr-kq&Fp?`r2-8K6uF2%*nW91_!TAd;&+lCAthJyIiCn&X1;g4Z;#@4DZdT zv)oH;C>9wHS6ct5#+*dwAVvQ!;DM1Z3Y?xHFo?SV-_Mhkj1!BdRZl{d4OoRy8!Bs8 zf)KK06OMIe$tz^42rap$bDG91dU{>vghpgUn~Ca;TTh5qg5p@F0gaH2z;&t@bwIrR zc&%u~+pS;lw8&w^d?_ogS({fdicb5-?NB-)2M3~h{?V^9Vm2zrWU>1(`j*v)x8+=@ zF~76d`};-~UpSNvJL@9==J$&?#o5nz@mTD} z{+%NAAZ*tr)4aXO4{ifBzE!g$b#{4?}N+I4J&ofC>jk`m_xH`{IO33$s!D zJ0Jbuyd4@LEC+uA9TjGz`0owfzgy{n;)>8x{P$x2pIli)3gLni+R4cPB@qTdzj6UE z|BbJpiz335&totCbe1HE00)QnZ}?O~;DPdriow5wx{8V+@CrbyM5$05gr2MX58Giy AsQ>@~ delta 8601 zcmZ{K1ymi+lJ~{kF7EDbL4!NNU4jL7cNiQl61ZI4JwR}ROR%5;f<$l+u7Tj;Bmej9 zd%Jti_RN{n^Q)?^s;=qj?wTnNoC|0;Lk5JoZ`C^yKp7vGdl_;}hi zKiGH}GHOf@{Tz!u-EqCluCc0X85IhVR0nBz5NdZT8%%#j{WQEkj+dZ@DriFs5} z=iC0n6jRk%ggFuM#?)26rVDk$RSc3=fCMYD#j*YdxBFC%Jg;5EUUZ>3E!45bDMkD# z(ppr9l}}r{Qg4VL30@$oSa>!8&FJT^)bfS{{}8*ln*FgUax{d|M-Dw*z_Vme#vMuD zsp_e+*6~Q5u5V}<<*vgzRpvM>S_<1#c@Orwk(P~DB^%j(Lo$>@YNK@Vcx)|M)nmIV zj4V)`pSr{M?x}$qttAkHK&U3?bgdf2bM};@Rckiv^l(QE^%tdx)EC+oEfbhi9NURo z082>sV-rPt>7Rk$pU>?#fGk&_ML==TXw7u7v{;N<_(yK?#|V=B+hUq>mBnDkJy1tV z_xtkevIG5w<4lgg;`2|gk`=vx*Z#L&$No;Q5UWeWZfi4~q=WEtB?<&lk)>n-&{ ztl^t=b_clhvUhig9d8@-y?g!CMOOHIS}8lfI&|sSb&JtQ=lbATcEeoBPJ5!0Pno*4q?o0Zazw8?;TlV)_<>8@u#zO;ce78-3wwU?8S{F*n z8HXsRhL|sF(=?l!udB&yc>${Cdz6RUHpvB)(Ae|NPP^s{zlygbG<%(|IMg3Ii#ZX! zFHZERzf&9vy{^R^mHi{is(&qOdB+Wcc?b|RFQQw)quZR3RzyFKZ**>$0u~Km;x@-a zFtP@{!G^A74rNvl*UF*_gbyKX@~!i#t$Z~GXAZ5%$DK|!=HjEM$@pfs-hHgNEqqg0 zm^?ROkgS%!JW*%R`5HgxCj-=_ysf(DHLTvej+=;KUv0s4!nn;-t-xBt>~&AD$8Awp zS15P6a$oWBcWbxLmgzPjEtzV-!n->fllG>$*E(c3ZC#Uhvdj~;T~$^58N2e|(yAGm zWA%tPi~Yp(#@aeXUo;6a!_>c(hd98GP9E)`WO_cG-^E}NUcTeEx0jg`NaxB? z(SUkqxE?|=Zbnh^o-Cm)yBxyO?ALX!KDtYSx9K>N#5~&fsrSU)zjIAryAtaDm}1-C zc2zT*`+7*OpK^3Ci|1XsEh{+#VHGO0;bf<$MQ4P}#Nv3`t&Vn@!A{R&7=25x@_T;0 z3}%X@>FF9oW@Rru+1Z~1B!7Y)HHe8ATneUMje4XbkX8#nJrQcQhje3okda1WkyG-P8b)_kNyAQH*u91_=$G~90k zCCcMm)_!~g&!b07sgNk4`s)`CrNoA27fwFH7vw zV(3crZ#L!JMB+z{0p2=iG9xO64E2=gK~bXM_<3Vq*P=5%`uceU429wydG&q7`DM5J zFH|v=e8~rVt4I)=0z+fDjOe6C??ufwxgc4K+Ow$je!NbOQTE(3HY?_+hQ)6iI*=15 zcXb?;$*Aviy^?&}U*pe<;v|2kn7nZKAW%SxnDvO{zO4T<4yY$=AF^|{c?&WLmuLie zA^t!=T9UHdYwo+@;i2^-GPiwuWPC2^6mc_vKYuF*q3_neQNvZERP?Xy`;@P!GlFNv zj!dq^@j-5s##zP&^Zbab_McZwJt zOCDhBzspTvJ*v1|$$m(9UD5XLKKJT)-!?=GUqfVOZ-|uHIR7kf&wG=UIWXUU3WAXD z-wzoPJx|4t6+Mr~R}?+Z!G{&%^@8md9#M?D_7GfD3Tqa>-mUE#z{0`!z{6{ybyzz~ z9N!TUsk(!WVHl6xI$jif6fF}N-e6iuHW*Bdq!sf>H^^FxiGdq~DjuO3#xo=*vwlG8 z5T~(OLNk750o_Q`k3m9}MWm8uks`68qjkSZ6c}Rm(89I3@&CVwCUjc3JHbHvXn+d) zE_@U}d@>CIO&%{4w>?lnbPLwb31x}%oLVC#3J%Yj9q#~bB=*sxBB9#7VnD1bfKJ^o zxT-Rsm*gcAi)c9Pn1;D4{9`u%zs$A^2DdSSk+h~J|IqDswKvtt+2fzf!9$@+ben%D zVHcNjTqMEu!dWjsn{TTHc0)0^#M^Kuc1JmgaBJ=uIWhhSv} zS81F-T``zdl~~)GZNf9s>K{v`pDm4a+&BB{1RJ!;TS)$06NeDXv!$H>Uy$g2mW&in zgF%3DyYWYN8$j?AJWPQw23x9t;nOT82$UxY0+E1VOQK{zS*Ds>sS<9? zDf=-XwTy6y^25+Wp({Jd*7g0@siW+5-$eKinZvhV?4R!SE#qy|FlUkj5au#`4O%po&X(42gbsP!LuO9m7h7$~d&!AIJMXVDmkgF( zc17}rfUs+qVq$wGT{nLK=_qpqTuq8|1NlA2IVG`eD>_GS^I3fdGjl{Ulv6*cX|-%D zSk7^tH{6HlI*C%f|tNA73$&d$lIMVCS9v763tt#!r@WkfUE`lo@erPoO8 ziAG5I3vPpJLqD%2b-}}aZ3xn9?7t3dMWtw{YeR;~%{Qdc{DpOL!854nBxav`st#TJ z>%%>-Pc4EzF0Pxn14+zF9Tke=m=sS7NMg<0>OO$mAyEAq2+Ns)s;8$oC|&<)syBai z<-Hf1dv*&Nv%UVa&MzO`uFz;5# zm7ynB|Fn~<1ma2Gvxg#Kln^0JVj6P2rXJAqH>0gB4@neGFPKXd$xo$`=had;4s@W= zQOqwLuO(J)C^=J$TU&+bidh!77F#-TP1O31jKHZ z?*3%&e39J-jDb7ghdQMO??F$ z6RZ|-Z+Dff45vvli1QR7mXC8C86D(%`-WolhG*>3_=7CLHWv*uLp<>_h}W6XV!2G- zTAG*+Kw0~vHhvF_c+W#RQ{a`xC7%HcqraAE<6K1)cRYKO3dEeCcel|_gfUbrMPrI{ zJncqaderpnkSjklD1%$T#{xuuI6 zWzJZR(w9M@IGd4QO>fljp!6W;9@YhJjyM)h zZe0A_-@m=QdGH7PpHAv?uSZHaT)6=8-kwpQXYu=|$+ey1t=q5MPk9AgyYJejN38D0 zT+NrMrxJuY4&F3!yKV!fQK9W?R4=GcaB{u0y=&TCYRdc=YSZ%!n_`K{D3k$*`im<1 zs+w(n#ir)e?{BxisYv)S1hL-^K$nfiGT)Z9rq)xSm5GUhmHe#6D9i4z*gACFE}tt& zUW7{5CW`R;p}R^nD=5#Eskex;kE>9rPDx>~lF+lnwPMD6%8ABbc;OlDUl=Ca#F~=$ zmg444)D#mI*$fo~7%1}6YiKvukF2psQS4ZqP(_4I7No}ejV6$-u&2ykWHmQuVf{RE zwv7}Kd%s{YHRbvu%gb2(k#qUE?)#Tq@Jv3kOArymShSj&ifMg@N;sb(`)5e?FO=~Y zs`v{zV2Jol6||;!?H)OFe6oArTnX$DrJm%eakk<5?AADT^w{=5J@nV>Nnh@Qfczi#|eXo z%)*nSK%V3`{l|6WV9&G+)&h73fxQ#>rPB1dV;3fjTbP!Q4y9}|9pEcVrS0l$h+Gc1%fFZh z58UOA5UKFZ#O$86%7US!M+>f`N=auki5!Rad>BiS{*beND{Y<(JhKW^e*L0b#(F+1 z7?a|^wO9hZ$}lihIlzI~yUoA0XPZs)-@21g>h=hq84a9x&%-DPk^3Oz$SXkTpwjID zrDa%cAGf#e*-6h%6_ux3B)=lfi5Fm8t1$H>QHvVlTA72)6hYN!>L1ePrNJ{AS$d^~ zJo9mTqR=|}YQQ_Z4$Ng5Qjjf6vVWA?RJQ=ZxT&cC<#uls^wJX?8LPssk6sU0ehLnF^$03g zLJH>d{x`1CH!%V9yVv?bKe?8Dn*-POecqpxZ0R#Uek)l#Y74CWw%Pmrq)U>b$qriK zxh+6h0)NiOYrIUIIXs9Me1|z}X9|rwxf*qtKcS$@rlweJQJVewR<>2}S8Fhkb!)e2w4c_q}eaVnyMrPgjCtz2u<* z`L93Lt?s8eu5C|)q&Ur(wsd^F%wl+)y!XQ%lo)AfDQh%jA|LB&t^-@6f^JPJLKZSi ztewW!u|^qIb5MnqD;a26N^2s$GP8dmi2Wipk}kt!HPXTg-`JUG(!h;mFn@&!XCyl+ zz}nJ92@bQCCleqNEdqn}X_Id@c;i+HbP(GWd&5R9V6ik@07_CsH=+U4?6=>hQK%?Q z>XidZyi<|#>p`F-+K=mAW3;U18h=V{CE=L#B&-P=N!XpIhlogUVwj~`!z>rmu%29< zFWPKBK-3;|IH)P8RdyP2Xg9qDtPAp2_cQk@gj=a{}>Y&U0M;=F56$6-a^rNO%-m6NH?MzO^7 zu!@&z9FX{YDWm-i@YsscC@32>JU(U z%J=H1Hgt%E39T7HIy)=P>?;o*(|VO}GY*GP!LPoadB9|{$(I&n3Q>yW9msHzk=AXp zl_i&gdz2NJWCyz^Mzd0>jer|3PbkUxTY*}!c<-S@T@~LC>!;~ag9KhayETtLo;CVJ z-yN9DhL3}4IZ~1xTvjKqOvG(OpN3A41HW%Bx#vwWZ>iR?8aQjHOe|FViTk+Y+}f|Y zNh+g99}Qe@dxbVq^gVv32CVEnY0UAoIVj0~o8{I?)Xs^urqIo6%-e{U)!#MG?o0Bf zCgq{fKEzdAzM9moelha(8+}2^E5jv7dx17NCYrdzByEG~)+n*Z;Tq<}yOeJJc)P8J z7mbr@GEvrPPR@q?ir8k|1&h)$P+4pajda!e?BPc`>nwfS2cdtmb4~O!2*AW+>pSRk z0-p4F2ZQym1iY7bfU}L)-}L)u{Uz6}7q}tZUjUk$x;^kj3zl+%4+R{CGci&sd`LOt zI8z33cuDgG(c?8X>)0%v?>G0bl7P4|ynvtXQ=e1DV)flGWqbzHUU~QvTgcfIt1$Vo z{`ng*ao5(_+A)g+JJu$nWKCNCL6Ca$rtp zGQrkea#ui~kMW``*2huLyGp0-N3SK*%NFaq($i~<=&k6w%mgG@6&R#?u~-uyY3??T zYJ2e!pCHilQohJZkdz#)e=!1FmHm99>G_titULlyaDJPOvwa5zdD_<AtEzAfY{Q#Q{2biNT!P$}mk9~`2PVut$?Sf@5^tx{$-{t~zWZ^?724^-MoA7Oea)%D zBig5G_4DShi~34ba$KL^@qPMI;F6Cei~FA1xAB1KMU2h|>>&8Ab~K`vuV_!;D%_iV zdZgc$LUcZp$*q(N3STC_ak&iNDo*)oe{ogLkUHG2u&)=m$2M`uw;oeuh-+KQV5HB<@Z&Es&7 z!R>5hxGWp7Rti58^7{zS$-QkPY|YttiuM4BkXPrzz@Pk#BN`gFdp)3m*oHzbe&pP4 z>2a{5N2EwbQs_&~1~H|8>iJso;aW!Si1-Cjf8fUCiNg`+*41!=9nRq-lR2{1+1d0q z<@H;GydYm0*4Spf!HwE?_k+K;3l&V_nPG2xyRO52r`_}Apipn|oL$`0T-tgyoe}-I z|1q(}!@c;~?r=mnnR$7O+&n0pI%cJ7CN;sY5$j@2dFm8ys#giqC1+hsHWY)@rplXW_n(G?gE?Dy6lLX)F z4>~p|mvYPbnxA*0Rf4Y6LNLFgIK|Y?=S1dHs(6afl3COEg!NDRMj#e&wr67}YVY#v z!frGvawhEz)o|i|WS=wFyIpGhTC6Wd#oQ5}v#tV24j2X__H{ZG0O{0nT_pZXom!b5 z{ZZ|F+8jC@^Md>yY>Z)f5QHPTIB41oNfZ4~>5zTbFE^fidx`ukhr|PB4R>(PK0{4w z&awQI9Kg-i0!3nTM|=OWeW`}C><5pH#V}@ssc3R9@jmRr#I!`4gw<;1nHt)CVfIs011xskdxf-c^IEzhbGM%u<=;H%+9JNk1YR~jPAA-JJ8)={#0C!=EH^CELaal8<6uJqoCLbe%CBJCtPIG; zb;nMb$@0u^$fy$sF-!P<%1U>$ba^fFULI|feUg`~8#i54|i6+96W zWf@oep_vK*n@?#$0RejY!Y$0xUO3t!JYJ_)zhgF3kCH^GGyZ(~Du+=QEpAp2j~{t1 z$H3C!ifTilT_#-Bb=0~{83>^D9y*Pfnzjgi74tIln{@oI0dW1XT+9 z2Yf&diP8#3oc~2#CQS@rBTA|}#E@jdhZY0f`99d8G8nkj7`T+!78(Zm{N0Jd0zm=0 z5iiq{UhR(bJBM1h?8o%p7=pT%gR~d7oP9L8j&LmQaeH4tN0!UL80Tw8L z(TvEAiGbK?)o$EOz$X9)q}k4;w5rY@jWaTRv+tG_Uiu<~RJxE8U!ccY{NJV+;*Ej!G&Ra@_ zm+rXB2_=kx#Q2Lv#7IEKR=q3e-D4qf%ywCo-j7A$IqB;(&QB5)OXT&#R%_Qr=9pwN zk|P=kOZS%Zy4fprh(&>Ig&Fq^aqmspQVfMy#r3|(z zrU_R8;}#dC_#1eM=O;o69t6Vs56g3{ffp7n{t}K6HYom*apT25|5v!!cw1UqdRuC$ UA|d}}#(qA^pJx*ik-vBU51tPyYybcN From 4c59fd21b54e0929f9c3b25f788bc99c9d630a7a Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Wed, 14 Jun 2023 11:10:04 +0700 Subject: [PATCH 08/13] update --- frontend/dashboard/src/pages/Corporates/Benefit/List.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/dashboard/src/pages/Corporates/Benefit/List.tsx b/frontend/dashboard/src/pages/Corporates/Benefit/List.tsx index 36629ed9..46f9c5be 100755 --- a/frontend/dashboard/src/pages/Corporates/Benefit/List.tsx +++ b/frontend/dashboard/src/pages/Corporates/Benefit/List.tsx @@ -710,6 +710,12 @@ export default function PlanList() { : {row.max_period_for_disability ? row.max_period_for_disability : '-'} + + Limit Free TC + + + : {row.limit_free_tc ? row.limit_free_tc : '-'} + Currency From 914b9b0c94218202513f1fc1428a59ab9e14c748 Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Wed, 14 Jun 2023 14:35:37 +0700 Subject: [PATCH 09/13] update --- .../Api/OLDLMS/MembershipController.php | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/app/Http/Controllers/Api/OLDLMS/MembershipController.php b/app/Http/Controllers/Api/OLDLMS/MembershipController.php index 0b574f10..ab63e636 100755 --- a/app/Http/Controllers/Api/OLDLMS/MembershipController.php +++ b/app/Http/Controllers/Api/OLDLMS/MembershipController.php @@ -261,6 +261,27 @@ class MembershipController extends Controller return Helper::responseJson(data: MemberResource::make($member)); } + public function automaticLinking(Request $request) + { + $member = Member::query() + ->when(in_array('email', $linkingRulesArr), function($q) use ($request) { + $q->where('email', $request->email); + }) + ->with([ + 'memberPlans' => function ($memberPlan) { + $memberPlan->latest(); + }, + ]) + + ->first(); + + if ($member) { + $message = $member->currentPolicy->corporate->welcome_message; + return Helper::responseJson(data: MemberResource::make($member), message: $message); + } + + } + public function removeInsurance($email) { $user = User::where('sEmail', $email)->firstOrFail(); From b55034983541c540811f216d193708957536ee8b Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Thu, 15 Jun 2023 14:55:23 +0700 Subject: [PATCH 10/13] update --- ...842_add_payment_type_to_claim_requests.php | 34 ------------------ ...451_add_service_code_to_claim_requests.php | 36 ------------------- 2 files changed, 70 deletions(-) delete mode 100644 database/migrations/2023_06_09_150842_add_payment_type_to_claim_requests.php delete mode 100644 database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php diff --git a/database/migrations/2023_06_09_150842_add_payment_type_to_claim_requests.php b/database/migrations/2023_06_09_150842_add_payment_type_to_claim_requests.php deleted file mode 100644 index bf80cb4d..00000000 --- a/database/migrations/2023_06_09_150842_add_payment_type_to_claim_requests.php +++ /dev/null @@ -1,34 +0,0 @@ -string('payment_type')->after('member_id')->nullable(); - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::table('claim_requests', function (Blueprint $table) { - // - $table->dropColumn('payment_type'); - }); - } -}; diff --git a/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php b/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php deleted file mode 100644 index ce185355..00000000 --- a/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php +++ /dev/null @@ -1,36 +0,0 @@ -string('service_code')->after('payment_type')->nullable(); - $table->unsignedBigInteger('policy_id')->after('service_code')->nullable(); - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::table('claim_requests', function (Blueprint $table) { - // - $table->dropColumn('service_code'); - $table->dropColumn('policy_id'); - }); - } -}; From ff89f2ac8b4a3aa88597a07e2cf072215c09ace0 Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Mon, 19 Jun 2023 10:50:29 +0700 Subject: [PATCH 11/13] update aso --- .../Internal/Services/CorporateService.php | 13 +++++--- ...ta_limit_free_tc_to_corporate_benefits.php | 32 +++++++++++++++++++ 2 files changed, 41 insertions(+), 4 deletions(-) create mode 100644 database/migrations/2023_06_19_102558_change_type_data_limit_free_tc_to_corporate_benefits.php diff --git a/Modules/Internal/Services/CorporateService.php b/Modules/Internal/Services/CorporateService.php index ec5f18f8..80fdd035 100755 --- a/Modules/Internal/Services/CorporateService.php +++ b/Modules/Internal/Services/CorporateService.php @@ -218,19 +218,24 @@ class CorporateService if (!empty($row['budget']) && !in_array($budget_aso)) { throw new ImportRowException(__('plan.MAX_FREQUENCY'), 0, null, $row); } + + // if (empty($row['limit_free_tc'])){ + // throw new ImportRowException(__('plan.REQUIRED', [ + // 'attribute' => 'Limit Free TC' + // ]), 0, null, $row); + // } } public function handleBenefitRow(Corporate $corporate, $row) { try { + // $row['limit_free_tc'] = 0; $benefit_data = $row; $this->validateBenefitRow($benefit_data, $corporate->id); $benefit_data["corporate_id"] = $corporate->id; $plan = $corporate->plans() ->where('corporate_plan_id', $benefit_data['plan_code']) ->first(); - - // $corporate->plans->where('corporate_plan_id', $benefit_data['plan_code'])->first(); $benefit_data['plan_code'] = $plan->id; $benefit = Benefit::updateOrCreate([ @@ -241,10 +246,10 @@ class CorporateService 'service_code' => $plan->service_code, 'description' => $benefit_data['description'], ]); - $corporateBenefit = $corporate->corporateBenefits()->updateOrCreate([ 'benefit_id' => $benefit->id, - 'plan_id' => $plan->id + 'plan_id' => $plan->id, + 'corporate_id' => $corporate->id, ], $benefit_data); return $corporateBenefit; diff --git a/database/migrations/2023_06_19_102558_change_type_data_limit_free_tc_to_corporate_benefits.php b/database/migrations/2023_06_19_102558_change_type_data_limit_free_tc_to_corporate_benefits.php new file mode 100644 index 00000000..862d7e5f --- /dev/null +++ b/database/migrations/2023_06_19_102558_change_type_data_limit_free_tc_to_corporate_benefits.php @@ -0,0 +1,32 @@ +string('limit_free_tc', 255)->nullable()->default(null)->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('corporate_benefits', function (Blueprint $table) { + $table->integer('limit_free_tc')->change(); + }); + } +}; From 12f8828f9f8665a47d32ac013a00c82a7268d7fc Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Mon, 3 Jul 2023 11:32:41 +0700 Subject: [PATCH 12/13] env local --- .env-example | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 .env-example diff --git a/.env-example b/.env-example new file mode 100644 index 00000000..7b90eaa0 --- /dev/null +++ b/.env-example @@ -0,0 +1,83 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY=base64:axfmcy3qUMuukm8emaW6G0x/7SS3wWcLITXo+YAyCps= +APP_DEBUG=true +APP_URL=http://localhost:8000 + +LOG_CHANNEL=stack +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=aso_two +DB_USERNAME=mysql +DB_PASSWORD=password + +OLDLMS_DB_CONNECTION=mysql +OLDLMS_DB_HOST=127.0.0.1 +OLDLMS_DB_PORT=3306 +OLDLMS_DB_DATABASE=linksehat +OLDLMS_DB_USERNAME=mysql +OLDLMS_DB_PASSWORD=password + +BROADCAST_DRIVER=pusher +CACHE_DRIVER=file +FILESYSTEM_DISK=local +QUEUE_CONNECTION=sync +SESSION_DRIVER=file +SESSION_LIFETIME=120 + +MEMCACHED_HOST=127.0.0.1 + +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +#MAIL_DRIVER=smtp +#MAIL_HOST=smtp.gmail.com +#MAIL_PORT=587 +#MAIL_USERNAME=tumbaltumbal11@gmail.com +#MAIL_PASSWORD="pxrrksphndlvkgca" + +#MAIL_USERNAME=noreply@primayahospital.com +#MAIL_PASSWORD="eqplciswxchsaart" + +MAIL_MAILER=smtp +MAIL_HOST=smtp.mailtrap.io +MAIL_PORT=2525 +MAIL_USERNAME=b488d13fde4349 +MAIL_PASSWORD=63b64761d270ba +MAIL_ENCRYPTION=tls + +MAIL_ENCRYPTION=TLS +MAIL_FROM_ADDRESS="hello@example.com" +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false + + +PUSHER_APP_ID="app-id" +PUSHER_APP_KEY="app-key" +PUSHER_APP_SECRET="app-secret" +PUSHER_HOST=localhost +PUSHER_PORT=6001 +PUSHER_SCHEME=http +# PUSHER_APP_CLUSTER=mt1 + +MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" +MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" + +LMS_API_URL="http://lmsapi.primaya.id" + +DUITKU_MERCHANT_KEY=c61af0a92d8e9b7fff00deecc975d84d +DUITKU_MERCHANT_CODE=D11810 +DUITKU_IS_SANDBOX=TRUE + +WKHTML_PDF_BINARY=/var/www/aso/vendor/h4cc/wkhtmltopdf-amd64/bin/wkhtmltopdf-amd64 +WKHTML_IMG_BINARY= \ No newline at end of file From 46416cb6acba3ac8f88e38652072eb52f3efd17d Mon Sep 17 00:00:00 2001 From: Ivan Julian Date: Mon, 3 Jul 2023 11:39:08 +0700 Subject: [PATCH 13/13] 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