Update Profile model, cast last_status_at as timestamp

This commit is contained in:
Daniel Supernault 2022-01-02 23:27:47 -07:00
parent bdc3ab17dc
commit a64aef6726
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@ class Profile extends Model
protected $dates = [
'deleted_at',
'last_fetched_at'
'last_fetched_at',
'last_status_at'
];
protected $hidden = ['private_key'];
protected $visible = ['id', 'user_id', 'username', 'name'];