adding with property to Laravel model

This commit is contained in:
Brian 2022-09-01 15:21:15 -06:00
parent e2721c6f7d
commit 6c15670077
Signed by: brian
GPG Key ID: DE1A5390A3B84CD8

View File

@ -35,6 +35,9 @@ protected \$dates = [];
/** @var array<int,string> */
protected \$appends = [];
/** @var array<int,string> */
protected \$with = [];
/** @var array<int,string> */
protected \$touches = [];