correct price in car export

master
Nadim Salloum 2022-12-30 13:04:01 +01:00
parent 20038797f1
commit b908edd99e
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ class CarController extends Controller
'known_damage' => $car->known_damage,
'seller' => $contract ? $contract->contact->full_title : null,
'buy_date' => $contract ? $contract->date_formatted : null,
'price' => $contract ? $contract->price : null,
'price' => $contract ? $contract->price_for_excel : null,
];
});