AI Analysis: show match score on index and dashboard

This commit is contained in:
jeremy bayse
2026-03-22 22:38:59 +01:00
parent 26d723f239
commit 4459cbde69
3 changed files with 35 additions and 1 deletions

View File

@@ -41,7 +41,8 @@ Route::get('/dashboard', function () {
'name' => $candidate->user->name,
'email' => $candidate->user->email,
'status' => $candidate->status,
'weighted_score' => $candidate->weighted_score
'weighted_score' => $candidate->weighted_score,
'ai_analysis' => $candidate->ai_analysis
];
})
->values()