From bd321a72f07798eae3ba616df6d3af85557df7a1 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 5 Dec 2020 00:13:24 -0700 Subject: [PATCH] Update User model, add interstitial relation --- app/User.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/User.php b/app/User.php index 717c4f316..4bd60a075 100644 --- a/app/User.php +++ b/app/User.php @@ -88,4 +88,9 @@ class User extends Authenticatable return $this->hasMany(AccountLog::class); } + public function interstitials() + { + return $this->hasMany(AccountInterstitial::class); + } + }