From 4459cbde69af09eaf2a369574e23e2dd142b9d03 Mon Sep 17 00:00:00 2001 From: jeremy bayse Date: Sun, 22 Mar 2026 22:38:59 +0100 Subject: [PATCH] AI Analysis: show match score on index and dashboard --- resources/js/Pages/Admin/Candidates/Index.vue | 17 +++++++++++++++++ resources/js/Pages/Dashboard.vue | 16 ++++++++++++++++ routes/web.php | 3 ++- 3 files changed, 35 insertions(+), 1 deletion(-) diff --git a/resources/js/Pages/Admin/Candidates/Index.vue b/resources/js/Pages/Admin/Candidates/Index.vue index ae21f4c..daca6b5 100644 --- a/resources/js/Pages/Admin/Candidates/Index.vue +++ b/resources/js/Pages/Admin/Candidates/Index.vue @@ -144,6 +144,7 @@ const sortedCandidates = computed(() => { + Adéquation IA Documents Actions @@ -191,6 +192,22 @@ const sortedCandidates = computed(() => { + +
+
+ {{ candidate.ai_analysis.match_score }}% +
+ {{ candidate.ai_analysis.verdict }} +
+ Non analysé +
+ +
+
+ {{ candidate.ai_analysis.match_score }}% +
+
+ Non analysé + $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()