From 5779a632216b678ef86c6c5577fcf0cd44fd331c Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 31 Oct 2023 12:28:57 +0000 Subject: [PATCH] Undoing that thing I just did :( Signed-off-by: snipe --- app/Models/License.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Models/License.php b/app/Models/License.php index ba00b7d0d4..2ea10939fa 100755 --- a/app/Models/License.php +++ b/app/Models/License.php @@ -34,9 +34,9 @@ class License extends Depreciable protected $casts = [ - 'purchase_date' => 'date:Y-m-d', - 'expiration_date' => 'date:Y-m-d', - 'termination_date' => 'date:Y-m-d', + 'purchase_date' => 'date', + 'expiration_date' => 'date', + 'termination_date' => 'date', 'category_id' => 'integer', 'company_id' => 'integer', ];