Update StatusHashtag model, add status_visibility to $fillable

This commit is contained in:
Daniel Supernault 2019-07-07 23:31:19 -06:00
parent a0eb1f1906
commit 39e58f60a2
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,8 @@ class StatusHashtag extends Model
public $fillable = [
'status_id',
'hashtag_id',
'profile_id'
'profile_id',
'status_visibility'
];
public function status()