Browse Source

Attribute casting for 'email_verified_at' on User model stub

Eddie Palmans 6 years ago
parent
commit
2f37ba38fa
1 changed files with 3 additions and 3 deletions
  1. 3 3
      app/User.php

+ 3 - 3
app/User.php

@@ -29,11 +29,11 @@ class User extends Authenticatable
     ];
 
     /**
-     * The attributes that should be mutated to dates.
+     * The attributes that should be cast to native types.
      *
      * @var array
      */
-    protected $dates = [
-        'email_verified_at',
+    protected $casts = [
+        'email_verified_at' => 'datetime',
     ];
 }