diff --git a/config/onewaysms.php b/config/onewaysms.php index 0b908a1..58d7008 100644 --- a/config/onewaysms.php +++ b/config/onewaysms.php @@ -2,7 +2,7 @@ return [ 'message' => 'KoPKB : %s is your TAC to log in to your myKoPKB Member account. It will expire in 5 minutes.', - 'minutes' => 5 + 'minutes' => 3 ]; ?> \ No newline at end of file diff --git a/database/migrations/2024_04_08_092054_add_no_calon_to_nominee_table.php b/database/migrations/2024_04_08_092054_add_no_calon_to_nominee_table.php new file mode 100644 index 0000000..0f52d87 --- /dev/null +++ b/database/migrations/2024_04_08_092054_add_no_calon_to_nominee_table.php @@ -0,0 +1,35 @@ +string('no_calon', 60)->nullable(); + + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('nominee', function (Blueprint $table) { + // + $table->dropColumn('no_calon'); + }); + } +} diff --git a/resources/assets/js/components/demo/voter/home/index.vue b/resources/assets/js/components/demo/voter/home/index.vue index edac96e..013357f 100644 --- a/resources/assets/js/components/demo/voter/home/index.vue +++ b/resources/assets/js/components/demo/voter/home/index.vue @@ -1,4 +1,5 @@