From e3a64c6ba3d1eea81f586af22ab388c7eba1697c Mon Sep 17 00:00:00 2001 From: Russ Long Date: Mon, 20 Apr 2026 13:08:15 -0400 Subject: [PATCH] fix score display --- app/Filament/Resources/CarShowWinnerResource.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Filament/Resources/CarShowWinnerResource.php b/app/Filament/Resources/CarShowWinnerResource.php index b4d1bd3..7d177d1 100644 --- a/app/Filament/Resources/CarShowWinnerResource.php +++ b/app/Filament/Resources/CarShowWinnerResource.php @@ -46,7 +46,7 @@ class CarShowWinnerResource extends Resource ->columns([ TextColumn::make('awardCategory.category_name')->label('Category'), TextColumn::make('awardVehicle.owner')->label('Vehicle Number'), - TextColumn::make('awardVehicle.total_score')->label('Total Score'), + TextColumn::make('total_score')->label('Total Score'), TextColumn::make('awardVehicle.year')->label('Year'), TextColumn::make('awardVehicle.make')->label('Make'), TextColumn::make('awardVehicle.model')->label('Model'),