main #2

Merged
Joko merged 3 commits from main into production 2025-12-16 02:39:30 +00:00
2 changed files with 22 additions and 0 deletions
Showing only changes of commit fd7d268e8a - Show all commits

View File

@ -220,6 +220,8 @@ class SoalController extends Controller
}
});
return redirect()->route('soal.thankyou')
->with('success', 'Jawaban berhasil disimpan.');
}

View File

@ -130,6 +130,26 @@ return [
'sslmode' => 'prefer',
'timezone' => env('APP_TIMEZONE', 'utc' ),
],
'dbSmartV1' => [
'driver' => 'pgsql',
'url' => env('DB_URL'),
'host' => env('DB_HOST_KARYAWAN', '127.0.0.1'),
'port' => env('DB_PORT_KARYAWAN', '3306'),
'database' => env('DB_DATABASE_KARYAWAN', 'laravel'),
'username' => env('DB_USERNAME_KARYAWAN', 'root'),
'password' => env('DB_PASSWORD_KARYAWAN', ''),
'charset' => env('DB_CHARSET', 'utf8'),
'prefix' => '',
'prefix_indexes' => true,
'search_path' => 'public',
'sslmode' => 'prefer',
'prefix' => '',
'prefix_indexes' => true,
'search_path' => 'public',
'sslmode' => 'prefer',
'timezone' => env('APP_TIMEZONE', 'utc' ),
],
],
/*