diff --git a/database/migrations/2024_02_12_083746_add_link_document_to_members_table.php b/database/migrations/2024_02_12_083746_add_link_document_to_members_table.php
new file mode 100644
index 00000000..f71b318b
--- /dev/null
+++ b/database/migrations/2024_02_12_083746_add_link_document_to_members_table.php
@@ -0,0 +1,32 @@
+string('link_document')->after('reason')->nullable()->default(null);
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::table('members', function (Blueprint $table) {
+ $table->dropColumn('link_document');
+ });
+ }
+};
diff --git a/frontend/dashboard/src/pages/CustomerService/FinalLog/Detail.tsx b/frontend/dashboard/src/pages/CustomerService/FinalLog/Detail.tsx
index 1231aa24..e770733a 100644
--- a/frontend/dashboard/src/pages/CustomerService/FinalLog/Detail.tsx
+++ b/frontend/dashboard/src/pages/CustomerService/FinalLog/Detail.tsx
@@ -200,7 +200,7 @@ export default function Detail() {
Submission Date
- {requestLog?.approved_final_log_at ? fDateTimesecond(requestLog?.approved_final_log_at) : '-'}
+ {requestLog?.submission_date ? fDateTimesecond(requestLog?.submission_date) : '-'}