Attribute casting for 'email_verified_at' on User model stub

This commit is contained in:
Eddie Palmans 2019-02-04 14:28:05 +01:00
parent 098cf4600b
commit 2f37ba38fa

View File

@ -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',
];
}