X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FModels%2FChatBotLog.php;h=a4f1f934b52abea3e0f5422ee47524d9a2fc088b;hb=76e2a3da33fc0cccbdb8864416bbb2a8684987ab;hp=34d2febd42bd0d5a984b27a72537bc7352ff5b04;hpb=ebdf8e5f6761de2abd85b01096a67dee62d7d4aa;p=alttp.git diff --git a/app/Models/ChatBotLog.php b/app/Models/ChatBotLog.php index 34d2feb..a4f1f93 100644 --- a/app/Models/ChatBotLog.php +++ b/app/Models/ChatBotLog.php @@ -17,4 +17,8 @@ class ChatBotLog extends Model { return $this->morphTo(); } + public function user() { + return $this->belongsTo(User::class); + } + }