From da151051186c913dd0dd091aabe893649c2b9ee7 Mon Sep 17 00:00:00 2001 From: slawkens Date: Mon, 12 May 2025 17:36:34 +0200 Subject: [PATCH] Fix typo, @gpedro I hate you! :PPP --- system/src/Models/Visitor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Models/Visitor.php b/system/src/Models/Visitor.php index 93d5f2be..0c78b0b0 100644 --- a/system/src/Models/Visitor.php +++ b/system/src/Models/Visitor.php @@ -10,6 +10,6 @@ class Visitor extends Model { public $timestamps = false; - protected $fillable = ['ip', 'lastivist', 'page', 'user_agent']; + protected $fillable = ['ip', 'lastvisit', 'page', 'user_agent']; }