Added company_id to fillable array for Media model

This commit is contained in:
Burak Çakırel 2021-06-18 00:09:40 +03:00
parent 873d25c742
commit 13ac31caa8
No known key found for this signature in database
GPG Key ID: 48FFBB7771B99C7C

View File

@ -13,4 +13,6 @@ class Media extends BaseMedia
protected $tenantable = true;
protected $dates = ['deleted_at'];
protected $fillable = ['company_id'];
}