1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 10:34:04 +00:00

Merge pull request #1 from joelstein/joelstein-patch-1

Don't prevent accessing missing Tenant attributes.
This commit is contained in:
Joel Stein 2023-01-12 10:39:19 -06:00 committed by GitHub
commit 968fb61c89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,6 +28,8 @@ class Tenant extends Model implements Contracts\Tenant
Concerns\TenantRun,
Concerns\InvalidatesResolverCache;
protected static $modelsShouldPreventAccessingMissingAttributes = false;
protected $table = 'tenants';
protected $primaryKey = 'id';
protected $guarded = [];