Merge pull request #2115 from burakcakirel/media-company-id

Added company_id to fillable array for Media model
This commit is contained in:
Denis Duliçi 2021-06-18 10:28:38 +03:00 committed by GitHub
commit 9ac0bab7ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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