X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FModels%2FChatBotLog.php;h=a4f1f934b52abea3e0f5422ee47524d9a2fc088b;hb=8645b77ea2dc402f0265e1c8022ba18302506ca1;hp=34d2febd42bd0d5a984b27a72537bc7352ff5b04;hpb=907f392f8d2fbadb3f53a277cc90ae080da6d476;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); + } + }