From cddc63b8bf3ea2752b08d5a7d7af07e5337d9a48 Mon Sep 17 00:00:00 2001 From: Sam Light Date: Wed, 9 Apr 2025 22:22:35 +0100 Subject: Moved model --- src/Http/Models/AccessLog.php | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/Http/Models/AccessLog.php (limited to 'src/Http/Models') diff --git a/src/Http/Models/AccessLog.php b/src/Http/Models/AccessLog.php deleted file mode 100644 index cdfef4b..0000000 --- a/src/Http/Models/AccessLog.php +++ /dev/null @@ -1,33 +0,0 @@ -setTable(config('access_log.table_name')); - - parent::__construct($attributes); - } - - protected function cast(): array - { - return [ - 'properties' => 'collection', - ] - } - - public function user(): BelongsTo - { - return $this->belongsTo(config('access_log.user_model')); - } -} -- cgit v1.2.3