mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-06 10:14:04 +00:00
Merge branch 'master' into resolve-confilits
This commit is contained in:
commit
570cd4bb67
42 changed files with 277 additions and 75 deletions
|
|
@ -311,6 +311,7 @@ class Post extends Model
|
|||
use BelongsToTenant;
|
||||
|
||||
protected $guarded = [];
|
||||
|
||||
public $timestamps = false;
|
||||
|
||||
public function comments()
|
||||
|
|
@ -327,6 +328,7 @@ class Post extends Model
|
|||
class Comment extends Model
|
||||
{
|
||||
protected $guarded = [];
|
||||
|
||||
public $timestamps = false;
|
||||
|
||||
public function post()
|
||||
|
|
@ -350,5 +352,6 @@ class ScopedComment extends Comment
|
|||
class GlobalResource extends Model
|
||||
{
|
||||
protected $guarded = [];
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue