diff --git a/app/Models/Banking/Reconciliation.php b/app/Models/Banking/Reconciliation.php index 8157c33f724..835d7733f4f 100644 --- a/app/Models/Banking/Reconciliation.php +++ b/app/Models/Banking/Reconciliation.php @@ -11,8 +11,6 @@ class Reconciliation extends Model protected $table = 'reconciliations'; - protected $dates = ['deleted_at', 'started_at', 'ended_at']; - /** * Attributes that should be mass-assignable. * @@ -30,6 +28,8 @@ class Reconciliation extends Model 'reconciled' => 'boolean', 'transactions' => 'array', 'deleted_at' => 'datetime', + 'started_at' => 'datetime', + 'ended_at' => 'datetime', ]; /**