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

Fix styling

This commit is contained in:
erikgaal 2022-06-23 12:27:53 +00:00 committed by github-actions[bot]
parent f498daacc2
commit c9ab5c4f1d
19 changed files with 62 additions and 51 deletions

View file

@ -329,6 +329,7 @@ class Post extends Model
use BelongsToTenant;
protected $guarded = [];
public $timestamps = false;
public function comments()
@ -345,6 +346,7 @@ class Post extends Model
class Comment extends Model
{
protected $guarded = [];
public $timestamps = false;
public function post()
@ -368,5 +370,6 @@ class ScopedComment extends Comment
class GlobalResource extends Model
{
protected $guarded = [];
public $timestamps = false;
}