From 65e5eb6bf331f64247e57aeea914fee06ea27db1 Mon Sep 17 00:00:00 2001 From: Djery-Tom Date: Wed, 9 Feb 2022 14:05:16 +0100 Subject: [PATCH] Fix bugs v4 --- app/Http/Controllers/HealthCareSheetController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/HealthCareSheetController.php b/app/Http/Controllers/HealthCareSheetController.php index d7d091c..0cc504f 100755 --- a/app/Http/Controllers/HealthCareSheetController.php +++ b/app/Http/Controllers/HealthCareSheetController.php @@ -920,7 +920,7 @@ class HealthCareSheetController extends Controller $healthCareSheet->type = HealthCareSheetType::EXECUTION; $healthCareSheet->state = InsuranceSubscriptionState::UNDER_VALIDATION; $healthCareSheet->prescription_sheet_id = $sheet->id; - $healthCareSheet->created_at = $healthCareSheet->update_at = $datetime; + $healthCareSheet->created_at = $healthCareSheet->updated_at = $datetime; $healthCareSheet->push(); $insurance = $sheet->insurance;